
/*
Theme Name: Vulpeinc
Theme URI: https://vulpeinc.com/
Author: Vulpeinc
Description: Tema WordPress minimalista e premium para Vulpeinc.
Version: 1.0
*/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600;700&display=swap');

/* Garantir carregamento das fontes */
@font-face {
    font-family: 'Montserrat';
    font-display: swap;
    font-weight: 400 800;
    src: url('https://fonts.gstatic.com/s/montserrat/v25/JTUSjIg1_i6t8kCHKm459Wlhyw.ttf') format('truetype');
}

@font-face {
    font-family: 'Open Sans';
    font-display: swap;
    font-weight: 400 700;
    src: url('https://fonts.gstatic.com/s/opensans/v34/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0B4gaVI.woff2') format('woff2');
}

body {
  background: #f7fafd;
  color: #23272f;
  font-family: 'Open Sans', Arial, sans-serif;
  margin: 0;
  padding: 0;
  min-height: 100vh;
}

/* Banner de Cookies */
#vulpe-cookie-banner {
	background: rgba(18,18,18,0.92);
	backdrop-filter: saturate(120%) blur(6px);
	z-index: 2147483647 !important; /* acima de qualquer botão/flutuante */
	box-shadow: 0 -8px 24px rgba(0,0,0,0.35);
	border-top: 1px solid rgba(255,255,255,0.12);
}

#vulpe-cookie-banner .vulpe-cookie-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 16px 22px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

#vulpe-cookie-banner .vulpe-cookie-text {
	color: #fff;
	font-size: 15px;
	line-height: 1.6;
}

#vulpe-cookie-banner .vulpe-cookie-text a {
	color: #CBB6FF;
	text-decoration: underline;
}

#vulpe-cookie-banner .vulpe-cookie-actions {
	display: flex;
	gap: 10px;
}

.vulpe-cookie-btn {
	appearance: none;
	border: none;
	padding: 12px 18px;
	border-radius: 12px;
	font-weight: 800;
	cursor: pointer;
	font-size: 14px;
}

.vulpe-cookie-btn.vulpe-cookie-settings {
	background: transparent;
	color: #ffffff;
	border: 2px solid #ffffff;
}

.vulpe-cookie-btn.vulpe-cookie-decline {
	background: #ffffff;
	color: #7B3FE4;
	border: 2px solid #7B3FE4;
}

.vulpe-cookie-btn.vulpe-cookie-accept {
	background: linear-gradient(135deg, #7B3FE4 0%, #5B2BC7 100%);
	color: #ffffff;
}

@media (max-width: 768px) {
	#vulpe-cookie-banner .vulpe-cookie-inner {
		flex-direction: column;
		align-items: stretch;
	}
	#vulpe-cookie-banner .vulpe-cookie-actions {
		justify-content: flex-end;
	}
	
	/* Responsividade do modal de configurações */
	.vulpe-cookie-settings-content {
		width: 95% !important;
		padding: 24px !important;
		max-height: 85vh !important;
	}
	
	.vulpe-cookie-settings-content h3 {
		font-size: 1.3em !important;
	}
	
	.vulpe-cookie-settings-content p {
		font-size: 0.9em !important;
	}
	
	.vulpe-cookie-settings-content label {
		font-size: 0.95em !important;
	}
}

/* Garantir que todos os elementos usem as fontes corretas */
*, *::before, *::after {
  font-family: inherit;
}

/* Aplicar fontes específicas para elementos importantes */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
}

.vulpe-navbar-logo span,
.vulpe-hero-content h1,
.vulpe-section h2,
.vulpe-cta-content h3 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
}

/* Garantir que elementos específicos mantenham as fontes corretas */
.vulpe-navbar-logo span,
.vulpe-hero-content h1,
.vulpe-section h2,
.vulpe-cta-content h3,
.vulpe-service-card h3,
.vulpe-benefit-category h3,
.vulpe-why-card h3,
.vulpe-testimonial-card h3,
.vulpe-pricing-card h3,
.vulpe-state-card h3,
.vulpe-package-card h3,
.vulpe-faq-item h3 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif !important;
}

main.site-main {
  padding-top: 0;
}

* {
  box-sizing: border-box;
}

/* NAVBAR FINTECH PREMIUM VULPEINC */
.vulpe-navbar-bg {
  display: none;
}

.vulpe-navbar {
  width: 100%;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  background: linear-gradient(90deg, #181828 0%, #7B3FE4 80%, #3f51b5 100%);
  box-shadow: 0 2px 16px 0 rgba(34,18,58,0.10);
  border-bottom: none !important;
}

.vulpe-navbar-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.vulpe-navbar-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.vulpe-navbar-logo img {
  height: 32px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(123,63,228,0.10));
}
.vulpe-navbar-logo span {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 800;
  font-size: 1.18em;
  color: #fff;
  letter-spacing: -0.01em;
  margin-left: 4px;
  text-shadow: none;
  line-height: 1;
}

.vulpe-navbar-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0;
  position: relative;
}

.vulpe-navbar-nav {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.vulpe-nav-item {
  position: relative;
}

.vulpe-nav-link {
  padding: 0 22px;
  height: 64px;
  display: flex;
  align-items: center;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  text-transform: uppercase;
  color: #fff;
  font-size: 1.05em;
  text-decoration: none;
  border: none;
  background: none;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: color 0.18s, border-bottom 0.18s;
  box-shadow: none;
  border-bottom: 2.5px solid transparent;
  white-space: nowrap;
}

.vulpe-nav-link:hover {
  color: #b39ddb;
  border-bottom: 2.5px solid #b39ddb;
  background: none;
}

.vulpe-nav-item.current-menu-item .vulpe-nav-link, 
.vulpe-nav-item.current_page_item .vulpe-nav-link {
  color: #fff;
  border-bottom: 2.5px solid #7B3FE4;
  background: none;
}

/* Dropdown Styles */
.vulpe-dropdown {
  position: relative;
}

.vulpe-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
}

.vulpe-arrow {
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  transition: transform 0.2s ease;
}

.vulpe-dropdown.open .vulpe-arrow {
  transform: rotate(180deg);
}

.vulpe-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 280px;
  background: linear-gradient(135deg, #7B3FE4 0%, #3f51b5 100%);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(123, 63, 228, 0.3);
  backdrop-filter: blur(10px);
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  list-style: none;
  margin: 0;
}

.vulpe-dropdown.open .vulpe-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.vulpe-dropdown-menu li {
  margin: 0;
  padding: 0;
}

.vulpe-dropdown-menu a {
  display: block;
  padding: 12px 24px;
  color: #fff;
  text-decoration: none;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-size: 0.95em;
  font-weight: 600;
  transition: all 0.2s ease;
  border: none;
  background: none;
  text-transform: none;
  letter-spacing: 0.01em;
  height: auto;
}

.vulpe-dropdown-menu a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-bottom: none;
  transform: translateX(4px);
}

/* MENU HAMBURGUER MOBILE */
.vulpe-navbar-hamburger {
  display: none;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  z-index: 10001;
  width: 35px;
  height: 35px;
  position: relative;
  margin-left: 18px;
}

.vulpe-navbar-hamburger span {
  display: none; /* Esconde as listras originais */
}

/* Ícone de menu moderno - 3 pontos */
.vulpe-navbar-hamburger::before {
  content: '☰';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 22px;
  font-weight: normal;
  color: #fff;
  transition: all 0.3s ease;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.vulpe-navbar-hamburger.active::before {
  content: '☰';
  font-size: 22px;
  font-weight: normal;
}

.vulpe-navbar-hamburger:hover::before {
  transform: translate(-50%, -50%) scale(1.1);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.vulpe-navbar-hamburger.active:hover::before {
  transform: translate(-50%, -50%) scale(1.1);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  opacity: 0.8;
}

/* Animações antigas removidas - agora usando ícone moderno */
@media (max-width: 900px) {
  .vulpe-navbar {
    height: 54px;
    padding: 0 12px;
  }
  
  .vulpe-lang-switcher {
    height: 54px;
  }
  
  .vulpe-lang-dropdown-toggle {
    padding: 0 16px;
    height: 54px;
    font-size: 0.85em;
  }
  
  .vulpe-gtranslate-custom {
    height: 54px;
  }
  
  .vulpe-gtranslate-custom .gtranslate_wrapper select {
    padding: 0 16px;
    height: 54px;
    font-size: 0.85em;
    min-width: 80px;
    background-position: right 16px center;
    padding-right: 30px;
  }
  
  .vulpe-lang-select {
    padding: 0 16px;
    height: 54px;
    font-size: 0.85em;
    min-width: 80px;
    background-position: right 16px center;
    padding-right: 30px;
  }
  
  .vulpe-navbar-container {
    width: 100%;
  }
  
  .vulpe-navbar-logo img {
    height: 24px;
  }
  
  .vulpe-navbar-logo span {
    font-size: 1em;
  }
  
  .vulpe-navbar-menu {
    position: fixed;
    top: 54px;
    right: 0;
    left: 0;
    margin: 0 auto;
    width: 100vw;
    height: calc(100vh - 54px);
    background: linear-gradient(135deg, #7B3FE4 0%, #3f51b5 100%);
    backdrop-filter: blur(10px);
    border-radius: 0;
    box-shadow: 0 8px 32px rgba(123, 63, 228, 0.3);
    padding: 20px 0;
    display: none;
    z-index: 10000;
    overflow-y: auto;
  }
  
  .vulpe-navbar-menu.open {
    display: block;
  }
  
  .vulpe-navbar-nav {
    flex-direction: column;
    gap: 0;
    width: 100%;
    padding: 0 20px;
  }
  
  .vulpe-nav-item {
    width: 100%;
    margin-bottom: 8px;
  }
  
  .vulpe-nav-link {
    padding: 16px 20px;
    height: auto;
    font-size: 1.1em;
    border-radius: 12px;
    width: 100%;
    justify-content: space-between;
    border-bottom: none;
    transition: all 0.3s ease;
  }
  
  .vulpe-nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-bottom: none;
  }
  
  .vulpe-dropdown-toggle {
    justify-content: space-between;
  }
  
  .vulpe-dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    margin: 8px 0;
    min-width: auto;
    box-shadow: none;
    display: none;
    padding: 8px 0;
  }
  
  .vulpe-dropdown.open .vulpe-dropdown-menu {
    display: block;
  }
  
  .vulpe-dropdown-menu a {
    padding: 12px 20px;
    font-size: 1em;
    border-radius: 0;
  }
  
  .vulpe-dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: none;
  }
  
  .vulpe-navbar-hamburger {
    display: block;
  }
  
  /* Esconder hambúrguer quando menu está aberto */
  .vulpe-navbar.open .vulpe-navbar-hamburger {
    display: none;
  }
  
  /* Esconder menu desktop */
  .vulpe-navbar-menu > ul:not(.vulpe-navbar-nav) {
    display: none;
  }
}

@media (max-width: 600px) {
  .vulpe-navbar {
    height: 50px;
    padding: 0 8px;
  }
  
  .vulpe-navbar-logo img {
    height: 20px;
  }
  
  .vulpe-navbar-logo span {
    font-size: 0.9em;
  }
  
  .vulpe-navbar-menu {
    top: 50px;
    height: calc(100vh - 50px);
    padding: 15px 0;
  }
  
  .vulpe-navbar-nav {
    padding: 0 15px;
  }
  
  .vulpe-nav-link {
    padding: 14px 16px;
    font-size: 1em;
  }
  
  .vulpe-dropdown-menu a {
    padding: 10px 16px;
    font-size: 0.95em;
  }
  
  .vulpe-navbar-hamburger {
    width: 25px;
    height: 25px;
  }
  
  .vulpe-navbar-hamburger span {
    height: 2px;
    margin: 5px 0;
  }
}

@media (max-width: 480px) {
  .vulpe-navbar {
    height: 48px;
    padding: 0 6px;
  }
  
  .vulpe-lang-switcher {
    height: 48px;
  }
  
  .vulpe-lang-dropdown-toggle {
    padding: 0 12px;
    height: 48px;
    font-size: 0.8em;
  }
  
  .vulpe-lang-dropdown-toggle span {
    display: none;
  }
  
  .vulpe-lang-dropdown-menu {
    right: -10px;
    min-width: 120px;
  }
  
  .vulpe-gtranslate-custom {
    height: 48px;
  }
  
  .vulpe-gtranslate-custom .gtranslate_wrapper select {
    padding: 0 12px;
    height: 48px;
    font-size: 0.8em;
    min-width: 60px;
    background-position: right 12px center;
    padding-right: 25px;
  }
  
  .vulpe-lang-select {
    padding: 0 12px;
    height: 48px;
    font-size: 0.8em;
    min-width: 60px;
    background-position: right 12px center;
    padding-right: 25px;
  }
  
  .vulpe-navbar-logo span {
    font-size: 0.85em;
  }
  
  .vulpe-navbar-menu {
    top: 48px;
    height: calc(100vh - 48px);
    padding: 10px 0;
  }
  
  .vulpe-navbar-nav {
    padding: 0 10px;
  }
  
  .vulpe-nav-link {
    padding: 12px 14px;
    font-size: 0.95em;
  }
  
  .vulpe-dropdown-menu a {
    padding: 8px 14px;
    font-size: 0.9em;
  }
}

/* HERO SECTION PREMIUM */
.vulpe-hero {
  width: 100%;
  min-height: 480px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  justify-content: center;
  background: radial-gradient(ellipse at 80% 20%, #7B3FE4 0%, #181828 100%);
  padding: 72px 0 48px 0;
  margin-bottom: 0;
  position: relative;
  overflow: hidden;
  z-index: 1;
  gap: 0;
}

.vulpe-hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-left: 7vw;
  max-width: 600px;
  min-height: 320px;
  gap: 24px;
}

.vulpe-hero-content h1 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-size: 2.8em;
  font-weight: 900;
  color: #fff;
  margin: 0 0 12px 0;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.vulpe-hero-content p {
  font-size: 1.18em;
  color: #e0e0f7;
  margin-bottom: 0;
  font-weight: 400;
  line-height: 1.4;
}

.vulpe-hero-btn {
  display: inline-block;
  padding: 14px 36px;
  font-size: 1.1em;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  color: #fff;
  background: transparent;
  border: 2px solid #fff;
  border-radius: 12px;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  box-shadow: 0 2px 16px 0 rgba(123,63,228,0.10);
  text-decoration: none;
  cursor: pointer;
  margin-top: 12px;
}
.vulpe-hero-btn:hover {
  background: #7B3FE4;
  color: #fff;
  border-color: #7B3FE4;
  box-shadow: 0 4px 24px 0 #7B3FE488;
}

.vulpe-hero-image {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}
.vulpe-hero-image img {
  margin-left: 0;
  margin-right: auto;
  max-width: 180px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 4px 32px #7B3FE422);
  border-radius: 16px;
}

/* Espaço para futura imagem/ilustração premium */
.vulpe-hero-image img, .vulpe-hero-image svg {
  max-width: 420px;
  width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 8px 48px #7B3FE422;
}

@media (max-width: 1200px) {
  .vulpe-hero {
    gap: 24px;
    padding-left: 2vw;
    padding-right: 2vw;
  }
  .vulpe-hero-content {
    padding-left: 2vw;
  }
  .vulpe-hero-image {
    padding-right: 2vw;
  }
}

@media (max-width: 900px) {
  .vulpe-hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 48px 0 24px 0;
  }
  .vulpe-hero-content {
    align-items: center;
    text-align: center;
    padding-left: 0;
    max-width: 100%;
    gap: 18px;
  }
  .vulpe-hero-image {
    justify-content: center;
    margin: 32px auto 0 auto;
  }
  .vulpe-hero-image img, .vulpe-hero-image svg {
    max-width: 260px;
    border-radius: 16px;
  }
}

@media (max-width: 600px) {
  .vulpe-hero {
    padding: 24px 0 8px 0;
  }
  .vulpe-hero-content h1 {
    font-size: 1.5em;
  }
  .vulpe-hero-benefits h2 {
    font-size: 1.1em;
  }
  /* Melhorar responsividade do hero */
  .vulpe-hero-content {
    padding: 0 15px;
    gap: 16px;
  }
  .vulpe-hero-content p {
    font-size: 1em;
    line-height: 1.5;
  }
  .vulpe-hero-btn {
    padding: 12px 24px;
    font-size: 1em;
    width: 100%;
    max-width: 280px;
  }
}

@media (max-width: 480px) {
  .vulpe-hero {
    padding: 24px 0 12px 0;
  }
  .vulpe-hero-content h1 {
    font-size: 1.6em;
  }
  .vulpe-hero-content p {
    font-size: 0.95em;
  }
  .vulpe-hero-btn {
    padding: 10px 20px;
    font-size: 0.95em;
  }
}

body.admin-bar .vulpe-navbar {
  top: 32px;
}
body.admin-bar .vulpe-hero {
  padding-top: 96px;
}

.vulpe-hero-image.vulpe-hero-benefits {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: left;
  max-width: 480px;
  margin: 0 auto 0 0;
  padding: 0 7vw 0 0;
  height: 100%;
  min-height: 320px;
  background: none;
  border-radius: 0;
  box-shadow: none;
  gap: 16px;
}

.vulpe-hero-benefits h2 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-size: 2.8em;
  font-weight: 900;
  color: #fff;
  margin: 0 0 12px 0;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.vulpe-hero-benefits h3 {
  font-size: 1.18em;
  color: #e0e0f7;
  margin: 0 0 12px 0;
  font-weight: 400;
  line-height: 1.4;
  font-family: 'Open Sans', Arial, sans-serif;
}

.vulpe-hero-benefit-desc {
  font-size: 1.18em;
  color: #e0e0f7;
  margin-bottom: 0;
  font-weight: 400;
  line-height: 1.4;
  font-family: 'Open Sans', Arial, sans-serif;
}

.vulpe-hero-benefit-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.vulpe-hero-benefit-list li {
  font-size: 1.18em;
  color: #fff;
  padding-left: 0;
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 400;
}

.vulpe-hero-benefit-list li:before {
  content: '\2714';
  color: #7B3FE4;
  font-size: 1.1em;
  margin-right: 8px;
  position: relative;
  top: 0.5px;
}

@media (max-width: 1100px) {
  .vulpe-hero {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .vulpe-hero-image.vulpe-hero-benefits {
    align-items: center;
    text-align: center;
    padding: 0;
    margin: 32px auto 0 auto;
    min-height: unset;
    box-shadow: none;
    background: none;
  }
  .vulpe-hero-benefits h2 {
    font-size: 1.5em;
  }
}

/* SEÇÕES GERAIS */
.vulpe-section {
  padding: 64px 12px;
  text-align: center;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.vulpe-section h2 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-size: 2.2em;
  font-weight: 800;
  color: #23272f;
  margin-bottom: 32px;
  text-align: center;
}

/* SOBRE */
.vulpe-about-subtitle {
  font-size: 1.3em;
  color: #7B3FE4;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 24px auto;
  line-height: 1.5;
  font-weight: 600;
}

.vulpe-about-description {
  font-size: 1.1em;
  color: #666;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
  line-height: 1.7;
}

.vulpe-about-features {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.vulpe-about-feature {
  text-align: center;
  flex: 1;
  min-width: 200px;
  max-width: 250px;
}

.vulpe-about-icon {
  font-size: 2.5em;
  display: block;
  margin-bottom: 16px;
}

.vulpe-about-feature h3 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-size: 1.2em;
  font-weight: 600;
  color: #181828;
  margin: 0;
  line-height: 1.3;
}

/* Responsividade da seção Sobre */
@media (max-width: 900px) {
  .vulpe-about-subtitle {
    font-size: 1.2em;
    max-width: 100%;
    padding: 0 20px;
  }
  
  .vulpe-about-description {
    font-size: 1em;
    max-width: 100%;
    padding: 0 20px;
  }
  
  .vulpe-about-features {
    gap: 30px;
    padding: 0 20px;
  }
  
  .vulpe-about-feature {
    min-width: 180px;
  }
}

@media (max-width: 600px) {
  .vulpe-about-subtitle {
    font-size: 1.1em;
    padding: 0 15px;
  }
  
  .vulpe-about-description {
    font-size: 0.95em;
    padding: 0 15px;
  }
  
  .vulpe-about-features {
    flex-direction: column;
    gap: 20px;
    padding: 0 15px;
  }
  
  .vulpe-about-feature {
    min-width: auto;
    max-width: none;
  }
  
  .vulpe-about-icon {
    font-size: 2.2em;
  }
  
  .vulpe-about-feature h3 {
    font-size: 1.1em;
  }
}

/* SERVIÇOS */
.vulpe-services-cards {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
}
.vulpe-service-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 32px #7B3FE41A;
  padding: 32px 28px 28px 28px;
  text-align: center;
  max-width: 320px;
  flex: 1 1 260px;
  transition: transform 0.18s, box-shadow 0.18s;
}
.vulpe-service-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 48px #7B3FE433;
}
.vulpe-service-icon {
  font-size: 2.2em;
  color: #7B3FE4;
  margin-bottom: 12px;
  display: block;
}
.vulpe-service-card h3 {
  font-size: 1.18em;
  font-weight: 700;
  margin: 0 0 10px 0;
  color: #23272f;
}
.vulpe-service-card p {
  color: #444;
  font-size: 1em;
}

/* BENEFÍCIOS */
.vulpe-benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.vulpe-benefit-category {
  background: #fff;
  border-radius: 18px;
  padding: 32px 28px;
  box-shadow: 0 4px 32px #7B3FE41A;
  transition: transform 0.18s, box-shadow 0.18s;
}

.vulpe-benefit-category:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 8px 48px #7B3FE433;
}

.vulpe-benefit-category h3 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-size: 1.3em;
  font-weight: 700;
  color: #7B3FE4;
  margin: 0 0 20px 0;
  text-align: center;
  line-height: 1.3;
}

.vulpe-benefits-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.vulpe-benefits-list li {
  background: #f7fafd;
  border-radius: 12px;
  padding: 14px 20px;
  font-size: 1em;
  color: #7B3FE4;
  font-weight: 600;
  box-shadow: 0 2px 12px #7B3FE410;
  text-align: center;
  transition: background 0.2s, transform 0.2s;
}

.vulpe-benefits-list li:hover {
  background: #7B3FE4;
  color: #fff;
  transform: translateX(4px);
}

/* POR QUE ESCOLHER */
.vulpe-why-cards {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
}
.vulpe-why-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 32px #7B3FE41A;
  padding: 32px 28px 28px 28px;
  text-align: center;
  max-width: 320px;
  flex: 1 1 260px;
  transition: transform 0.18s, box-shadow 0.18s;
}
.vulpe-why-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 48px #7B3FE433;
}
.vulpe-why-icon {
  font-size: 2.2em;
  color: #7B3FE4;
  margin-bottom: 12px;
  display: block;
}
.vulpe-why-card h3 {
  font-size: 1.18em;
  font-weight: 700;
  margin: 0 0 10px 0;
  color: #23272f;
}
.vulpe-why-card p {
  color: #444;
  font-size: 1em;
}

/* DEPOIMENTOS */
.vulpe-testimonials-cards {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
}
.vulpe-testimonial-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 32px #7B3FE41A;
  padding: 32px 28px 28px 28px;
  max-width: 420px;
  flex: 1 1 320px;
  font-size: 1.08em;
  color: #23272f;
  font-style: italic;
}
.vulpe-testimonial-author {
  display: block;
  margin-top: 18px;
  color: #7B3FE4;
  font-weight: 700;
  font-style: normal;
}

.vulpe-testimonial-company {
  display: block;
  margin-top: 4px;
  color: #666;
  font-weight: 500;
  font-style: normal;
  font-size: 0.9em;
}





/* CONTATO */
.vulpe-contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 420px;
  margin: 0 auto;
}
.vulpe-contact-form input,
.vulpe-contact-form textarea {
  padding: 14px 16px;
  border-radius: 8px;
  border: 1.5px solid #d1c4e9;
  font-size: 1em;
  font-family: 'Open Sans', Arial, sans-serif;
  resize: none;
}
.vulpe-contact-form textarea {
  min-height: 100px;
}
.vulpe-contact-form button {
  background: #7B3FE4;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 14px 0;
  font-size: 1.1em;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.18s;
}
.vulpe-contact-form button:hover {
  background: #3f51b5;
}

/* RESPONSIVO */
@media (max-width: 1100px) {
  .vulpe-services-cards,
  .vulpe-why-cards,
  .vulpe-testimonials-cards {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
  .vulpe-section {
    padding: 48px 0 32px 0;
  }
}
@media (max-width: 700px) {
  .vulpe-section h2 {
    font-size: 1.3em;
    margin-bottom: 18px;
  }
  .container {
    padding: 0 8px;
  }
  .vulpe-section {
    padding: 28px 0 16px 0;
  }
  .vulpe-service-card,
  .vulpe-why-card,
  .vulpe-testimonial-card {
    padding: 18px 10px 16px 10px;
    max-width: 98vw;
  }
  .vulpe-benefits-list li {
    padding: 10px 12px;
    font-size: 1em;
  }
  .vulpe-contact-form {
    max-width: 98vw;
  }
  .vulpe-pricing-section {
    padding: 18px 2vw 18px 2vw;
    max-width: 99vw;
    border-radius: 12px;
    margin: 18px auto;
  }
  .vulpe-pricing-section h2 {
    font-size: 1.3em;
    margin-bottom: 6px;
  }
  .vulpe-pricing-subtitle {
    font-size: 0.98em;
    margin-bottom: 18px;
  }
  .vulpe-pricing-cards {
    gap: 10px;
    margin-bottom: 18px;
  }
  .vulpe-pricing-card {
    padding: 18px 8px 16px 8px;
    max-width: 98vw;
    min-width: 0;
    width: 100%;
    border-radius: 10px;
    font-size: 0.98em;
  }
  .vulpe-pricing-card .vulpe-pricing-badge {
    font-size: 0.98em;
    padding: 3px 10px;
    margin-bottom: 10px;
    border-radius: 10px;
  }
  .vulpe-pricing-card .vulpe-pricing-price {
    font-size: 1.5em;
    margin-bottom: 4px;
  }
  .vulpe-pricing-card .vulpe-pricing-onetime {
    font-size: 0.98em;
    margin-bottom: 6px;
    color: white !important;
  }
  .vulpe-pricing-card .vulpe-pricing-desc {
    font-size: 0.98em;
    color: white !important;
  }
  
  /* Garantir que o texto seja branco nos cards de preços em todos os dispositivos */
  .vulpe-pricing-card .vulpe-pricing-onetime,
  .vulpe-pricing-card .vulpe-pricing-desc {
    color: white !important;
  }
  .vulpe-pricing-card .vulpe-pricing-recommended,
  .vulpe-pricing-card .vulpe-pricing-bestvalue {
    font-size: 0.78em;
    padding: 3px 8px;
    border-radius: 8px;
    top: 6px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }
  .vulpe-pricing-btn {
    font-size: 1em;
    padding: 12px 0;
    width: 100%;
    border-radius: 14px;
    margin-top: 8px;
  }
}

/* Toggle de preços Mensal/Anual */
.vulpe-pricing-toggle {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.vulpe-toggle-container {
  display: flex;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  padding: 4px;
  position: relative;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.vulpe-toggle-btn {
  background: transparent;
  border: none;
  color: white;
  padding: 12px 24px;
  border-radius: 50px;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  min-width: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.vulpe-toggle-btn.active {
  background: linear-gradient(135deg, #00BCD4 0%, #7B3FE4 100%);
  color: white;
  box-shadow: 0 4px 20px rgba(0, 188, 212, 0.4);
  transform: translateY(-2px);
}

.vulpe-toggle-btn:not(.active):hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

.vulpe-toggle-savings {
  background: #FFD700;
  color: #1a1a1a;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 12px;
  white-space: nowrap;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.8;
  }
}

/* Responsividade para o toggle */
@media (max-width: 768px) {
  .vulpe-toggle-btn {
    padding: 10px 20px;
    font-size: 13px;
    min-width: 100px;
  }
  
  .vulpe-toggle-savings {
    font-size: 9px;
    padding: 2px 6px;
  }
}

@media (max-width: 480px) {
  .vulpe-toggle-btn {
    padding: 8px 16px;
    font-size: 12px;
    min-width: 90px;
  }
  
  .vulpe-pricing-toggle {
    margin-bottom: 20px;
  }
}

/* Alinhamento premium do widget de idiomas na navbar */
.vulpe-navbar-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0;
  position: relative;
}

.vulpe-navbar-menu > ul {
  display: flex;
  align-items: center;
  gap: 0;
}

.vulpe-lang-switcher, .gtranslate_wrapper, .goog-te-gadget {
  position: static !important;
  margin-left: 18px !important;
  margin-top: 0 !important;
  align-self: center !important;
  display: flex !important;
  align-items: center !important;
  z-index: 10;
  box-shadow: none;
  background: none;
}

@media (max-width: 900px) {
  .vulpe-navbar-menu {
    flex-direction: column;
    align-items: flex-start;
  }
  .vulpe-lang-switcher, .gtranslate_wrapper, .goog-te-gadget {
    margin-left: 0 !important;
    margin-top: 10px !important;
    align-self: flex-end !important;
  }
}

/* SLIDER DE LOGOS DE PARCEIROS - IDÊNTICO AO EXEMPLO */
.logo-slider {
  overflow: hidden;
  padding: 64px 0;
  position: relative;
  width: 100%;
}

.logo-slider__track {
  display: flex;
  will-change: transform;
  animation: logo-slider-scroll 40s linear infinite;
}

.logo-slider__logo {
  display: flex;
  gap: 48px;
  align-items: center;
}

.logo-slider__logo img {
  height: 80px;
  width: auto;
  opacity: 0.85;
  filter: grayscale(1) brightness(1.1);
  transition: filter 0.2s, opacity 0.2s;
}

.logo-slider__logo img:hover {
  filter: grayscale(0) brightness(1.2);
  opacity: 1;
}

@keyframes logo-slider-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (max-width: 900px) {
  .logo-slider__logo {
    gap: 24px;
  }
  .logo-slider__logo img {
    height: 48px;
  }
}

/* Centralização vertical do slider de logos na tela */
.logo-slider-section {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  padding: 32px 0 24px 0;
  margin: 0;
}

/* BLOCO DE PACOTES/PREÇOS PREMIUM */
.vulpe-pricing-section {
  background: #18191f;
  border-radius: 32px;
  max-width: 1100px;
  margin: 64px auto;
  padding: 56px 24px 48px 24px;
  box-shadow: 0 8px 48px #0002;
  text-align: center;
}

.vulpe-pricing-section h2 {
  color: #fff;
  font-size: 2.6em;
  font-weight: 800;
  margin-bottom: 12px;
}

.vulpe-pricing-section p.vulpe-pricing-subtitle {
  color: #bdbde6;
  font-size: 1.15em;
  margin-bottom: 40px;
}

.vulpe-pricing-cards {
  display: flex;
  gap: 32px;
  justify-content: center;
  margin-bottom: 36px;
}

.vulpe-pricing-card {
  flex: 1 1 300px;
  background: #18191f;
  border-radius: 20px;
  border: 1.5px solid #232336;
  color: #fff;
  padding: 38px 32px 32px 32px;
  box-shadow: 0 2px 16px #0001;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  transition: box-shadow 0.2s, border 0.2s, transform 0.2s;
}

.vulpe-pricing-card.standard.active {
  position: relative;
  overflow: hidden;
  z-index: 2;
  border: 1.5px solid #7B3FE4;
  box-shadow: 0 8px 32px #7B3FE433;
  color: #fff;
}
.vulpe-pricing-card.standard.active::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: 20px;
  background: linear-gradient(-45deg, #7B3FE4, #3f51b5, #00e6d0, #B39DDB, #5ee7df, #7B3FE4);
  background-size: 400% 400%;
  animation: gold-gradient 6s ease infinite;
  opacity: 1;
}
.vulpe-pricing-card.standard.active > * {
  position: relative;
  z-index: 1;
}

@keyframes gold-gradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.vulpe-pricing-card .vulpe-pricing-badge,
.vulpe-pricing-card .vulpe-pricing-recommended,
.vulpe-pricing-card .vulpe-pricing-bestvalue {
  font-size: 1em;
  font-weight: 700;
  border-radius: 16px;
  padding: 6px 18px;
  margin-bottom: 18px;
  display: inline-block;
  background: #232336;
  color: #fff;
  letter-spacing: 0.02em;
}

.vulpe-pricing-card.standard.active .vulpe-pricing-badge,
.vulpe-pricing-card.standard.active .vulpe-pricing-recommended {
  background: #7B3FE4;
}

.vulpe-pricing-card .vulpe-pricing-price {
  font-size: 2.6em;
  font-weight: 900;
  margin-bottom: 10px;
  color: #fff;
  letter-spacing: -0.01em;
}

.vulpe-pricing-card .vulpe-pricing-onetime {
  color: white;
  font-size: 1.08em;
  font-weight: 700;
  margin-bottom: 14px;
}

.vulpe-pricing-card .vulpe-pricing-desc {
  color: white;
  font-size: 1.12em;
  margin-bottom: 0;
  font-weight: 400;
}

.vulpe-pricing-btn {
  display: inline-block;
  background: linear-gradient(90deg, #7B3FE4 0%, #3f51b5 100%);
  color: #fff;
  font-size: 1.22em;
  font-weight: 800;
  border-radius: 28px;
  padding: 20px 0;
  text-decoration: none;
  box-shadow: 0 4px 24px #7B3FE488;
  border: none;
  margin-top: 18px;
  width: 80%;
  max-width: 340px;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.18s;
}

.vulpe-pricing-btn:hover {
  background: #fff;
  color: #7B3FE4;
  box-shadow: 0 8px 32px #7B3FE422;
  transform: scale(1.04);
}

@media (max-width: 900px) {
  .vulpe-pricing-cards {
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }
  .vulpe-pricing-card {
    max-width: 98vw;
    min-width: 0;
    width: 100%;
    align-items: center;
    text-align: center;
    border-radius: 18px;
    padding: 32px 8px 28px 8px;
    font-size: 0.98em;
    padding-top: 48px;
  }
}

.vulpe-state-fees-table {
  margin: 32px auto 0 auto;
  max-width: 340px;
  background: #232336;
  border-radius: 16px;
  box-shadow: 0 2px 16px #7B3FE41A;
  padding: 24px 18px 18px 18px;
  text-align: center;
}
.vulpe-state-fees-table h3 {
  color: #fff;
  font-size: 1.18em;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}
.vulpe-state-fees-table table {
  width: 100%;
  border-collapse: collapse;
}
.vulpe-state-fees-table td {
  color: #e0e0f7;
  font-size: 1.08em;
  padding: 8px 0;
  border-bottom: 1px solid #2d2d44;
}
.vulpe-state-fees-table tr:last-child td {
  border-bottom: none;
}
.vulpe-state-fees-table td:last-child {
  font-weight: 700;
  color: #7B3FE4;
  text-align: right;
}

.vulpe-compare-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 64px 12px;
  text-align: center;
}
.vulpe-compare-section h2 {
  font-size: 2.1em;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  margin-bottom: 24px;
  color: #23272f;
}
.vulpe-compare-table-wrap {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 8px 48px rgba(123, 63, 228, 0.15);
  overflow: hidden;
  padding: 0;
  border: 1px solid #f0f0fa;
}
.vulpe-compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.08em;
  min-width: 700px;
  background: #fff;
}
.vulpe-compare-table th,
.vulpe-compare-table td {
  padding: 18px 16px;
  text-align: center;
  border-bottom: 1px solid #f5f5f7;
  position: relative;
}
.vulpe-compare-table thead tr {
  background: linear-gradient(135deg, #7B3FE4 0%, #3f51b5 100%);
}
.vulpe-compare-table th {
  background: transparent;
  color: #ffffff;
  font-weight: 700;
  font-size: 1.05em;
  text-shadow: 0 1px 2px rgba(0,0,0,0.25);
  border: none;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  padding: 20px 16px;
  position: sticky;
  top: 0;
  z-index: 10;
}
.vulpe-compare-table th:first-child {
  border-top-left-radius: 24px;
}
.vulpe-compare-table th:last-child {
  border-top-right-radius: 24px;
  border-right: none;
}
.vulpe-compare-table tbody {
  position: relative;
}
.vulpe-compare-table tbody::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.06), transparent);
  pointer-events: none;
  z-index: 5;
}
.vulpe-compare-table td {
  color: #2c3e50;
  font-weight: 500;
  background: #fff;
  transition: background-color 0.2s ease;
}
.vulpe-compare-table tr:last-child td {
  border-bottom: none;
}
.vulpe-compare-table tr:last-child td:first-child {
  border-bottom-left-radius: 24px;
}
.vulpe-compare-table tr:last-child td:last-child {
  border-bottom-right-radius: 24px;
}

/* Ícones SVG modernos */
.vulpe-compare-table td.ok::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%232ecc71'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  vertical-align: middle;
}

.vulpe-compare-table td.no::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23e74c3c'%3E%3Cpath d='M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  vertical-align: middle;
}

.vulpe-compare-table td.ok,
.vulpe-compare-table td.no {
  font-size: 1.1em;
  font-weight: 600;
  background: #fff;
}

.vulpe-compare-table tr td:first-child {
  text-align: left;
  font-weight: 600;
  color: #2c3e50;
  background: #f8f9ff;
  border-right: 1px solid #f0f0fa;
}

/* Hover effects modernos */
.vulpe-compare-table tr:hover td {
  background: #f8f9ff;
}

.vulpe-compare-table tr:hover td:first-child {
  background: #eef2ff;
}

/* Preços destacados */
.vulpe-compare-table td b {
  color: #7B3FE4;
  font-weight: 700;
}

/* VERSÃO MOBILE EM CARDS */
.vulpe-compare-mobile {
  display: none;
  flex-direction: column;
  gap: 20px;
  margin-top: 24px;
}

.vulpe-compare-mobile-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(123, 63, 228, 0.12);
  overflow: hidden;
  border: 2px solid transparent;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.vulpe-compare-mobile-card.vulpeinc {
  border-color: #7B3FE4;
  box-shadow: 0 8px 32px rgba(123, 63, 228, 0.25);
  position: relative;
}

.vulpe-compare-mobile-card.vulpeinc::before {
  content: 'RECOMENDADO';
  position: absolute;
  top: 12px;
  right: 12px;
  background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
  color: #fff;
  font-size: 0.7em;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 12px;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(46, 204, 113, 0.3);
}

.vulpe-compare-mobile-card-header {
  background: linear-gradient(135deg, #7B3FE4 0%, #3f51b5 100%);
  color: #fff;
  padding: 20px;
  text-align: center;
  font-weight: 800;
  font-size: 1.1em;
  position: relative;
}

.vulpe-compare-mobile-card-body {
  padding: 20px;
}

.vulpe-compare-mobile-feature {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid #f5f5f7;
  transition: background-color 0.2s ease;
}

.vulpe-compare-mobile-feature:hover {
  background: #f8f9ff;
  margin: 0 -20px;
  padding: 14px 20px;
}

.vulpe-compare-mobile-feature:last-child {
  border-bottom: none;
}

.vulpe-compare-mobile-feature-name {
  font-weight: 600;
  color: #2c3e50;
  font-size: 0.95em;
  text-align: left;
  flex: 1;
  line-height: 1.4;
}

.vulpe-compare-mobile-feature-value {
  font-weight: 700;
  font-size: 1.1em;
  min-width: 60px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Ícones SVG para mobile */
.vulpe-compare-mobile-feature-value.ok::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%232ecc71'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.vulpe-compare-mobile-feature-value.no::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23e74c3c'%3E%3Cpath d='M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.vulpe-compare-mobile-feature-value.price {
  color: #7B3FE4;
  font-size: 1.2em;
  font-weight: 800;
}





/* RESPONSIVIDADE MELHORADA */
@media (max-width: 1200px) {
  .vulpe-compare-section {
    max-width: 95vw;
    padding: 0 8px;
  }
  .vulpe-compare-table {
    min-width: 650px;
    font-size: 1em;
  }
  .vulpe-compare-table-wrap {
    cursor: grab;
  }
  .vulpe-compare-table-wrap:active {
    cursor: grabbing;
  }
}

@media (max-width: 900px) {
  .vulpe-compare-section h2 {
    font-size: 1.8em;
    margin-bottom: 20px;
  }
  .vulpe-compare-table {
    min-width: 600px;
    font-size: 0.95em;
  }
  .vulpe-compare-table th,
  .vulpe-compare-table td {
    padding: 14px 12px;
  }
}

@media (max-width: 768px) {
  .vulpe-compare-section h2 {
    font-size: 1.5em;
    margin-bottom: 16px;
  }
  .vulpe-compare-table-wrap {
    display: none;
  }
  .vulpe-compare-mobile {
    display: flex;
  }
  .vulpe-compare-mobile-card {
    margin: 0 4px;
  }
  /* Melhorar legibilidade dos cards mobile */
  .vulpe-compare-mobile-feature-name {
    line-height: 1.4;
  }
  .vulpe-compare-mobile-feature-value {
    line-height: 1.2;
  }
}

@media (max-width: 600px) {
  .vulpe-compare-section {
    padding: 0 4px;
    margin: 40px auto 0 auto;
  }
  .vulpe-compare-section h2 {
    font-size: 1.3em;
    margin-bottom: 12px;
  }
  .vulpe-compare-mobile-card-header {
    padding: 16px;
    font-size: 1em;
  }
  .vulpe-compare-mobile-card-body {
    padding: 16px;
  }
  .vulpe-compare-mobile-feature {
    padding: 12px 0;
  }
  .vulpe-compare-mobile-feature:hover {
    margin: 0 -16px;
    padding: 12px 16px;
  }
  .vulpe-compare-mobile-feature-name {
    font-size: 0.9em;
  }
  .vulpe-compare-mobile-feature-value {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .vulpe-compare-section h2 {
    font-size: 1.2em;
  }
  .vulpe-compare-mobile-card-header {
    padding: 14px;
    font-size: 0.95em;
  }
  .vulpe-compare-mobile-card-body {
    padding: 14px;
  }
  .vulpe-compare-mobile-feature {
    padding: 10px 0;
  }
  .vulpe-compare-mobile-feature:hover {
    margin: 0 -14px;
    padding: 10px 14px;
  }
  .vulpe-compare-mobile-feature-name {
    font-size: 0.85em;
  }
  .vulpe-compare-mobile-feature-value {
    font-size: 0.95em;
  }
  .vulpe-compare-mobile-card.vulpeinc::before {
    font-size: 0.65em;
    padding: 4px 8px;
    top: 8px;
    right: 8px;
  }
}

/* MELHORIAS ADICIONAIS PARA TABELA */
.vulpe-compare-table-wrap {
  position: relative;
  scrollbar-width: thin;
  scrollbar-color: #7B3FE4 #f0f0fa;
}

.vulpe-compare-table-wrap::-webkit-scrollbar {
  height: 8px;
}

.vulpe-compare-table-wrap::-webkit-scrollbar-track {
  background: #f5f5f7;
  border-radius: 4px;
}

.vulpe-compare-table-wrap::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #7B3FE4 0%, #3f51b5 100%);
  border-radius: 4px;
}

.vulpe-compare-table-wrap::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #3f51b5 0%, #7B3FE4 100%);
}

/* Melhorar contraste e legibilidade */
.vulpe-compare-table th {
  position: sticky;
  top: 0;
  z-index: 10;
}

/* Animações suaves para cards mobile */
.vulpe-compare-mobile-card {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.vulpe-compare-mobile-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(123, 63, 228, 0.2);
}

.vulpe-compare-mobile-card.vulpeinc:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(123, 63, 228, 0.3);
}

/* Melhorar acessibilidade */
.vulpe-compare-mobile-feature-value.ok,
.vulpe-compare-mobile-feature-value.no {
  position: relative;
}

.vulpe-compare-mobile-feature-value.ok::after,
.vulpe-compare-mobile-feature-value.no::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(46, 204, 113, 0.1);
  z-index: -1;
}

.vulpe-compare-mobile-feature-value.no::after {
  background: rgba(231, 76, 60, 0.1);
}

/* Efeito de destaque para preços */
.vulpe-compare-table td b,
.vulpe-compare-mobile-feature-value.price {
  background: linear-gradient(135deg, #7B3FE4 0%, #3f51b5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}

/* TRUSTPILOT REVIEWS SECTION */
.vulpe-trustpilot-section {
  text-align: center;
  padding: 64px 12px;
  background: #fff;
}

.vulpe-trustpilot-widget {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.trustpilot-review-box a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #00B67A;
  padding: 10px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: 600;
  color: #2c3e50;
  transition: all 0.2s ease-in-out;
}

.trustpilot-review-box a:hover {
  background: #F0FAF5;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 182, 122, 0.15);
}

.trustpilot-review-box .trustpilot-logo-star {
  color: #00B67A;
  fill: #00B67A;
}

.trustpilot-stars {
  display: flex;
  gap: 4px;
}

.trustpilot-stars .star, 
.trustpilot-stars .star-half-container {
  width: 32px;
  height: 32px;
}

.trustpilot-stars .star {
  color: #2c3e50;
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s ease;
}

.trustpilot-stars .star:hover {
  transform: scale(1.15);
  color: #7B3FE4;
}

/* Remover estilos antigos de meia estrela */
.star-half-container {
  display: none;
}

@media (max-width: 600px) {
  .trustpilot-review-box a {
    padding: 8px 12px;
    font-size: 1em;
  }
  .trustpilot-stars .star,
  .trustpilot-stars .star-half-container {
    width: 28px;
    height: 28px;
  }
}

.vulpe-video-testimonials {
  text-align: center;
  margin: 64px auto 0 auto;
  max-width: 1100px;
}
.vulpe-video-testimonials h2 {
  font-size: 2.5em;
  font-weight: 800;
  margin-bottom: 0.2em;
}
.vulpe-video-testimonials .subtitle {
  font-size: 1.2em;
  margin-bottom: 32px;
  color: #7B3FE4;
}
.vulpe-swiper {
  width: 100%;
  padding-bottom: 32px;
}
.swiper-wrapper {
  display: flex;
  align-items: stretch;
}
.swiper-slide {
  display: flex;
  justify-content: center;
}
.testimonial-card {
  background: #18122B;
  border-radius: 22px;
  overflow: hidden;
  width: 260px;
  box-shadow: 0 6px 32px rgba(44, 62, 80, 0.18);
  position: relative;
  transition: box-shadow 0.3s, transform 0.2s;
  margin: 0 8px;
  display: flex;
  flex-direction: column;
}
.testimonial-card:hover {
  transform: translateY(-8px) scale(1.04);
  box-shadow: 0 12px 40px rgba(123, 63, 228, 0.28);
}
.testimonial-thumb {
  width: 100%;
  height: 320px;
  background-size: cover !important;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #000;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}
.testimonial-thumb::after {
  content: '';
  display: block;
  position: absolute;
  left: 0; right: 0; bottom: 0; top: 0;
  background: linear-gradient(180deg, rgba(123,63,228,0.10) 60%, rgba(123,63,228,0.82) 100%);
  transition: background 0.3s;
}
.testimonial-card:hover .testimonial-thumb::after {
  background: linear-gradient(180deg, rgba(123,63,228,0.18) 40%, rgba(123,63,228,0.95) 100%);
}
.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255,255,255,0.18);
  border-radius: 50%;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(123, 63, 228, 0.25);
  transition: background 0.3s, box-shadow 0.3s, scale 0.3s;
  z-index: 2;
  font-size: 2.2em;
  color: #fff;
  text-shadow: 0 2px 12px #7B3FE4;
}
.testimonial-card:hover .play-icon {
  background: rgba(123,63,228,0.25);
  box-shadow: 0 4px 24px rgba(123, 63, 228, 0.45);
  scale: 1.12;
  color: #fff;
  text-shadow: 0 4px 18px #7B3FE4;
}
.play-icon span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 1.2em;
}
.testimonial-info {
  width: 100%;
  padding: 18px 16px 14px 16px;
  background: none;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.testimonial-name {
  font-weight: 700;
  font-size: 1.12rem;
  color: #fff;
  margin-bottom: 2px;
  text-shadow: 0 2px 8px #7B3FE433;
}
.testimonial-company {
  font-weight: 400;
  font-size: 0.98rem;
  color: #e0e0e0;
  text-shadow: 0 1px 4px #18122b55;
}
@media (max-width: 700px) {
  .testimonial-thumb {
    height: 220px;
  }
  .testimonial-card {
    width: 98vw;
    min-width: 0;
    border-radius: 14px;
  }
  .testimonial-info {
    padding: 12px 8px 10px 8px;
  }
  .play-icon {
    width: 48px;
    height: 48px;
    font-size: 1.5em;
  }
}
.swiper-pagination-bullet {
  background: #bbb;
  opacity: 1;
}
.swiper-pagination-bullet-active {
  background: #7B3FE4;
}

/* MODAL DE VÍDEO VULPEINC */
.vulpe-modal {
  position: fixed;
  z-index: 9999;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(24, 18, 43, 0.92);
  transition: opacity 0.25s;
  opacity: 0;
  pointer-events: none;
}
.vulpe-modal.open {
  opacity: 1;
  pointer-events: all;
}
.vulpe-modal-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, #7B3FE4 0%, #3f51b5 100%);
  opacity: 0.18;
  z-index: 1;
}
.vulpe-modal-content {
  position: relative;
  z-index: 2;
  background: #18122B;
  border-radius: 22px;
  box-shadow: 0 8px 48px #7B3FE444, 0 2px 16px #0008;
  padding: 0;
  max-width: 96vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  animation: modalIn 0.3s cubic-bezier(0.4,0,0.2,1);
}
@keyframes modalIn {
  from { transform: translateY(40px) scale(0.98); opacity: 0; }
  to { transform: none; opacity: 1; }
}
.vulpe-modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: rgba(123,63,228,0.12);
  color: #fff;
  border: none;
  font-size: 2.2em;
  font-weight: 700;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  cursor: pointer;
  z-index: 3;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  box-shadow: 0 2px 12px #7B3FE422;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vulpe-modal-close:hover {
  background: #7B3FE4;
  color: #fff;
  transform: scale(1.08);
}
.vulpe-modal-video-wrapper {
  width: 98vw;
  max-width: 900px;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: 18px;
  overflow: hidden;
  margin: 48px 0 24px 0;
  box-shadow: 0 4px 32px #7B3FE422;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vulpe-modal-video-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 18px;
  background: #000;
  display: block;
}
@media (max-width: 900px) {
  .vulpe-modal-video-wrapper {
    width: 99vw;
    max-width: 99vw;
    aspect-ratio: 16/9;
    margin: 24px 0 12px 0;
    border-radius: 10px;
  }
  .vulpe-modal-video-wrapper iframe {
    border-radius: 10px;
  }
  .vulpe-modal-close {
    top: 6px;
    right: 8px;
    width: 36px;
    height: 36px;
    font-size: 1.5em;
  }
}

/* Ajuste para vídeos horizontais no carrossel de depoimentos */
.testimonial-card.testimonial-horizontal .testimonial-thumb {
  /* Regra removida para padronizar visual */
}

/* Remover regra anterior de contain para testimonial-horizontal */
.testimonial-card.testimonial-horizontal .testimonial-thumb {
  /* Regra removida para padronizar visual */
} 

/* Overlay do menu mobile */
.vulpe-navbar-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(10,10,20,0.85);
  z-index: 9999;
  transition: opacity 0.3s;
  opacity: 0;
}
.vulpe-navbar-overlay.open {
  display: block;
  opacity: 1;
}

/* Menu mobile off-canvas escuro e centralizado */
@media (max-width: 900px) {
  .vulpe-navbar-menu {
    background: linear-gradient(135deg, #181828 0%, #3f2177 100%);
    box-shadow: none;
    border-radius: 0;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    padding: 32px 0 24px 0;
    width: 85vw;
    max-width: 340px;
    right: 0;
    left: auto;
    top: 0;
    height: 100vh;
    position: fixed;
    z-index: 10000;
    overflow-y: auto;
    transition: transform 0.3s, opacity 0.3s;
    transform: translateX(100%);
    opacity: 0;
  }
  .vulpe-navbar-menu.open {
    display: flex;
    transform: translateX(0);
    opacity: 1;
  }
  .vulpe-navbar-nav {
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 0;
    padding: 0;
  }
  .vulpe-nav-item {
    width: 100%;
    margin-bottom: 12px;
  }
  .vulpe-nav-link {
    width: 100%;
    justify-content: center;
    font-size: 1.15em;
    padding: 18px 0;
    border-radius: 0;
    color: #fff;
    background: none;
    border: none;
    transition: background 0.2s, color 0.2s;
  }
  .vulpe-nav-link:hover {
    background: rgba(255,255,255,0.07);
    color: #b39ddb;
  }
  .vulpe-dropdown-menu {
    background: none;
    box-shadow: none;
    border-radius: 0;
    margin: 0;
    padding: 0;
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
  }
  .vulpe-dropdown.open .vulpe-dropdown-menu {
    display: block;
  }
  .vulpe-dropdown-menu a {
    padding: 12px 0 12px 24px;
    font-size: 1em;
    color: #b39ddb;
    text-align: left;
    background: none;
    border: none;
    border-radius: 0;
    transition: background 0.2s, color 0.2s;
  }
  .vulpe-dropdown-menu a:hover {
    background: rgba(255,255,255,0.04);
    color: #fff;
  }
  .vulpe-navbar-close {
    position: absolute;
    top: 18px;
    right: 18px;
    background: none;
    border: none;
    color: #fff;
    font-size: 2.2em;
    font-weight: bold;
    z-index: 10001;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    transition: color 0.2s;
  }
  .vulpe-navbar-close:hover {
    color: #b39ddb;
  }
  .vulpe-navbar-action {
    margin: 32px 0 0 0;
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .vulpe-navbar-action .vulpe-hero-btn {
    background: #7B3FE4;
    color: #fff;
    border: none;
    border-radius: 24px;
    font-size: 1.1em;
    padding: 16px 32px;
    font-weight: 700;
    box-shadow: 0 2px 16px 0 rgba(123,63,228,0.10);
    margin: 0 auto;
    width: auto;
    transition: background 0.2s, color 0.2s;
  }
  .vulpe-navbar-action .vulpe-hero-btn:hover {
    background: #b39ddb;
    color: #181828;
  }
  .vulpe-lang-switcher {
    margin: 24px 0 0 0;
    display: flex;
    justify-content: center;
    width: 100%;
  }
} 

.vulpe-navbar-close:hover {
  color: #b39ddb;
}

/* Esconder botão de fechar no desktop */
.vulpe-navbar-close {
  display: none;
}

@media (max-width: 900px) {
  .vulpe-navbar-close {
    display: block;
  }
}

/* Responsividade da seção Benefícios */
@media (max-width: 900px) {
  .vulpe-benefits-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 30px;
    max-width: 100%;
  }
  
  .vulpe-benefit-category {
    padding: 24px 20px;
  }
  
  .vulpe-benefit-category h3 {
    font-size: 1.2em;
    margin-bottom: 16px;
  }
}

@media (max-width: 600px) {
  .vulpe-benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 24px;
  }
  
  .vulpe-benefit-category {
    padding: 20px 16px;
  }
  
  .vulpe-benefit-category h3 {
    font-size: 1.1em;
    margin-bottom: 14px;
  }
  
  .vulpe-benefits-list li {
    padding: 12px 16px;
    font-size: 0.95em;
  }
}

/* Seção de Experiência - Estatísticas */
.vulpe-experiencia-section {
  background: #18191f;
  border-radius: 32px;
  max-width: 1100px;
  margin: 64px auto;
  padding: 56px 24px 48px 24px;
  box-shadow: 0 8px 48px #0002;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.vulpe-experiencia-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(123, 63, 228, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(63, 81, 181, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.vulpe-experiencia-header {
  text-align: center;
  margin-bottom: 48px;
  position: relative;
  z-index: 2;
}

.vulpe-experiencia-header h2 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-size: 2.6em;
  font-weight: 800;
  color: #fff;
  margin: 0 0 16px 0;
  text-align: center;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.vulpe-experiencia-header p {
  font-size: 1.15em;
  color: #bdbde6;
  font-weight: 500;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.5;
}

.vulpe-experiencia-stats {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.vulpe-stat-card {
  background: #18191f;
  border-radius: 20px;
  border: 1.5px solid #232336;
  padding: 38px 32px 32px 32px;
  text-align: center;
  min-width: 200px;
  flex: 1;
  max-width: 250px;
  box-shadow: 0 2px 16px #0001;
  transition: box-shadow 0.2s, border 0.2s, transform 0.2s;
  position: relative;
  overflow: hidden;
}

.vulpe-stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(123, 63, 228, 0.05) 0%, rgba(63, 81, 181, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.vulpe-stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 32px #7B3FE433;
  border: 1.5px solid #7B3FE4;
}

.vulpe-stat-card:hover::before {
  opacity: 1;
}

.vulpe-stat-number {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-size: 2.8em;
  font-weight: 900;
  color: #7B3FE4;
  margin-bottom: 8px;
  position: relative;
  z-index: 2;
  display: block;
}

.vulpe-stat-card:hover .vulpe-stat-number {
  color: #fff;
}

.vulpe-stat-label {
  font-size: 1em;
  color: #bdbde6;
  font-weight: 600;
  position: relative;
  z-index: 2;
  line-height: 1.3;
}

/* Animação de contagem */
@keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.vulpe-stat-card.animate {
  animation: countUp 0.8s ease-out;
}

/* Responsividade para a seção de experiência */
@media (max-width: 900px) {
  .vulpe-experiencia-section {
    padding: 18px 2vw 18px 2vw;
    max-width: 99vw;
    border-radius: 12px;
    margin: 18px auto;
  }
  
  .vulpe-experiencia-header h2 {
    font-size: 1.3em;
    margin-bottom: 6px;
  }
  
  .vulpe-experiencia-header p {
    font-size: 0.98em;
    margin-bottom: 18px;
  }
  
  .vulpe-experiencia-stats {
    gap: 10px;
    margin-bottom: 18px;
  }
  
  .vulpe-stat-card {
    padding: 18px 8px 16px 8px;
    max-width: 98vw;
    min-width: 0;
    width: 100%;
    border-radius: 10px;
    font-size: 0.98em;
  }
  
  .vulpe-stat-number {
    font-size: 1.5em;
    margin-bottom: 4px;
  }
  
  .vulpe-stat-label {
    font-size: 0.98em;
  }
}

/* FOOTER VULPEINC */
.vulpe-footer {
  background: linear-gradient(90deg, #7B3FE4 0%, #3f51b5 100%);
  color: #fff;
  padding: 0;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-top: 0px;
}

/* MAIN FOOTER SECTION */
.vulpe-footer-main {
  padding: 40px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.vulpe-footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 0 24px;
  align-items: start;
}
.vulpe-footer-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.vulpe-footer-column-title {
  color: #fff;
  font-size: 0.8em;
  font-weight: 600;
  margin: 0 0 12px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.vulpe-footer-brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.vulpe-footer-logo {
  height: 60px;
  width: auto;
  max-width: 300px;
  object-fit: contain;
}

/* CEO SECTION */
.vulpe-footer-ceo-section {
  display: flex;
  justify-content: center;
  margin: 30px 0 0 0;
  padding: 20px 0;
}

.vulpe-ceo-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 20px;
  max-width: 400px;
}

.vulpe-ceo-photo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}

.vulpe-ceo-info {
  text-align: left;
}

.vulpe-ceo-info h3 {
  color: #fff;
  font-size: 1.2em;
  font-weight: 600;
  margin: 0 0 4px 0;
}

.vulpe-ceo-info p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95em;
  margin: 0;
}
.vulpe-footer-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.vulpe-footer-two-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  width: 100%;
}

.vulpe-footer-col-left,
.vulpe-footer-col-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.vulpe-footer-category {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}

.vulpe-footer-category h5 {
  color: #fff;
  font-size: 0.8em;
  font-weight: 600;
  margin: 0 0 4px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.9;
}

.vulpe-footer-category a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-weight: 400;
  font-size: 0.8em;
  transition: color 0.2s;
  padding-left: 12px;
}

.vulpe-footer-category a:hover {
  color: #ffe082;
}
.vulpe-footer-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95em;
  transition: color 0.2s;
}
.vulpe-footer-nav a:hover {
  color: #ffe082;
}
.vulpe-footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.9em;
  opacity: 0.9;
}

.vulpe-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.9);
}

.vulpe-contact-icon {
  color: #ffe082;
  flex-shrink: 0;
}
.vulpe-footer-social-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.vulpe-footer-social {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-shrink: 0;
}
.vulpe-social-icon {
  color: #fff;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  padding: 8px;
  display: flex;
  align-items: center;
  transition: background 0.2s, color 0.2s;
}
.vulpe-social-icon:hover {
  background: #fff;
  color: #7B3FE4;
}
.vulpe-footer-bottom {
  padding: 20px 0;
  font-size: 0.9em;
  opacity: 0.8;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 24px;
}

.vulpe-footer-bottom-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 24px;
}

.vulpe-footer-copyright {
  color: rgba(255, 255, 255, 0.8);
}

.vulpe-cta-button {
  background: linear-gradient(90deg, #ffe082 0%, #ffd54f 100%);
  color: #333;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9em;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(255, 224, 130, 0.3);
}

.vulpe-cta-button:hover {
  background: linear-gradient(90deg, #ffd54f 0%, #ffb300 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 224, 130, 0.4);
}
@media (max-width: 1000px) {
  .vulpe-footer-container {
    flex-wrap: wrap;
    gap: 16px;
    padding: 0 16px;
  }
  .vulpe-footer-contact {
    order: 3;
    width: 100%;
    margin: 8px 0 0 0;
  }
}
@media (max-width: 700px) {
  .vulpe-footer-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 0 12px;
  }
  .vulpe-footer-nav {
    width: 100%;
    justify-content: space-between;
  }
  .vulpe-footer-contact {
    order: 2;
    margin: 0;
  }
  .vulpe-footer-social {
    order: 3;
    align-self: flex-start;
  }
}
@media (max-width: 480px) {
  .vulpe-footer {
    padding: 24px 0 0 0;
  }
  .vulpe-footer-nav {
    flex-wrap: wrap;
    gap: 16px;
  }
  .vulpe-footer-brand {
    font-size: 1.2em;
  }
  .vulpe-footer-bottom {
    font-size: 0.85em;
    padding: 12px 0 8px 0;
  }
}

/* FOOTER ESPANHOL */
.vulpe-footer-espanol {
  background: linear-gradient(90deg, #5e35b1 0%, #3949ab 100%);
  margin-top: 0;
  border-top: 2px solid rgba(255,255,255,0.2);
}

@media (max-width: 1000px) {
  .vulpe-footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 0 16px;
  }
  .vulpe-footer-column:nth-child(3),
  .vulpe-footer-column:nth-child(4) {
    grid-column: 1 / -1;
    justify-self: center;
  }
  
  .vulpe-footer-bottom-container {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  .vulpe-footer-contact {
    order: 3;
    width: 100%;
    margin: 8px 0 0 0;
  }
}
@media (max-width: 700px) {
  .vulpe-footer-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 0 12px;
  }
  .vulpe-footer-nav {
    width: 100%;
    justify-content: space-between;
  }
  .vulpe-footer-contact {
    order: 2;
    margin: 0;
  }
  .vulpe-footer-social {
    order: 3;
    align-self: flex-start;
  }
}
@media (max-width: 480px) {
  .vulpe-footer {
    padding: 24px 0 0 0;
  }
  .vulpe-footer-nav {
    flex-wrap: wrap;
    gap: 16px;
  }
  .vulpe-footer-brand {
    font-size: 1.2em;
  }
  .vulpe-footer-bottom {
    font-size: 0.85em;
    padding: 12px 0 8px 0;
  }
}

/* SOCIAL MEDIA CONTAINER */
.vulpe-footer-social-container {
  padding: 30px 0;
  background: rgba(255, 255, 255, 0.05);
}

/* SEÇÕES DE REDES SOCIAIS */
.vulpe-footer-social-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 0;
  padding: 0;
}

.vulpe-footer-social-section:last-child {
  margin-bottom: 0;
}

.vulpe-social-label {
  color: #fff;
  font-size: 0.8em;
  font-weight: 600;
  margin-bottom: 15px;
  opacity: 0.95;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 1000px) {
  .vulpe-footer-container {
    flex-wrap: wrap;
    gap: 16px;
    padding: 0 16px;
  }
  .vulpe-footer-contact {
    order: 3;
    width: 100%;
    margin: 8px 0 0 0;
  }
}
@media (max-width: 700px) {
  .vulpe-footer-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 0 12px;
  }
  .vulpe-footer-nav {
    width: 100%;
    justify-content: space-between;
  }
  .vulpe-footer-contact {
    order: 2;
    margin: 0;
  }
  .vulpe-footer-social {
    order: 3;
    align-self: flex-start;
  }
  .vulpe-footer-social-container {
    padding: 20px 0;
  }
  
  .vulpe-footer-social-section {
    margin: 0 0 20px 0;
  }
  
  .vulpe-social-label {
    font-size: 0.9em;
    margin-bottom: 12px;
  }
}
@media (max-width: 480px) {
  .vulpe-footer {
    padding: 24px 0 0 0;
  }
  .vulpe-footer-nav {
    flex-wrap: wrap;
    gap: 16px;
  }
  .vulpe-footer-brand {
    font-size: 1.2em;
  }
  .vulpe-footer-bottom {
    font-size: 0.85em;
    padding: 12px 0 8px 0;
  }
  .vulpe-footer-social-container {
    padding: 15px 0;
  }
  
  .vulpe-footer-social-section {
    margin: 0 0 15px 0;
  }
  
  .vulpe-social-label {
    font-size: 0.85em;
    margin-bottom: 10px;
  }
  
  .vulpe-footer-logo {
    height: 45px;
    max-width: 220px;
  }
  
  .vulpe-footer-ceo-section {
    margin: 20px 0 0 0;
    padding: 15px 0;
  }
  
  .vulpe-ceo-content {
    gap: 15px;
    max-width: 300px;
  }
  
  .vulpe-ceo-photo {
    width: 130px;
    height: 130px;
  }
  
  .vulpe-ceo-info h3 {
    font-size: 1em;
  }
  
  .vulpe-ceo-info p {
    font-size: 0.85em;
  }
}

/* Estilos para links de contato no footer */
.vulpe-contact-link {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.vulpe-contact-link:hover {
  color: #b39ddb;
  text-decoration: underline;
}

/* Estilos para mensagens do formulário de contato */
.vulpe-contact-success {
  background: #4caf50;
  color: white;
  padding: 12px 16px;
  border-radius: 8px;
  margin-top: 16px;
  font-weight: 500;
  text-align: center;
}

.vulpe-contact-error {
  background: #f44336;
  color: white;
  padding: 12px 16px;
  border-radius: 8px;
  margin-top: 16px;
  font-weight: 500;
  text-align: center;
  animation: slideIn 0.3s ease;
}

/* Animação para mensagens */
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Estado de loading do botão */
.vulpe-contact-form button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  background: #9c27b0;
}

/* Melhorar espaçamento das mensagens */
#vulpe-contact-message {
  margin-top: 16px;
  min-height: 20px;
}

/* ===== CTAs CRIATIVOS ===== */

/* CTA Sobre Nós */
.vulpe-about-cta {
  margin-top: 60px;
  text-align: center;
}

.vulpe-cta-content h3 {
  font-size: 2.2em;
  font-weight: 800;
  color: #7B3FE4;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #7B3FE4 0%, #3f51b5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.vulpe-cta-content p {
  font-size: 1.2em;
  color: #666;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.vulpe-cta-btn {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1em;
  transition: all 0.3s ease;
  margin: 0 8px;
  border: 2px solid transparent;
}

.vulpe-cta-primary {
  background: linear-gradient(135deg, #7B3FE4 0%, #3f51b5 100%);
  color: white;
  box-shadow: 0 8px 25px rgba(123, 63, 228, 0.3);
}

.vulpe-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(123, 63, 228, 0.4);
  color: white;
}

.vulpe-cta-secondary {
  background: transparent;
  color: #7B3FE4;
  border: 2px solid #7B3FE4;
}

/* Estilo específico para botão secundário no hero roxo */
.vulpe-llc-hero .vulpe-cta-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.vulpe-cta-secondary:hover {
  background: #7B3FE4;
  color: white;
  transform: translateY(-3px);
}

.vulpe-llc-hero .vulpe-cta-secondary:hover {
  background: white;
  color: #7B3FE4;
  transform: translateY(-3px);
}

.vulpe-cta-outline {
  background: transparent;
  color: #7B3FE4;
  border: 2px solid #7B3FE4;
}

.vulpe-cta-outline:hover {
  background: #7B3FE4;
  color: white;
  transform: translateY(-3px);
}

/* CTA Banner (Benefícios) */
.vulpe-benefits-cta {
  margin-top: 60px;
}

.vulpe-cta-banner {
  background: linear-gradient(135deg, #7B3FE4 0%, #3f51b5 100%);
  border-radius: 20px;
  padding: 48px;
  text-align: center;
  color: white;
  box-shadow: 0 20px 40px rgba(123, 63, 228, 0.2);
  position: relative;
  overflow: hidden;
}

.vulpe-cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

.vulpe-cta-banner-content h3 {
  font-size: 2.4em;
  font-weight: 800;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
  color: white;
}

.vulpe-cta-banner-content p {
  font-size: 1.3em;
  margin-bottom: 32px;
  opacity: 1;
  position: relative;
  z-index: 2;
  color: white !important;
}

.vulpe-cta-banner-buttons {
  position: relative;
  z-index: 2;
}

.vulpe-cta-or {
  color: rgba(255,255,255,0.8);
  margin: 0 16px;
  font-weight: 600;
}

/* Estilo específico para botões outline dentro do banner roxo */
.vulpe-cta-banner .vulpe-cta-outline {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.vulpe-cta-banner .vulpe-cta-outline:hover {
  background: white;
  color: #7B3FE4;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

/* Estilo específico para botões outline dentro do CTA gradiente roxo */
.vulpe-cta-features-highlight .vulpe-cta-outline {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.vulpe-cta-features-highlight .vulpe-cta-outline:hover {
  background: white;
  color: #7B3FE4;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

/* CTA Stats Highlight (Experiência) */
.vulpe-experiencia-cta {
  margin-top: 60px;
}

.vulpe-cta-stats-highlight {
  background: linear-gradient(135deg, #2B2936 0%, #232336 100%);
  border: 2px solid #7B3FE4;
  border-radius: 20px;
  padding: 48px;
  text-align: center;
  position: relative;
}

.vulpe-cta-stats-highlight::before {
  content: '🎯';
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: #7B3FE4;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 1.5em;
  border: 2px solid #7B3FE4;
  color: white;
}

.vulpe-cta-stats-content h3 {
  font-size: 2.2em;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}

.vulpe-cta-stats-content p {
  font-size: 1.2em;
  color: #bdbde6;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.vulpe-cta-stats-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* CTA Features Highlight (Por que Escolher) */
.vulpe-why-cta {
  margin-top: 60px;
}

.vulpe-cta-features-highlight {
  background: linear-gradient(135deg, #7B3FE4 0%, #3f51b5 100%);
  border: 2px solid #7B3FE4;
  border-radius: 20px;
  padding: 48px;
  text-align: center;
  position: relative;
  color: white;
}

.vulpe-cta-features-highlight::before {
  content: '🌟';
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 1.5em;
  border: 2px solid #7B3FE4;
  box-shadow: 0 4px 15px rgba(123, 63, 228, 0.3);
}

.vulpe-cta-features-content h3 {
  font-size: 2.2em;
  font-weight: 800;
  color: white;
  margin-bottom: 16px;
}

.vulpe-cta-features-content p {
  font-size: 1.2em;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.vulpe-cta-features-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* CTA Social Proof (Depoimentos) */
.vulpe-testimonials-cta {
  margin-top: 60px;
}

.vulpe-cta-social-proof {
  background: linear-gradient(135deg, #f8f9ff 0%, #e8eaff 100%);
  border: 2px solid #7B3FE4;
  border-radius: 20px;
  padding: 48px;
  text-align: center;
  position: relative;
}

.vulpe-cta-social-proof::before {
  content: '💬';
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 1.5em;
  border: 2px solid #7B3FE4;
}

.vulpe-cta-social-content h3 {
  font-size: 2.2em;
  font-weight: 800;
  color: #7B3FE4;
  margin-bottom: 16px;
}

.vulpe-cta-social-content p {
  font-size: 1.2em;
  color: #666;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.vulpe-cta-social-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Responsividade para CTAs */
@media (max-width: 768px) {
  .vulpe-cta-content h3,
  .vulpe-cta-banner-content h3,
  .vulpe-cta-banner-content p,
  .vulpe-cta-stats-content h3,
  .vulpe-cta-stats-content p,
  .vulpe-cta-features-content h3,
  .vulpe-cta-features-content p,
  .vulpe-cta-social-content h3,
  .vulpe-cta-social-content p {
    font-size: 1.8em;
    color: white !important;
  }
  
  .vulpe-cta-banner,
  .vulpe-cta-stats-highlight,
  .vulpe-cta-features-highlight,
  .vulpe-cta-social-proof {
    padding: 32px 24px;
  }
  
  .vulpe-cta-btn {
    padding: 14px 24px;
    font-size: 1em;
    margin: 4px;
  }
  
  .vulpe-cta-stats-actions,
  .vulpe-cta-features-actions,
  .vulpe-cta-social-actions {
    flex-direction: column;
    align-items: center;
  }
  
  /* Garantir que o texto seja branco na seção vulpe-cta-features-highlight no mobile */
  .vulpe-cta-features-highlight h3,
  .vulpe-cta-features-highlight p {
    color: white !important;
  }
}

/* PÁGINA EMPRESA AMERICANA (LLC) */

/* Hero específico para LLC */
.vulpe-llc-hero {
  background: linear-gradient(135deg, #7B3FE4 0%, #3f51b5 100%);
  min-height: 80vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
  padding: 80px 12px 64px 12px;
  position: relative;
  overflow: hidden;
}

.vulpe-llc-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.vulpe-llc-hero .vulpe-hero-content {
  position: relative;
  z-index: 2;
}

.vulpe-llc-hero .vulpe-hero-content h1 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-size: 3.2em;
  font-weight: 900;
  color: #fff;
  margin: 0 0 24px 0;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.vulpe-llc-hero .vulpe-hero-content p {
  font-size: 1.3em;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
  line-height: 1.6;
  max-width: 600px;
}

.vulpe-hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.vulpe-llc-hero .vulpe-hero-btn {
  padding: 16px 32px;
  font-size: 1.1em;
  font-weight: 700;
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
  min-width: 160px;
}

/* Seção de Processo */
.vulpe-process-section {
  background: #f8f9ff;
  padding: 80px 12px;
}

.vulpe-process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.vulpe-process-step {
  background: #fff;
  padding: 32px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(123, 63, 228, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.vulpe-process-step:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 32px rgba(123, 63, 228, 0.2);
}

.vulpe-process-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #7B3FE4 0%, #3f51b5 100%);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  font-weight: 900;
  margin: 0 auto 24px auto;
}

.vulpe-process-step h3 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-size: 1.3em;
  font-weight: 700;
  color: #23272f;
  margin: 0 0 16px 0;
}

.vulpe-process-step p {
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* Seção de Estados */
.vulpe-states-section {
  background: #fff;
  padding: 80px 12px;
}

.vulpe-section-subtitle {
  font-size: 1.2em;
  color: #666;
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px auto;
  line-height: 1.6;
}

.vulpe-states-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.vulpe-state-card {
  background: #fff;
  border: 2px solid #e8eaff;
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.vulpe-state-card.recommended {
  border-color: #7B3FE4;
  box-shadow: 0 4px 20px rgba(123, 63, 228, 0.15);
}

.vulpe-state-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #7B3FE4;
  color: #fff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85em;
  font-weight: 700;
}

.vulpe-state-card h3 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-size: 1.4em;
  font-weight: 700;
  color: #23272f;
  margin: 0 0 12px 0;
}

.vulpe-state-tax {
  font-size: 1.2em;
  font-weight: 700;
  color: #7B3FE4;
  margin-bottom: 24px;
}

.vulpe-state-features {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.vulpe-state-features li {
  padding: 8px 0;
  color: #666;
  font-size: 0.95em;
}

/* Lista de Taxas */
.vulpe-taxes-list {
  max-width: 600px;
  margin: 40px auto 0;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.vulpe-tax-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  border-bottom: 1px solid #f0f0f0;
  transition: background-color 0.2s ease;
}

.vulpe-tax-item:last-child {
  border-bottom: none;
}

.vulpe-tax-item:hover {
  background-color: #f8f9ff;
}

.vulpe-tax-state {
  font-size: 1em;
  color: #333;
  font-weight: 500;
}

.vulpe-tax-amount {
  font-size: 1em;
  color: #7B3FE4;
  font-weight: 700;
}

/* Seção de Pacotes */
.vulpe-packages-section {
  background: linear-gradient(135deg, #f8f9ff 0%, #e8ecff 100%);
  padding: 80px 12px;
  position: relative;
}

.vulpe-packages-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23ffffff" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="%23ffffff" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  pointer-events: none;
}

.vulpe-packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 48px;
  position: relative;
  z-index: 1;
}

.vulpe-package-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(123, 63, 228, 0.1);
  transition: all 0.3s ease;
  position: relative;
  border: 2px solid transparent;
  overflow: hidden;
}

.vulpe-package-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #7B3FE4, #9B5FE4);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.vulpe-package-card:hover::before {
  opacity: 1;
}

.vulpe-package-card.recommended {
  border-color: #7B3FE4;
  transform: scale(1.05);
  box-shadow: 0 8px 32px rgba(123, 63, 228, 0.2);
}

.vulpe-package-card.recommended::before {
  opacity: 1;
}

.vulpe-package-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #7B3FE4 0%, #3f51b5 100%);
  color: #fff;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.9em;
  font-weight: 700;
}

.vulpe-package-header h3 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-size: 1.6em;
  font-weight: 800;
  color: #23272f;
  margin: 0 0 16px 0;
}

.vulpe-package-price {
  font-size: 2.5em;
  font-weight: 900;
  color: #7B3FE4;
  margin-bottom: 8px;
}

.vulpe-package-subtitle {
  color: #666;
  font-size: 0.95em;
  margin-bottom: 32px;
}

.vulpe-package-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  text-align: left;
}

.vulpe-package-features li {
  padding: 12px 0;
  color: #666;
  font-size: 1em;
  border-bottom: 1px solid #f0f0f0;
  position: relative;
  padding-left: 24px;
}

.vulpe-package-features li::before {
  content: '✅';
  position: absolute;
  left: 0;
  top: 12px;
  font-size: 0.9em;
}

.vulpe-package-features li:last-child {
  border-bottom: none;
}

.vulpe-package-btn {
  background: linear-gradient(135deg, #7B3FE4 0%, #3f51b5 100%);
  color: #fff;
  padding: 16px 32px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  display: inline-block;
  transition: all 0.3s ease;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.vulpe-package-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.vulpe-package-btn:hover::before {
  left: 100%;
}

.vulpe-package-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(123, 63, 228, 0.3);
  color: #fff;
}

/* Seção FAQ */
.vulpe-faq-section {
  background: #fff;
  padding: 80px 12px;
}

.vulpe-faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.vulpe-faq-item {
  background: #f8f9ff;
  padding: 32px;
  border-radius: 16px;
  border-left: 4px solid #7B3FE4;
}

.vulpe-faq-item h3 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-size: 1.2em;
  font-weight: 700;
  color: #23272f;
  margin: 0 0 16px 0;
}

.vulpe-faq-item p {
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* Seção de Estratégia Tributária */
.vulpe-strategy-section {
  background: #f8f9ff;
  padding: 80px 12px;
}

.vulpe-strategy-section h2 {
  text-align: center;
  margin-bottom: 60px;
  font-size: 2.4em;
  font-weight: 800;
  color: #23272f;
}

.vulpe-strategy-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.vulpe-strategy-visual {
  position: relative;
}

.vulpe-strategy-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(123, 63, 228, 0.15);
}

.vulpe-strategy-image img {
  width: 100%;
  height: auto;
  display: block;
}

.vulpe-strategy-plan-card {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: #fff;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  text-align: center;
  min-width: 160px;
}

.vulpe-plan-label {
  font-size: 0.85em;
  color: #666;
  margin-bottom: 8px;
  font-weight: 500;
}

.vulpe-plan-name {
  font-size: 1.8em;
  font-weight: 900;
  color: #23272f;
  margin-bottom: 8px;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
}

.vulpe-plan-price {
  font-size: 1.1em;
  font-weight: 700;
  color: #7B3FE4;
}

.vulpe-strategy-info h3 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-size: 2.2em;
  font-weight: 800;
  color: #23272f;
  margin: 0 0 24px 0;
  line-height: 1.2;
}

.vulpe-strategy-info p {
  font-size: 1.1em;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.vulpe-strategy-info p strong {
  color: #23272f;
  font-weight: 700;
}

.vulpe-strategy-features {
  list-style: none;
  padding: 0;
  margin: 32px 0;
}

.vulpe-strategy-features li {
  padding: 12px 0;
  color: #23272f;
  font-size: 1.1em;
  font-weight: 600;
  position: relative;
  padding-left: 32px;
}

.vulpe-strategy-features li:before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 12px;
  color: #7B3FE4;
  font-size: 1.2em;
  font-weight: 900;
}

.vulpe-strategy-btn {
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
  color: #fff;
  padding: 18px 32px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1em;
  display: inline-block;
  transition: all 0.3s ease;
  text-align: center;
  min-width: 280px;
}

.vulpe-strategy-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(231, 76, 60, 0.3);
  color: #fff;
}

/* Seção do Plano Gold */
.vulpe-gold-section {
  background: #f8f9ff;
  padding: 80px 12px;
}

.vulpe-gold-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.vulpe-gold-info h2 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-size: 2.4em;
  font-weight: 800;
  color: #23272f;
  margin: 0 0 24px 0;
  line-height: 1.2;
}

.vulpe-gold-info p {
  font-size: 1.1em;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.vulpe-gold-info p strong {
  color: #23272f;
  font-weight: 700;
}

.vulpe-gold-features {
  list-style: none;
  padding: 0;
  margin: 32px 0;
}

.vulpe-gold-features li {
  padding: 12px 0;
  color: #23272f;
  font-size: 1.1em;
  font-weight: 600;
  position: relative;
  padding-left: 32px;
}

.vulpe-gold-features li:before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 12px;
  color: #7B3FE4;
  font-size: 1.2em;
  font-weight: 900;
}

.vulpe-gold-btn {
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
  color: #fff;
  padding: 18px 32px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1em;
  display: inline-block;
  transition: all 0.3s ease;
  text-align: center;
  min-width: 280px;
}

.vulpe-gold-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(231, 76, 60, 0.3);
  color: #fff;
}

.vulpe-gold-visual {
  position: relative;
}

.vulpe-gold-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(123, 63, 228, 0.15);
}

.vulpe-gold-image img {
  width: 100%;
  height: auto;
  display: block;
}

.vulpe-gold-plan-card {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: #fff;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  text-align: center;
  min-width: 160px;
}

.vulpe-gold-plan-label {
  font-size: 0.85em;
  color: #666;
  margin-bottom: 8px;
  font-weight: 500;
}

.vulpe-gold-plan-name {
  font-size: 1.8em;
  font-weight: 900;
  color: #23272f;
  margin-bottom: 8px;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
}

.vulpe-gold-plan-price {
  font-size: 1.1em;
  font-weight: 700;
  color: #7B3FE4;
}

/* Disclaimer do Plano Gold */
.vulpe-gold-disclaimer {
  background: rgba(255, 243, 205, 0.3);
  border: 1px solid rgba(255, 234, 167, 0.4);
  border-radius: 6px;
  padding: 8px 12px;
  margin-top: 15px;
  display: flex;
  align-items: flex-start;
  gap: 6px;
}

.vulpe-warning-icon {
  font-size: 0.7em;
  flex-shrink: 0;
  margin-top: 1px;
}

.vulpe-gold-disclaimer p {
  margin: 0;
  font-size: 0.65em;
  color: #999;
  line-height: 1.2;
}

.vulpe-gold-disclaimer p strong {
  color: #999;
  font-weight: 600;
}

/* Responsividade */
@media (max-width: 900px) {
  .vulpe-llc-hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 60px 12px 40px 12px;
  }
  
  .vulpe-llc-hero .vulpe-hero-content h1 {
    font-size: 2.4em;
  }
  
  .vulpe-llc-hero .vulpe-hero-content p {
    font-size: 1.1em;
  }
  
  .vulpe-hero-buttons {
    justify-content: center;
  }
  
  .vulpe-strategy-section h2 {
    font-size: 2em;
    margin-bottom: 40px;
  }
  
  .vulpe-strategy-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .vulpe-strategy-info h3 {
    font-size: 1.8em;
  }
  
  .vulpe-strategy-plan-card {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 20px;
    display: inline-block;
  }
  
  .vulpe-gold-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .vulpe-gold-info h2 {
    font-size: 2em;
  }
  
  .vulpe-gold-plan-card {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 20px;
    display: inline-block;
  }
  
  .vulpe-gold-disclaimer {
    padding: 8px 12px;
    flex-direction: column;
    text-align: center;
  }
  
  .vulpe-warning-icon {
    margin-top: 0;
    margin-bottom: 4px;
  }
  
  .vulpe-process-steps {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .vulpe-states-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .vulpe-taxes-list {
    margin: 30px auto 0;
  }
  
  .vulpe-tax-item {
    padding: 14px 20px;
  }
  
  .vulpe-packages-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .vulpe-package-card.recommended {
    transform: none;
  }
  
  .vulpe-faq-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 600px) {
  .vulpe-llc-hero .vulpe-hero-content h1 {
    font-size: 2em;
  }
  
  .vulpe-llc-hero .vulpe-hero-content p {
    font-size: 1em;
  }
  
  .vulpe-hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .vulpe-llc-hero .vulpe-hero-btn {
    width: 100% !important;
    max-width: 280px;
  }
  
  .vulpe-process-step,
  .vulpe-state-card,
  .vulpe-package-card,
  .vulpe-faq-item {
    padding: 24px;
  }
  
  .vulpe-platinum-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .vulpe-platinum-info h2 {
    font-size: 2em;
  }
  
  .vulpe-platinum-plan-card {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 20px;
    display: inline-block;
  }
  
  .vulpe-platinum-disclaimer {
    padding: 8px 12px;
    flex-direction: column;
    text-align: center;
  }
}

/* PLANO PLATINUM */
.vulpe-platinum-section {
  background: #f8f9ff;
  padding: 80px 12px;
}

.vulpe-platinum-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.vulpe-platinum-info h2 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-size: 2.2em;
  font-weight: 700;
  color: #23272f;
  margin-bottom: 20px;
  line-height: 1.2;
}

.vulpe-platinum-info p {
  font-size: 1em;
  color: #333;
  line-height: 1.6;
  margin-bottom: 16px;
}

.vulpe-platinum-info p strong {
  color: #23272f;
  font-weight: 700;
}

.vulpe-platinum-features {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}

.vulpe-platinum-features li {
  padding: 8px 0;
  color: #333;
  font-size: 1em;
  position: relative;
  padding-left: 28px;
  border-bottom: none;
}

.vulpe-platinum-features li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 18px;
  height: 18px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%237B3FE4"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z" stroke="%237B3FE4" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/></svg>') center/contain no-repeat;
}

.vulpe-platinum-btn {
  display: inline-block;
  background: #dc3545;
  color: #fff;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95em;
  transition: all 0.3s ease;
  margin-top: 20px;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.vulpe-platinum-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(220, 53, 69, 0.3);
  color: #fff;
  text-decoration: none;
}

.vulpe-platinum-disclaimer {
  background: rgba(255, 193, 7, 0.03);
  border: 1px solid rgba(255, 193, 7, 0.1);
  border-radius: 4px;
  padding: 4px 8px;
  margin-top: 12px;
  display: flex;
  align-items: flex-start;
  gap: 4px;
}

.vulpe-platinum-disclaimer .vulpe-warning-icon {
  font-size: 0.6em;
  flex-shrink: 0;
  margin-top: 1px;
}

.vulpe-platinum-disclaimer p {
  margin: 0;
  font-size: 0.6em;
  color: #999;
  line-height: 1.1;
}

.vulpe-platinum-disclaimer p strong {
  color: #999;
  font-weight: 600;
}

.vulpe-platinum-visual {
  position: relative;
}

.vulpe-platinum-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(123, 63, 228, 0.15);
}

.vulpe-platinum-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.vulpe-platinum-plan-card {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: #fff;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  text-align: center;
  min-width: 160px;
}

/* MODAL DO FORMULÁRIO */
.vulpe-modal {
  display: none;
  position: fixed;
  z-index: 999999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
}

.vulpe-modal-content {
  background: white;
  border-radius: 20px;
  padding: 40px;
  max-width: 500px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.vulpe-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 28px;
  font-weight: bold;
  color: #7B3FE4;
  cursor: pointer;
  background: white;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(123, 63, 228, 0.2);
}

.vulpe-modal-close:hover {
  background: #7B3FE4;
  color: white;
  transform: scale(1.1);
}

.vulpe-modal-header {
  text-align: center;
  margin-bottom: 30px;
}

.vulpe-modal-logo {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(123, 63, 228, 0.2);
}

.vulpe-modal-header h2 {
  color: #7B3FE4;
  font-size: 2em;
  font-weight: 800;
  margin: 0 0 10px 0;
  text-transform: uppercase;
}

.vulpe-modal-header p {
  color: #666;
  font-size: 1.1em;
  margin: 0;
}

.vulpe-modal-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.vulpe-form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.vulpe-form-group label {
  font-weight: 700;
  color: #333;
  font-size: 1em;
}

.vulpe-form-group select,
.vulpe-form-group input {
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  font-size: 1em;
  transition: all 0.3s ease;
  background: white;
}

.vulpe-form-group select:focus,
.vulpe-form-group input:focus {
  outline: none;
  border-color: #7B3FE4;
  box-shadow: 0 0 0 3px rgba(123, 63, 228, 0.1);
}

.vulpe-form-help {
  color: #666;
  font-size: 0.9em;
  margin-top: 4px;
}

.vulpe-form-disclaimer {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 16px;
  margin: 20px 0;
}

.vulpe-form-disclaimer p {
  margin: 0 0 8px 0;
  font-size: 0.9em;
  color: #666;
  line-height: 1.4;
}

.vulpe-form-disclaimer p:last-child {
  margin-bottom: 0;
}

.vulpe-form-disclaimer a {
  color: #7B3FE4;
  text-decoration: underline;
}

.vulpe-form-row {
  display: flex;
  gap: 12px;
}

.vulpe-form-row input {
  flex: 1;
}

.vulpe-form-input-with-icon {
  position: relative;
  display: flex;
  align-items: center;
}

.vulpe-form-icon {
  position: absolute;
  left: 16px;
  font-size: 1.2em;
  color: #7B3FE4;
  z-index: 1;
}

.vulpe-form-input-with-icon input {
  padding-left: 50px;
}

.vulpe-modal-buttons {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.vulpe-modal-btn {
  flex: 1;
  padding: 14px 24px;
  border: none;
  border-radius: 12px;
  font-size: 1em;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.vulpe-modal-btn-primary {
  background: linear-gradient(135deg, #7B3FE4 0%, #5B2BC7 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(123, 63, 228, 0.3);
}

.vulpe-modal-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(123, 63, 228, 0.4);
}

.vulpe-modal-btn-secondary {
  background: #f8f9fa;
  color: #7B3FE4;
  border: 2px solid #7B3FE4;
}

.vulpe-modal-btn-secondary:hover {
  background: #7B3FE4;
  color: white;
  transform: translateY(-2px);
}

/* RESPONSIVIDADE DO MODAL */
@media (max-width: 600px) {
  .vulpe-modal {
    padding: 10px;
  }
  
  .vulpe-modal-content {
    padding: 30px 20px;
    border-radius: 16px;
  }
  
  .vulpe-modal-header h2 {
    font-size: 1.6em;
  }
  
  .vulpe-modal-logo {
    width: 60px;
    height: 60px;
  }
  
  .vulpe-form-row {
    flex-direction: column;
    gap: 8px;
  }
  
  .vulpe-modal-buttons {
    flex-direction: column;
  }
  
  .vulpe-modal-close {
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .vulpe-modal-content {
    padding: 25px 15px;
  }
  
  .vulpe-modal-header h2 {
    font-size: 1.4em;
  }
  
  .vulpe-form-group select,
  .vulpe-form-group input {
    padding: 10px 12px;
    font-size: 0.95em;
  }
  
  .vulpe-modal-btn {
    padding: 12px 20px;
    font-size: 0.95em;
  }
}

.vulpe-modal-content {
  background: white;
  border-radius: 20px;
  padding: 40px;
  max-width: 500px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.vulpe-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 28px;
  font-weight: bold;
  color: #7B3FE4;
  cursor: pointer;
  background: white;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(123, 63, 228, 0.2);
}

.vulpe-modal-close:hover {
  background: #7B3FE4;
  color: white;
  transform: scale(1.1);
}

.vulpe-modal-header {
  text-align: center;
  margin-bottom: 30px;
}

.vulpe-modal-logo {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(123, 63, 228, 0.2);
}

.vulpe-modal-header h2 {
  color: #7B3FE4;
  font-size: 2em;
  font-weight: 800;
  margin: 0 0 10px 0;
  text-transform: uppercase;
}

.vulpe-modal-header p {
  color: #666;
  font-size: 1.1em;
  margin: 0;
}

.vulpe-modal-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.vulpe-form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.vulpe-form-group label {
  font-weight: 700;
  color: #333;
  font-size: 1em;
}

.vulpe-form-group select,
.vulpe-form-group input {
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  font-size: 1em;
  transition: all 0.3s ease;
  background: white;
}

.vulpe-form-group select:focus,
.vulpe-form-group input:focus {
  outline: none;
  border-color: #7B3FE4;
  box-shadow: 0 0 0 3px rgba(123, 63, 228, 0.1);
}

.vulpe-form-help {
  color: #666;
  font-size: 0.9em;
  margin-top: 4px;
}

.vulpe-form-disclaimer {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 16px;
  margin: 20px 0;
}

.vulpe-form-disclaimer p {
  margin: 0 0 8px 0;
  font-size: 0.9em;
  color: #666;
  line-height: 1.4;
}

.vulpe-form-disclaimer p:last-child {
  margin-bottom: 0;
}

.vulpe-form-disclaimer a {
  color: #7B3FE4;
  text-decoration: underline;
}

.vulpe-form-row {
  display: flex;
  gap: 12px;
}

.vulpe-form-row input {
  flex: 1;
}

.vulpe-form-input-with-icon {
  position: relative;
  display: flex;
  align-items: center;
}

.vulpe-form-icon {
  position: absolute;
  left: 16px;
  font-size: 1.2em;
  color: #7B3FE4;
  z-index: 1;
}

.vulpe-form-input-with-icon input {
  padding-left: 50px;
}

.vulpe-modal-buttons {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.vulpe-modal-btn {
  flex: 1;
  padding: 14px 24px;
  border: none;
  border-radius: 12px;
  font-size: 1em;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.vulpe-modal-btn-primary {
  background: linear-gradient(135deg, #7B3FE4 0%, #5B2BC7 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(123, 63, 228, 0.3);
}

.vulpe-modal-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(123, 63, 228, 0.4);
}

.vulpe-modal-btn-secondary {
  background: #f8f9fa;
  color: #7B3FE4;
  border: 2px solid #7B3FE4;
}

.vulpe-modal-btn-secondary:hover {
  background: #7B3FE4;
  color: white;
  transform: translateY(-2px);
}

/* RESPONSIVIDADE DO MODAL */
@media (max-width: 600px) {
  .vulpe-modal {
    padding: 10px;
  }
  
  .vulpe-modal-content {
    padding: 30px 20px;
    border-radius: 16px;
  }
  
  .vulpe-modal-header h2 {
    font-size: 1.6em;
  }
  
  .vulpe-modal-logo {
    width: 60px;
    height: 60px;
  }
  
  .vulpe-form-row {
    flex-direction: column;
    gap: 8px;
  }
  
  .vulpe-modal-buttons {
    flex-direction: column;
  }
  
  .vulpe-modal-close {
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .vulpe-modal-content {
    padding: 25px 15px;
  }
  
  .vulpe-modal-header h2 {
    font-size: 1.4em;
  }
  
  .vulpe-form-group select,
  .vulpe-form-group input {
    padding: 10px 12px;
    font-size: 0.95em;
  }
  
  .vulpe-modal-btn {
    padding: 12px 20px;
    font-size: 0.95em;
  }
}

/* SUBMENU OFFSHORE/HOLDING */
.vulpe-submenu-item {
  position: relative;
}

.vulpe-submenu-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.vulpe-submenu-arrow {
  font-size: 0.8em;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
}

.vulpe-submenu-item:hover .vulpe-submenu-arrow {
  transform: rotate(90deg) scale(1.1);
  color: #FFD700;
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
}

.vulpe-submenu {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  position: absolute;
  left: 100%;
  top: 0;
  background: #7B3FE4;
  border-radius: 12px;
  padding: 8px 0;
  min-width: 400px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-10px) scale(0.95);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: left center;
}

/* Adicionar separador visual entre as colunas */
.vulpe-submenu::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: rgba(255, 255, 255, 0.2);
  z-index: 1;
}

.vulpe-submenu-item:hover .vulpe-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0) scale(1);
}

.vulpe-submenu li {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}

.vulpe-submenu a {
  display: block;
  padding: 10px 16px;
  color: white;
  text-decoration: none;
  font-size: 0.9em;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 0;
  position: relative;
  overflow: hidden;
}

.vulpe-submenu a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s ease;
}

.vulpe-submenu a:hover::before {
  left: 100%;
}

.vulpe-submenu a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  transform: translateX(4px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Mobile styles for submenu */
@media (max-width: 900px) {
  .vulpe-submenu {
    display: block;
    grid-template-columns: 1fr;
    position: static;
    left: auto;
    top: auto;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    margin: 8px 0 0 16px;
    box-shadow: none;
    border-left: 2px solid rgba(255, 255, 255, 0.2);
    opacity: 1;
    visibility: visible;
    transform: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: auto;
  }
  
  .vulpe-submenu::before {
    display: none;
  }
  
  .vulpe-submenu-item:hover .vulpe-submenu {
    max-height: 500px;
  }
  
  .vulpe-submenu a {
    padding: 8px 12px;
    font-size: 0.85em;
    transform: translateX(-10px);
    opacity: 0.7;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .vulpe-submenu-item:hover .vulpe-submenu a {
    transform: translateX(0);
    opacity: 1;
  }
  
  .vulpe-submenu a:hover {
    transform: translateX(4px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }
}

/* Footer submenu styles */
.vulpe-footer-submenu {
  margin-top: 8px;
  padding-left: 16px;
  border-left: 2px solid rgba(255, 255, 255, 0.2);
}

.vulpe-footer-submenu-title {
  display: block;
  color: #7B3FE4;
  font-weight: 700;
  font-size: 0.9em;
  margin-bottom: 8px;
  text-transform: uppercase;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.vulpe-footer-submenu-title::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #7B3FE4, #FFD700);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.vulpe-footer-submenu:hover .vulpe-footer-submenu-title::after {
  width: 100%;
}

.vulpe-footer-submenu a {
  display: block;
  color: #666;
  text-decoration: none;
  font-size: 0.85em;
  padding: 4px 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.vulpe-footer-submenu a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #7B3FE4, #5B2BC7);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.vulpe-footer-submenu a:hover::before {
  width: 100%;
}

.vulpe-footer-submenu a:hover {
  color: #7B3FE4;
  transform: translateX(4px);
  text-shadow: 0 0 8px rgba(123, 63, 228, 0.3);
}

/* RESPONSIVIDADE MOBILE MELHORADA */

/* Ajustes gerais para mobile */
@media (max-width: 768px) {
  /* Garantir que as fontes sejam mantidas no mobile */
  body, h1, h2, h3, h4, h5, h6, p, span, a, button, input, textarea, select {
    font-family: 'Open Sans', 'Montserrat', Arial, sans-serif !important;
  }
  
  /* Garantir que elementos específicos mantenham as fontes corretas no mobile */
  .vulpe-navbar-logo span,
  .vulpe-hero-content h1,
  .vulpe-section h2,
  .vulpe-cta-content h3,
  .vulpe-service-card h3,
  .vulpe-benefit-category h3,
  .vulpe-why-card h3,
  .vulpe-testimonial-card h3,
  .vulpe-pricing-card h3,
  .vulpe-state-card h3,
  .vulpe-package-card h3,
  .vulpe-faq-item h3 {
    font-family: 'Montserrat', 'Open Sans', Arial, sans-serif !important;
  }
  
  /* Forçar cor branca apenas nos elementos do hero no mobile */
  .vulpe-hero-content h1,
  .vulpe-hero-content p,
  .vulpe-navbar-logo span {
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
  }
  
  /* Garantir que elementos específicos mantenham as fontes corretas no mobile */
  .vulpe-navbar-logo span,
  .vulpe-hero-content h1,
  .vulpe-section h2,
  .vulpe-cta-content h3,
  .vulpe-service-card h3,
  .vulpe-benefit-category h3,
  .vulpe-why-card h3,
  .vulpe-testimonial-card h3,
  .vulpe-pricing-card h3,
  .vulpe-state-card h3,
  .vulpe-package-card h3,
  .vulpe-faq-item h3 {
    font-family: 'Montserrat', 'Open Sans', Arial, sans-serif !important;
  }
  
  /* Forçar carregamento das fontes no mobile */
  @font-face {
    font-family: 'Open Sans';
    font-display: swap;
    src: url('https://fonts.gstatic.com/s/opensans/v34/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0B4gaVI.woff2') format('woff2');
  }
  
  @font-face {
    font-family: 'Montserrat';
    font-display: swap;
    src: url('https://fonts.gstatic.com/s/montserrat/v25/JTUSjIg1_i6t8kCHKm459Wlhyw.ttf') format('truetype');
  }
  
  /* Container e espaçamentos */
  .container {
    padding: 0 20px;
  }
  
  .vulpe-section {
    padding: 40px 0;
  }
  
  /* Tipografia mobile */
  h1 {
    font-size: 2.2em !important;
    line-height: 1.2 !important;
  }
  
  h2 {
    font-size: 1.8em !important;
    line-height: 1.3 !important;
  }
  
  h3 {
    font-size: 1.4em !important;
    line-height: 1.4 !important;
  }
  
  p {
    font-size: 1em !important;
    line-height: 1.6 !important;
  }
  
  /* Hero sections mobile */
  .vulpe-hero {
    min-height: 50vh !important;
    padding: 60px 0 40px 0 !important;
  }
  
  .vulpe-hero-content h1 {
    font-size: 2.5em !important;
    margin-bottom: 15px !important;
  }
  
  .vulpe-hero-content p {
    font-size: 1.1em !important;
    margin-bottom: 25px !important;
  }
  
  .vulpe-hero-buttons {
    flex-direction: column !important;
    gap: 15px !important;
  }
  
  .vulpe-hero-btn {
    width: 100% !important;
    padding: 16px 24px !important;
    font-size: 1em !important;
  }
  
  /* Grids mobile */
  .vulpe-services-cards,
  .vulpe-benefits-grid,
  .vulpe-why-cards,
  .vulpe-testimonials-cards,
  .vulpe-pricing-cards,
  .vulpe-states-grid,
  .vulpe-packages-grid,
  .vulpe-faq-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  
  /* Cards mobile */
  .vulpe-service-card,
  .vulpe-benefit-category,
  .vulpe-why-card,
  .vulpe-testimonial-card,
  .vulpe-pricing-card,
  .vulpe-state-card,
  .vulpe-package-card,
  .vulpe-faq-item {
    padding: 25px !important;
    margin-bottom: 20px !important;
  }
  
  /* Process steps mobile */
  .vulpe-process-steps {
    flex-direction: column !important;
    gap: 30px !important;
  }
  
  .vulpe-process-step {
    width: 100% !important;
    text-align: center !important;
  }
  
  /* Strategy sections mobile */
  .vulpe-strategy-content,
  .vulpe-gold-content,
  .vulpe-platinum-content {
    flex-direction: column !important;
    gap: 30px !important;
  }
  
  .vulpe-strategy-visual,
  .vulpe-gold-visual,
  .vulpe-platinum-visual {
    order: 1 !important;
  }
  
  .vulpe-strategy-info,
  .vulpe-gold-info,
  .vulpe-platinum-info {
    order: 2 !important;
  }
  
  /* Plan cards mobile */
  .vulpe-strategy-plan-card,
  .vulpe-gold-plan-card,
  .vulpe-platinum-plan-card {
    position: relative !important;
    bottom: auto !important;
    margin-top: 20px !important;
  }
  
  /* Modal mobile */
  .vulpe-modal-content {
    margin: 20px !important;
    padding: 30px 20px !important;
    max-height: 85vh !important;
  }
  
  .vulpe-modal-header h2 {
    font-size: 1.6em !important;
  }
  
  .vulpe-form-group {
    margin-bottom: 20px !important;
  }
  
  .vulpe-form-group select,
  .vulpe-form-group input,
  .vulpe-form-group textarea {
    padding: 12px 16px !important;
    font-size: 16px !important; /* Evita zoom no iOS */
  }
  
  .vulpe-modal-buttons {
    flex-direction: column !important;
    gap: 15px !important;
  }
  
  .vulpe-modal-btn {
    width: 100% !important;
    padding: 16px 24px !important;
  }
}

/* Ajustes específicos para telas muito pequenas */
@media (max-width: 480px) {
  /* Garantir que as fontes sejam mantidas no mobile */
  body, h1, h2, h3, h4, h5, h6, p, span, a, button, input, textarea, select {
    font-family: 'Open Sans', 'Montserrat', Arial, sans-serif !important;
  }
  
  /* Forçar cor branca apenas nos elementos do hero no mobile */
  .vulpe-hero-content h1,
  .vulpe-hero-content p,
  .vulpe-navbar-logo span {
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
  }
  
  .container {
    padding: 0 15px;
  }
  
  .vulpe-section {
    padding: 30px 0;
  }
  
  /* Tipografia extra mobile */
  h1 {
    font-size: 1.8em !important;
  }
  
  h2 {
    font-size: 1.5em !important;
  }
  
  h3 {
    font-size: 1.2em !important;
  }
  
  /* Hero extra mobile */
  .vulpe-hero {
    min-height: 40vh !important;
    padding: 50px 0 30px 0 !important;
  }
  
  .vulpe-hero-content h1 {
    font-size: 2em !important;
  }
  
  .vulpe-hero-content p {
    font-size: 1em !important;
  }
  
  /* Cards extra mobile */
  .vulpe-service-card,
  .vulpe-benefit-category,
  .vulpe-why-card,
  .vulpe-testimonial-card,
  .vulpe-pricing-card,
  .vulpe-state-card,
  .vulpe-package-card,
  .vulpe-faq-item {
    padding: 20px !important;
  }
  
  /* Modal extra mobile */
  .vulpe-modal-content {
    margin: 10px !important;
    padding: 25px 15px !important;
  }
  
  .vulpe-modal-header h2 {
    font-size: 1.4em !important;
  }
  
  /* Botões extra mobile */
  .vulpe-hero-btn,
  .vulpe-modal-btn {
    padding: 14px 20px !important;
    font-size: 0.95em !important;
  }
  
  /* Garantir que o texto seja branco na seção vulpe-cta-features-highlight no mobile */
  .vulpe-cta-features-highlight h3,
  .vulpe-cta-features-highlight p {
    color: white !important;
  }
}

/* Ajustes para tablets */
@media (min-width: 769px) and (max-width: 1024px) {
  .container {
    padding: 0 30px;
  }
  
  .vulpe-section {
    padding: 60px 0;
  }
  
  /* Grids tablet */
  .vulpe-services-cards,
  .vulpe-benefits-grid,
  .vulpe-why-cards,
  .vulpe-testimonials-cards {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 25px !important;
  }
  
  .vulpe-pricing-cards,
  .vulpe-states-grid,
  .vulpe-packages-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 25px !important;
  }
  
  /* Hero tablet */
  .vulpe-hero-content h1 {
    font-size: 3em !important;
  }
  
  .vulpe-hero-content p {
    font-size: 1.2em !important;
  }
}

/* Ajustes específicos para elementos inline */
@media (max-width: 768px) {
  /* Ajustes para elementos com display inline */
  .vulpe-hero-buttons,
  .vulpe-modal-buttons,
  .vulpe-cta-banner-buttons,
  .vulpe-cta-stats-actions,
  .vulpe-cta-features-actions,
  .vulpe-cta-social-actions {
    display: flex !important;
    flex-direction: column !important;
    gap: 15px !important;
  }
  
  /* Ajustes para elementos com position absolute */
  .vulpe-strategy-plan-card,
  .vulpe-gold-plan-card,
  .vulpe-platinum-plan-card {
    position: relative !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
    margin-top: 20px !important;
  }
  
  /* Ajustes para elementos com grid */
  .vulpe-experiencia-stats {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
  }
  
  /* Ajustes para elementos com flexbox */
  .vulpe-footer-container {
    flex-direction: column !important;
    gap: 30px !important;
  }
  
  .vulpe-footer-column {
    width: 100% !important;
  }
}

/* Ajustes para orientação landscape em mobile */
@media (max-width: 768px) and (orientation: landscape) {
  .vulpe-hero {
    min-height: 60vh !important;
  }
  
  .vulpe-modal-content {
    max-height: 75vh !important;
  }
}

/* Ajustes para telas de alta densidade */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .vulpe-navbar-logo img,
  .vulpe-modal-logo {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}

/* Ajustes para acessibilidade em mobile */
@media (max-width: 768px) {
  /* Aumentar área de toque para elementos interativos */
  .vulpe-nav-link,
  .vulpe-hero-btn,
  .vulpe-modal-btn,
  .vulpe-pricing-btn,
  .vulpe-package-btn,
  .vulpe-strategy-btn,
  .vulpe-gold-btn,
  .vulpe-platinum-btn {
    min-height: 44px !important;
    min-width: 44px !important;
  }
  
  /* Melhorar contraste para leitura */
  .vulpe-hero-content p,
  .vulpe-section p {
    color: #333 !important;
  }
  
  /* Ajustar espaçamento para melhor legibilidade */
  .vulpe-service-card p,
  .vulpe-benefit-category p,
  .vulpe-why-card p,
  .vulpe-testimonial-card p {
    line-height: 1.7 !important;
    margin-bottom: 15px !important;
  }
}

/* Ajustes específicos para formulários mobile */
@media (max-width: 768px) {
  .vulpe-form-group select,
  .vulpe-form-group input,
  .vulpe-form-group textarea {
    font-size: 16px !important; /* Evita zoom automático no iOS */
    -webkit-appearance: none !important;
    border-radius: 8px !important;
  }
  
  .vulpe-form-group select {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e") !important;
    background-repeat: no-repeat !important;
    background-position: right 12px center !important;
    background-size: 16px !important;
    padding-right: 40px !important;
  }
  
  .vulpe-form-group label {
    font-weight: 600 !important;
    margin-bottom: 8px !important;
    display: block !important;
  }
}

/* Ajustes para animações em mobile */
@media (max-width: 768px) {
  /* Reduzir animações em dispositivos com preferência por movimento reduzido */
  @media (prefers-reduced-motion: reduce) {
    * {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
    }
  }
  
  /* Otimizar animações para mobile */
  .vulpe-hero,
  .vulpe-section {
    will-change: transform;
  }
}

/* Ajustes para navegação mobile */
@media (max-width: 768px) {
  .vulpe-navbar {
    padding: 0 20px !important;
  }
  
  .vulpe-navbar-logo span {
    font-size: 1em !important;
  }
  
  .vulpe-navbar-hamburger {
    display: flex !important;
  }
  
  .vulpe-navbar-menu {
    position: fixed !important;
    top: 64px !important;
    left: 0 !important;
    right: 0 !important;
    background: linear-gradient(135deg, #181828 0%, #7B3FE4 80%, #3f51b5 100%) !important;
    transform: translateY(-100%) !important;
    transition: transform 0.3s ease !important;
    z-index: 99998 !important;
  }
  
  .vulpe-navbar-menu.open {
    transform: translateY(0) !important;
  }
  
  .vulpe-navbar-nav {
    flex-direction: column !important;
    padding: 20px !important;
  }
  
  .vulpe-nav-item {
    width: 100% !important;
    margin: 10px 0 !important;
  }
  
  .vulpe-nav-link {
    padding: 15px 0 !important;
    font-size: 1.1em !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  }
}

/* Ajustes para footer mobile */
@media (max-width: 768px) {
  .vulpe-footer {
    padding: 40px 0 20px 0 !important;
  }
  
  .vulpe-footer-container {
    flex-direction: column !important;
    gap: 30px !important;
  }
  
  .vulpe-footer-column {
    width: 100% !important;
    text-align: center !important;
  }
  
  .vulpe-footer-nav {
    flex-direction: column !important;
    gap: 20px !important;
  }
  
  .vulpe-footer-category {
    margin-bottom: 20px !important;
  }
  
  .vulpe-footer-bottom {
    padding: 20px 0 !important;
  }
  
  .vulpe-footer-bottom-container {
    flex-direction: column !important;
    gap: 15px !important;
    text-align: center !important;
  }
}

/* RESPONSIVIDADE ESPECÍFICA PARA PÁGINAS DE PAÍSES E SERVIÇOS */

/* Ajustes para elementos inline em mobile */
@media (max-width: 768px) {
  /* Ajustes para elementos com display inline-block */
  .vulpe-hero-buttons,
  .vulpe-modal-buttons,
  .vulpe-cta-banner-buttons,
  .vulpe-cta-stats-actions,
  .vulpe-cta-features-actions,
  .vulpe-cta-social-actions {
    display: flex !important;
    flex-direction: column !important;
    gap: 15px !important;
  }
  
  /* Ajustes para elementos com position absolute */
  .vulpe-strategy-plan-card,
  .vulpe-gold-plan-card,
  .vulpe-platinum-plan-card {
    position: relative !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
    margin-top: 20px !important;
  }
  
  /* Ajustes para elementos com grid */
  .vulpe-experiencia-stats {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
  }
  
  /* Ajustes para elementos com flexbox */
  .vulpe-footer-container {
    flex-direction: column !important;
    gap: 30px !important;
  }
  
  .vulpe-footer-column {
    width: 100% !important;
  }
  
  /* Ajustes específicos para cards de países */
  .vulpe-section > div > div[style*="display: grid"] {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  
  /* Ajustes para elementos com position absolute em cards */
  div[style*="position: absolute"] {
    position: relative !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
    margin-top: 15px !important;
  }
  
  /* Ajustes para elementos com display flex */
  div[style*="display: flex"] {
    flex-direction: column !important;
    gap: 15px !important;
  }
  
  /* Ajustes para elementos com gap */
  div[style*="gap:"] {
    gap: 15px !important;
  }
  
  /* Ajustes para elementos com padding */
  div[style*="padding: 80px"] {
    padding: 40px 0 !important;
  }
  
  /* Ajustes para elementos com margin */
  div[style*="margin-bottom: 60px"] {
    margin-bottom: 30px !important;
  }
  
  /* Ajustes para elementos com font-size */
  h1[style*="font-size: 3.5em"] {
    font-size: 2.5em !important;
  }
  
  h2[style*="font-size: 2.5em"] {
    font-size: 1.8em !important;
  }
  
  h3[style*="font-size: 1.8em"] {
    font-size: 1.4em !important;
  }
  
  p[style*="font-size: 1.2em"] {
    font-size: 1em !important;
  }
  
  /* Ajustes para elementos com min-height */
  section[style*="min-height: 60vh"] {
    min-height: 50vh !important;
  }
  
  /* Ajustes para elementos com max-width */
  div[style*="max-width: 900px"] {
    max-width: 100% !important;
  }
  
  div[style*="max-width: 800px"] {
    max-width: 100% !important;
  }
  
  /* Ajustes para elementos com grid-template-columns */
  div[style*="grid-template-columns: repeat(auto-fit"] {
    grid-template-columns: 1fr !important;
  }
  
  /* Ajustes para elementos com minmax */
  div[style*="minmax(300px"] {
    min-width: auto !important;
  }
  
  div[style*="minmax(250px"] {
    min-width: auto !important;
  }
  
  /* Ajustes para elementos com border-radius */
  div[style*="border-radius: 20px"] {
    border-radius: 12px !important;
  }
  
  div[style*="border-radius: 16px"] {
    border-radius: 10px !important;
  }
  
  /* Ajustes para elementos com box-shadow */
  div[style*="box-shadow: 0 8px 32px"] {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1) !important;
  }
  
  /* Ajustes para elementos com padding inline */
  div[style*="padding: 30px"] {
    padding: 20px !important;
  }
  
  div[style*="padding: 40px"] {
    padding: 25px !important;
  }
  
  /* Ajustes para elementos com margin inline */
  div[style*="margin: 0 0 30px"] {
    margin: 0 0 20px !important;
  }
  
  div[style*="margin: 0 0 20px"] {
    margin: 0 0 15px !important;
  }
  
  /* Ajustes para elementos com font-size inline */
  span[style*="font-size: 3em"] {
    font-size: 2.5em !important;
  }
  
  span[style*="font-size: 2.5em"] {
    font-size: 2em !important;
  }
  
  /* Ajustes para elementos com line-height */
  p[style*="line-height: 1.8"] {
    line-height: 1.6 !important;
  }
  
  p[style*="line-height: 1.7"] {
    line-height: 1.5 !important;
  }
  
  /* Ajustes para elementos com text-align */
  div[style*="text-align: center"] {
    text-align: center !important;
  }
  
  /* Ajustes para elementos com background */
  section[style*="background: linear-gradient"] {
    background: linear-gradient(135deg, #7B3FE4 0%, #5B2BC7 100%) !important;
  }
  
  /* Ajustes para elementos com color */
  h1[style*="color: white"] {
    color: white !important;
  }
  
  h2[style*="color: #7B3FE4"] {
    color: #7B3FE4 !important;
  }
  
  p[style*="color: #666"] {
    color: #333 !important;
  }
  
  /* Ajustes para elementos com font-weight */
  h1[style*="font-weight: 800"] {
    font-weight: 700 !important;
  }
  
  h2[style*="font-weight: 800"] {
    font-weight: 700 !important;
  }
  
  /* Ajustes para elementos com letter-spacing */
  h1[style*="letter-spacing: -0.02em"] {
    letter-spacing: -0.01em !important;
  }
  
  /* Ajustes para elementos com text-transform */
  h1[style*="text-transform: uppercase"] {
    text-transform: uppercase !important;
  }
  
  /* Ajustes para elementos com overflow */
  section[style*="overflow: hidden"] {
    overflow: hidden !important;
  }
  
  /* Ajustes para elementos com position relative */
  section[style*="position: relative"] {
    position: relative !important;
  }
  
  /* Ajustes para elementos com z-index */
  div[style*="z-index: 2"] {
    z-index: 2 !important;
  }
  
  /* Ajustes para elementos com opacity */
  div[style*="opacity: 0.1"] {
    opacity: 0.1 !important;
  }
  
  /* Ajustes para elementos com background-size */
  div[style*="background-size: cover"] {
    background-size: cover !important;
  }
  
  /* Ajustes para elementos com background-position */
  div[style*="background-position: center"] {
    background-position: center !important;
  }
  
  /* Ajustes para elementos com border-left */
  div[style*="border-left: 4px solid"] {
    border-left: 3px solid !important;
  }
  
  /* Ajustes para elementos com border-radius inline */
  div[style*="border-radius: 12px"] {
    border-radius: 8px !important;
  }
  
  /* Ajustes para elementos com transition */
  a[style*="transition: all 0.3s ease"] {
    transition: all 0.3s ease !important;
  }
  
  /* Ajustes para elementos com display inline-block */
  span[style*="display: inline-block"] {
    display: block !important;
    width: 100% !important;
  }
  
  /* Ajustes para elementos com flex-wrap */
  div[style*="flex-wrap: wrap"] {
    flex-wrap: wrap !important;
  }
  
  /* Ajustes para elementos com justify-content */
  div[style*="justify-content: center"] {
    justify-content: center !important;
  }
  
  /* Ajustes para elementos com align-items */
  div[style*="align-items: center"] {
    align-items: center !important;
  }
  
  /* Ajustes para elementos com gap inline */
  div[style*="gap: 20px"] {
    gap: 15px !important;
  }
  
  div[style*="gap: 30px"] {
    gap: 20px !important;
  }
  
  /* Ajustes para elementos com margin auto */
  div[style*="margin: 0 auto"] {
    margin: 0 auto !important;
  }
  
  /* Ajustes para elementos com width */
  div[style*="width: 100%"] {
    width: 100% !important;
  }
  
  /* Ajustes para elementos com height */
  div[style*="height: 100%"] {
    height: auto !important;
  }
  
  /* Ajustes para elementos com object-fit */
  img[style*="object-fit: cover"] {
    object-fit: cover !important;
  }
  
  /* Ajustes para elementos com display block */
  img[style*="display: block"] {
    display: block !important;
  }
  
  /* Ajustes para elementos com margin 0 */
  img[style*="margin: 0"] {
    margin: 0 !important;
  }
}

/* Ajustes específicos para telas muito pequenas */
@media (max-width: 480px) {
  /* Ajustes para elementos inline em telas muito pequenas */
  div[style*="padding: 20px"] {
    padding: 15px !important;
  }
  
  div[style*="padding: 25px"] {
    padding: 20px !important;
  }
  
  h1[style*="font-size: 2.5em"] {
    font-size: 2em !important;
  }
  
  h2[style*="font-size: 1.8em"] {
    font-size: 1.5em !important;
  }
  
  h3[style*="font-size: 1.4em"] {
    font-size: 1.2em !important;
  }
  
  p[style*="font-size: 1em"] {
    font-size: 0.95em !important;
  }
  
  span[style*="font-size: 2.5em"] {
    font-size: 2em !important;
  }
  
  span[style*="font-size: 2em"] {
    font-size: 1.8em !important;
  }
  
  /* Ajustes para elementos com gap em telas muito pequenas */
  div[style*="gap: 15px"] {
    gap: 10px !important;
  }
  
  div[style*="gap: 20px"] {
    gap: 15px !important;
  }
  
  /* Ajustes para elementos com margin em telas muito pequenas */
  div[style*="margin: 0 0 15px"] {
    margin: 0 0 10px !important;
  }
  
  div[style*="margin: 0 0 20px"] {
    margin: 0 0 15px !important;
  }
  
  /* Ajustes para elementos com padding em telas muito pequenas */
  div[style*="padding: 15px"] {
    padding: 12px !important;
  }
  
  /* Ajustes para elementos com border-radius em telas muito pequenas */
  div[style*="border-radius: 8px"] {
    border-radius: 6px !important;
  }
  
  div[style*="border-radius: 10px"] {
    border-radius: 8px !important;
  }
  
  /* Ajustes para elementos com box-shadow em telas muito pequenas */
  div[style*="box-shadow: 0 4px 16px"] {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
  }
}

/* Ajustes para tablets */
@media (min-width: 769px) and (max-width: 1024px) {
  /* Ajustes para elementos inline em tablets */
  div[style*="grid-template-columns: repeat(auto-fit"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  
  div[style*="minmax(300px"] {
    min-width: auto !important;
  }
  
  div[style*="minmax(250px"] {
    min-width: auto !important;
  }
  
  h1[style*="font-size: 3.5em"] {
    font-size: 3em !important;
  }
  
  h2[style*="font-size: 2.5em"] {
    font-size: 2.2em !important;
  }
  
  h3[style*="font-size: 1.8em"] {
    font-size: 1.6em !important;
  }
  
  p[style*="font-size: 1.2em"] {
    font-size: 1.1em !important;
  }
  
  /* Ajustes para elementos com gap em tablets */
  div[style*="gap: 20px"] {
    gap: 25px !important;
  }
  
  div[style*="gap: 30px"] {
    gap: 25px !important;
  }
  
  /* Ajustes para elementos com padding em tablets */
  div[style*="padding: 30px"] {
    padding: 25px !important;
  }
  
  div[style*="padding: 40px"] {
    padding: 30px !important;
  }
}

/* RESPONSIVIDADE ESPECÍFICA PARA CLASSES DE PÁGINAS DE PAÍSES */

/* Ajustes para hero sections específicas de países */
@media (max-width: 768px) {
  /* Hero sections de países */
  .vulpe-uk-hero,
  .vulpe-bahamas-hero,
  .vulpe-dubai-hero,
  .vulpe-caiman-hero,
  .vulpe-cook-hero,
  .vulpe-anguila-hero,
  .vulpe-barbados-hero,
  .vulpe-malta-hero,
  .vulpe-seychelles-hero,
  .vulpe-svg-hero,
  .vulpe-panama-hero,
  .vulpe-nevis-hero,
  .vulpe-virgins-hero,
  .vulpe-belize-hero {
    min-height: 50vh !important;
    padding: 60px 0 40px 0 !important;
  }
  
  /* Hero content de países */
  .vulpe-uk-hero .vulpe-hero-content h1,
  .vulpe-bahamas-hero .vulpe-hero-content h1,
  .vulpe-dubai-hero .vulpe-hero-content h1,
  .vulpe-caiman-hero .vulpe-hero-content h1,
  .vulpe-cook-hero .vulpe-hero-content h1,
  .vulpe-anguila-hero .vulpe-hero-content h1,
  .vulpe-barbados-hero .vulpe-hero-content h1,
  .vulpe-malta-hero .vulpe-hero-content h1,
  .vulpe-seychelles-hero .vulpe-hero-content h1,
  .vulpe-svg-hero .vulpe-hero-content h1,
  .vulpe-panama-hero .vulpe-hero-content h1,
  .vulpe-nevis-hero .vulpe-hero-content h1,
  .vulpe-virgins-hero .vulpe-hero-content h1,
  .vulpe-belize-hero .vulpe-hero-content h1 {
    font-size: 2.5em !important;
    margin-bottom: 15px !important;
  }
  
  .vulpe-uk-hero .vulpe-hero-content p,
  .vulpe-bahamas-hero .vulpe-hero-content p,
  .vulpe-dubai-hero .vulpe-hero-content p,
  .vulpe-caiman-hero .vulpe-hero-content p,
  .vulpe-cook-hero .vulpe-hero-content p,
  .vulpe-anguila-hero .vulpe-hero-content p,
  .vulpe-barbados-hero .vulpe-hero-content p,
  .vulpe-malta-hero .vulpe-hero-content p,
  .vulpe-seychelles-hero .vulpe-hero-content p,
  .vulpe-svg-hero .vulpe-hero-content p,
  .vulpe-panama-hero .vulpe-hero-content p,
  .vulpe-nevis-hero .vulpe-hero-content p,
  .vulpe-virgins-hero .vulpe-hero-content p,
  .vulpe-belize-hero .vulpe-hero-content p {
    font-size: 1.1em !important;
    margin-bottom: 25px !important;
  }
  
  /* Hero buttons de países */
  .vulpe-uk-hero .vulpe-hero-buttons,
  .vulpe-bahamas-hero .vulpe-hero-buttons,
  .vulpe-dubai-hero .vulpe-hero-buttons,
  .vulpe-caiman-hero .vulpe-hero-buttons,
  .vulpe-cook-hero .vulpe-hero-buttons,
  .vulpe-anguila-hero .vulpe-hero-buttons,
  .vulpe-barbados-hero .vulpe-hero-buttons,
  .vulpe-malta-hero .vulpe-hero-buttons,
  .vulpe-seychelles-hero .vulpe-hero-buttons,
  .vulpe-svg-hero .vulpe-hero-buttons,
  .vulpe-panama-hero .vulpe-hero-buttons,
  .vulpe-nevis-hero .vulpe-hero-buttons,
  .vulpe-virgins-hero .vulpe-hero-buttons,
  .vulpe-belize-hero .vulpe-hero-buttons {
    flex-direction: column !important;
    gap: 15px !important;
  }
  
  /* Hero buttons individuais de países */
  .vulpe-uk-hero .vulpe-hero-btn,
  .vulpe-bahamas-hero .vulpe-hero-btn,
  .vulpe-dubai-hero .vulpe-hero-btn,
  .vulpe-caiman-hero .vulpe-hero-btn,
  .vulpe-cook-hero .vulpe-hero-btn,
  .vulpe-anguila-hero .vulpe-hero-btn,
  .vulpe-barbados-hero .vulpe-hero-btn,
  .vulpe-malta-hero .vulpe-hero-btn,
  .vulpe-seychelles-hero .vulpe-hero-btn,
  .vulpe-svg-hero .vulpe-hero-btn,
  .vulpe-panama-hero .vulpe-hero-btn,
  .vulpe-nevis-hero .vulpe-hero-btn,
  .vulpe-virgins-hero .vulpe-hero-btn,
  .vulpe-belize-hero .vulpe-hero-btn {
    width: 100% !important;
    padding: 16px 24px !important;
    font-size: 1em !important;
  }
}

/* Ajustes para telas muito pequenas - hero sections de países */
@media (max-width: 480px) {
  .vulpe-uk-hero,
  .vulpe-bahamas-hero,
  .vulpe-dubai-hero,
  .vulpe-caiman-hero,
  .vulpe-cook-hero,
  .vulpe-anguila-hero,
  .vulpe-barbados-hero,
  .vulpe-malta-hero,
  .vulpe-seychelles-hero,
  .vulpe-svg-hero,
  .vulpe-panama-hero,
  .vulpe-nevis-hero,
  .vulpe-virgins-hero,
  .vulpe-belize-hero {
    min-height: 40vh !important;
    padding: 50px 0 30px 0 !important;
  }
  
  .vulpe-uk-hero .vulpe-hero-content h1,
  .vulpe-bahamas-hero .vulpe-hero-content h1,
  .vulpe-dubai-hero .vulpe-hero-content h1,
  .vulpe-caiman-hero .vulpe-hero-content h1,
  .vulpe-cook-hero .vulpe-hero-content h1,
  .vulpe-anguila-hero .vulpe-hero-content h1,
  .vulpe-barbados-hero .vulpe-hero-content h1,
  .vulpe-malta-hero .vulpe-hero-content h1,
  .vulpe-seychelles-hero .vulpe-hero-content h1,
  .vulpe-svg-hero .vulpe-hero-content h1,
  .vulpe-panama-hero .vulpe-hero-content h1,
  .vulpe-nevis-hero .vulpe-hero-content h1,
  .vulpe-virgins-hero .vulpe-hero-content h1,
  .vulpe-belize-hero .vulpe-hero-content h1 {
    font-size: 2em !important;
  }
  
  .vulpe-uk-hero .vulpe-hero-content p,
  .vulpe-bahamas-hero .vulpe-hero-content p,
  .vulpe-dubai-hero .vulpe-hero-content p,
  .vulpe-caiman-hero .vulpe-hero-content p,
  .vulpe-cook-hero .vulpe-hero-content p,
  .vulpe-anguila-hero .vulpe-hero-content p,
  .vulpe-barbados-hero .vulpe-hero-content p,
  .vulpe-malta-hero .vulpe-hero-content p,
  .vulpe-seychelles-hero .vulpe-hero-content p,
  .vulpe-svg-hero .vulpe-hero-content p,
  .vulpe-panama-hero .vulpe-hero-content p,
  .vulpe-nevis-hero .vulpe-hero-content p,
  .vulpe-virgins-hero .vulpe-hero-content p,
  .vulpe-belize-hero .vulpe-hero-content p {
    font-size: 1em !important;
  }
  
  .vulpe-uk-hero .vulpe-hero-btn,
  .vulpe-bahamas-hero .vulpe-hero-btn,
  .vulpe-dubai-hero .vulpe-hero-btn,
  .vulpe-caiman-hero .vulpe-hero-btn,
  .vulpe-cook-hero .vulpe-hero-btn,
  .vulpe-anguila-hero .vulpe-hero-btn,
  .vulpe-barbados-hero .vulpe-hero-btn,
  .vulpe-malta-hero .vulpe-hero-btn,
  .vulpe-seychelles-hero .vulpe-hero-btn,
  .vulpe-svg-hero .vulpe-hero-btn,
  .vulpe-panama-hero .vulpe-hero-btn,
  .vulpe-nevis-hero .vulpe-hero-btn,
  .vulpe-virgins-hero .vulpe-hero-btn,
  .vulpe-belize-hero .vulpe-hero-btn {
    padding: 14px 20px !important;
    font-size: 0.95em !important;
  }
}

/* Ajustes para tablets - hero sections de países */
@media (min-width: 769px) and (max-width: 1024px) {
  .vulpe-uk-hero .vulpe-hero-content h1,
  .vulpe-bahamas-hero .vulpe-hero-content h1,
  .vulpe-dubai-hero .vulpe-hero-content h1,
  .vulpe-caiman-hero .vulpe-hero-content h1,
  .vulpe-cook-hero .vulpe-hero-content h1,
  .vulpe-anguila-hero .vulpe-hero-content h1,
  .vulpe-barbados-hero .vulpe-hero-content h1,
  .vulpe-malta-hero .vulpe-hero-content h1,
  .vulpe-seychelles-hero .vulpe-hero-content h1,
  .vulpe-svg-hero .vulpe-hero-content h1,
  .vulpe-panama-hero .vulpe-hero-content h1,
  .vulpe-nevis-hero .vulpe-hero-content h1,
  .vulpe-virgins-hero .vulpe-hero-content h1,
  .vulpe-belize-hero .vulpe-hero-content h1 {
    font-size: 3em !important;
  }
  
  .vulpe-uk-hero .vulpe-hero-content p,
  .vulpe-bahamas-hero .vulpe-hero-content p,
  .vulpe-dubai-hero .vulpe-hero-content p,
  .vulpe-caiman-hero .vulpe-hero-content p,
  .vulpe-cook-hero .vulpe-hero-content p,
  .vulpe-anguila-hero .vulpe-hero-content p,
  .vulpe-barbados-hero .vulpe-hero-content p,
  .vulpe-malta-hero .vulpe-hero-content p,
  .vulpe-seychelles-hero .vulpe-hero-content p,
  .vulpe-svg-hero .vulpe-hero-content p,
  .vulpe-panama-hero .vulpe-hero-content p,
  .vulpe-nevis-hero .vulpe-hero-content p,
  .vulpe-virgins-hero .vulpe-hero-content p,
  .vulpe-belize-hero .vulpe-hero-content p {
    font-size: 1.2em !important;
  }
}

/* Ajustes para orientação landscape em mobile - hero sections de países */
@media (max-width: 768px) and (orientation: landscape) {
  .vulpe-uk-hero,
  .vulpe-bahamas-hero,
  .vulpe-dubai-hero,
  .vulpe-caiman-hero,
  .vulpe-cook-hero,
  .vulpe-anguila-hero,
  .vulpe-barbados-hero,
  .vulpe-malta-hero,
  .vulpe-seychelles-hero,
  .vulpe-svg-hero,
  .vulpe-panama-hero,
  .vulpe-nevis-hero,
  .vulpe-virgins-hero,
  .vulpe-belize-hero {
    min-height: 60vh !important;
  }
}

/* Ajustes para elementos específicos das páginas de países */
@media (max-width: 768px) {
  /* Ajustes para seções de introdução */
  .vulpe-section > div > div[style*="max-width: 900px"] > h2 {
    font-size: 1.8em !important;
    line-height: 1.3 !important;
  }
  
  .vulpe-section > div > div[style*="max-width: 900px"] > p {
    font-size: 1em !important;
    line-height: 1.6 !important;
  }
  
  /* Ajustes para cards de vantagens */
  .vulpe-section > div > div[style*="display: grid"] > div {
    padding: 25px !important;
    margin-bottom: 20px !important;
  }
  
  .vulpe-section > div > div[style*="display: grid"] > div > div[style*="font-size: 3em"] {
    font-size: 2.5em !important;
  }
  
  .vulpe-section > div > div[style*="display: grid"] > div > h3 {
    font-size: 1.3em !important;
    margin: 0 0 15px 0 !important;
  }
  
  .vulpe-section > div > div[style*="display: grid"] > div > p {
    margin: 0 !important;
    opacity: 0.9 !important;
    line-height: 1.6 !important;
  }
  
  /* Ajustes para seções de serviços */
  .vulpe-section > div > div[style*="max-width: 800px"] > h3 {
    font-size: 1.5em !important;
    font-weight: 700 !important;
    margin: 0 0 20px 0 !important;
  }
  
  .vulpe-section > div > div[style*="max-width: 800px"] > h4 {
    font-size: 1.2em !important;
    font-weight: 600 !important;
    margin: 30px 0 15px 0 !important;
  }
  
  .vulpe-section > div > div[style*="max-width: 800px"] > ul > li {
    padding: 8px 0 !important;
    color: #666 !important;
    font-size: 1.1em !important;
    position: relative !important;
    padding-left: 25px !important;
  }
  
  /* Ajustes para seções de público-alvo */
  .vulpe-section > div > div[style*="max-width: 900px"] > div > h3 {
    font-size: 1.8em !important;
    font-weight: 700 !important;
    margin: 0 0 30px 0 !important;
  }
  
  .vulpe-section > div > div[style*="max-width: 900px"] > div > p {
    color: #666 !important;
    font-size: 1.1em !important;
    line-height: 1.7 !important;
    margin: 0 !important;
  }
  
  /* Ajustes para seções de exemplo de uso */
  .vulpe-section > div > div[style*="max-width: 900px"] > h3 {
    font-size: 1.8em !important;
    font-weight: 700 !important;
    margin: 0 0 30px 0 !important;
  }
  
  .vulpe-section > div > div[style*="max-width: 900px"] > p {
    color: #666 !important;
    font-size: 1.1em !important;
    line-height: 1.7 !important;
    margin: 0 0 20px 0 !important;
  }
  
  /* Ajustes para seções CTA final */
  .vulpe-section > div > div[style*="max-width: 800px"] > h2 {
    font-size: 2.2em !important;
    font-weight: 800 !important;
    margin: 0 0 20px 0 !important;
  }
  
  .vulpe-section > div > div[style*="max-width: 800px"] > p {
    font-size: 1.2em !important;
    line-height: 1.6 !important;
    margin: 0 0 30px 0 !important;
  }
  
  .vulpe-section > div > div[style*="max-width: 800px"] > .vulpe-hero-btn {
    width: 100% !important;
    padding: 16px 24px !important;
    font-size: 1em !important;
  }
}

/* Ajustes para telas muito pequenas - elementos específicos das páginas de países */
@media (max-width: 480px) {
  /* Ajustes para seções de introdução */
  .vulpe-section > div > div[style*="max-width: 900px"] > h2 {
    font-size: 1.5em !important;
  }
  
  .vulpe-section > div > div[style*="max-width: 900px"] > p {
    font-size: 0.95em !important;
  }
  
  /* Ajustes para cards de vantagens */
  .vulpe-section > div > div[style*="display: grid"] > div {
    padding: 20px !important;
  }
  
  .vulpe-section > div > div[style*="display: grid"] > div > div[style*="font-size: 2.5em"] {
    font-size: 2em !important;
  }
  
  .vulpe-section > div > div[style*="display: grid"] > div > h3 {
    font-size: 1.2em !important;
  }
  
  /* Ajustes para seções de serviços */
  .vulpe-section > div > div[style*="max-width: 800px"] > h3 {
    font-size: 1.4em !important;
  }
  
  .vulpe-section > div > div[style*="max-width: 800px"] > h4 {
    font-size: 1.1em !important;
  }
  
  .vulpe-section > div > div[style*="max-width: 800px"] > ul > li {
    font-size: 1em !important;
  }
  
  /* Ajustes para seções de público-alvo */
  .vulpe-section > div > div[style*="max-width: 900px"] > div > h3 {
    font-size: 1.5em !important;
  }
  
  .vulpe-section > div > div[style*="max-width: 900px"] > div > p {
    font-size: 1em !important;
  }
  
  /* Ajustes para seções de exemplo de uso */
  .vulpe-section > div > div[style*="max-width: 900px"] > h3 {
    font-size: 1.5em !important;
  }
  
  .vulpe-section > div > div[style*="max-width: 900px"] > p {
    font-size: 1em !important;
  }
  
  /* Ajustes para seções CTA final */
  .vulpe-section > div > div[style*="max-width: 800px"] > h2 {
    font-size: 1.8em !important;
  }
  
  .vulpe-section > div > div[style*="max-width: 800px"] > p {
    font-size: 1.1em !important;
  }
  
  .vulpe-section > div > div[style*="max-width: 800px"] > .vulpe-hero-btn {
    padding: 14px 20px !important;
    font-size: 0.95em !important;
  }
}

/* Ajustes para tablets - elementos específicos das páginas de países */
@media (min-width: 769px) and (max-width: 1024px) {
  /* Ajustes para seções de introdução */
  .vulpe-section > div > div[style*="max-width: 900px"] > h2 {
    font-size: 2.2em !important;
  }
  
  .vulpe-section > div > div[style*="max-width: 900px"] > p {
    font-size: 1.1em !important;
  }
  
  /* Ajustes para cards de vantagens */
  .vulpe-section > div > div[style*="display: grid"] > div {
    padding: 30px !important;
  }
  
  .vulpe-section > div > div[style*="display: grid"] > div > div[style*="font-size: 3em"] {
    font-size: 2.8em !important;
  }
  
  .vulpe-section > div > div[style*="display: grid"] > div > h3 {
    font-size: 1.4em !important;
  }
  
  /* Ajustes para seções de o que está incluso */
  .vulpe-section[data-aos="fade-up"] > div > div[style*="max-width: 800px"] > h3 {
    font-size: 1.6em !important;
  }
  
  .vulpe-section[data-aos="fade-up"] > div > div[style*="max-width: 800px"] > h4 {
    font-size: 1.3em !important;
  }
  
  .vulpe-section[data-aos="fade-up"] > div > div[style*="max-width: 800px"] > ul > li {
    font-size: 1.1em !important;
  }
  
  /* Ajustes para seções de benefícios diretos */
  .vulpe-section[data-aos="fade-up"] > div > div[style*="max-width: 900px"] > h3 {
    font-size: 2em !important;
  }
  
  .vulpe-section[data-aos="fade-up"] > div > div[style*="max-width: 900px"] > ul > li {
    font-size: 1.1em !important;
  }
  
  /* Ajustes para seções de exemplo prático */
  .vulpe-section[data-aos="fade-up"] > div > div[style*="max-width: 900px"] > h3 {
    font-size: 2em !important;
  }
  
  .vulpe-section[data-aos="fade-up"] > div > div[style*="max-width: 900px"] > p {
    font-size: 1.1em !important;
  }
  
  /* Ajustes para seções CTA final de serviços */
  .vulpe-section[data-aos="zoom-in"] > div > div[style*="max-width: 800px"] > h2 {
    font-size: 2.5em !important;
  }
  
  .vulpe-section[data-aos="zoom-in"] > div > div[style*="max-width: 800px"] > p {
    font-size: 1.3em !important;
  }
}

/* RESPONSIVIDADE ESPECÍFICA PARA PÁGINAS DE SERVIÇOS */

/* Ajustes para hero sections específicas de serviços */
@media (max-width: 768px) {
  /* Hero sections de serviços */
  .vulpe-hero[data-aos="fade-up"] {
    min-height: 50vh !important;
    padding: 60px 0 40px 0 !important;
  }
  
  /* Hero content de serviços */
  .vulpe-hero[data-aos="fade-up"] .vulpe-hero-content h1 {
    font-size: 2.5em !important;
    margin-bottom: 15px !important;
  }
  
  .vulpe-hero[data-aos="fade-up"] .vulpe-hero-content p {
    font-size: 1.1em !important;
    margin-bottom: 25px !important;
  }
  
  /* Hero buttons de serviços */
  .vulpe-hero[data-aos="fade-up"] .vulpe-hero-buttons {
    flex-direction: column !important;
    gap: 15px !important;
  }
  
  /* Hero buttons individuais de serviços */
  .vulpe-hero[data-aos="fade-up"] .vulpe-hero-btn {
    width: 100% !important;
    padding: 16px 24px !important;
    font-size: 1em !important;
  }
  
  /* Ajustes para seções específicas de serviços */
  .vulpe-section[data-aos="fade-up"] {
    padding: 40px 0 !important;
  }
  
  /* Ajustes para seções de parceiros */
  .vulpe-section[data-aos="fade-up"] > div > div[style*="display: grid"] {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  
  /* Ajustes para cards de parceiros */
  .vulpe-section[data-aos="fade-up"] > div > div[style*="display: grid"] > div {
    padding: 25px !important;
    margin-bottom: 20px !important;
  }
  
  /* Ajustes para seções de documentação */
  .vulpe-section[data-aos="fade-up"] > div > div[style*="max-width: 800px"] > h3 {
    font-size: 1.5em !important;
    font-weight: 700 !important;
    margin: 0 0 20px 0 !important;
  }
  
  .vulpe-section[data-aos="fade-up"] > div > div[style*="max-width: 800px"] > ul > li {
    padding: 8px 0 !important;
    color: #666 !important;
    font-size: 1.1em !important;
    position: relative !important;
    padding-left: 25px !important;
  }
  
  /* Ajustes para seções de quem pode usar */
  .vulpe-section[data-aos="fade-up"] > div > div[style*="max-width: 900px"] > h3 {
    font-size: 1.8em !important;
    font-weight: 700 !important;
    margin: 0 0 30px 0 !important;
  }
  
  .vulpe-section[data-aos="fade-up"] > div > div[style*="max-width: 900px"] > ul > li {
    padding: 8px 0 !important;
    color: #666 !important;
    font-size: 1.1em !important;
    position: relative !important;
    padding-left: 25px !important;
  }
  
  /* Ajustes para seções de exemplo de uso */
  .vulpe-section[data-aos="fade-up"] > div > div[style*="max-width: 900px"] > h3 {
    font-size: 1.8em !important;
    font-weight: 700 !important;
    margin: 0 0 30px 0 !important;
  }
  
  .vulpe-section[data-aos="fade-up"] > div > div[style*="max-width: 900px"] > p {
    color: #666 !important;
    font-size: 1.1em !important;
    line-height: 1.7 !important;
    margin: 0 0 20px 0 !important;
  }
  
  /* Ajustes para seções CTA final */
  .vulpe-section[data-aos="zoom-in"] > div > div[style*="max-width: 800px"] > h2 {
    font-size: 2.2em !important;
    font-weight: 800 !important;
    margin: 0 0 20px 0 !important;
  }
  
  .vulpe-section[data-aos="zoom-in"] > div > div[style*="max-width: 800px"] > p {
    font-size: 1.2em !important;
    line-height: 1.6 !important;
    margin: 0 0 30px 0 !important;
  }
  
  .vulpe-section[data-aos="zoom-in"] > div > div[style*="max-width: 800px"] > .vulpe-hero-btn {
    width: 100% !important;
    padding: 16px 24px !important;
    font-size: 1em !important;
  }
}

/* Ajustes para telas muito pequenas - hero sections de serviços */
@media (max-width: 480px) {
  .vulpe-hero[data-aos="fade-up"] {
    min-height: 40vh !important;
    padding: 50px 0 30px 0 !important;
  }
  
  .vulpe-hero[data-aos="fade-up"] .vulpe-hero-content h1 {
    font-size: 2em !important;
  }
  
  .vulpe-hero[data-aos="fade-up"] .vulpe-hero-content p {
    font-size: 1em !important;
  }
  
  .vulpe-hero[data-aos="fade-up"] .vulpe-hero-btn {
    padding: 14px 20px !important;
    font-size: 0.95em !important;
  }
  
  /* Ajustes para seções específicas de serviços em telas muito pequenas */
  .vulpe-section[data-aos="fade-up"] {
    padding: 30px 0 !important;
  }
  
  /* Ajustes para seções de parceiros em telas muito pequenas */
  .vulpe-section[data-aos="fade-up"] > div > div[style*="display: grid"] > div {
    padding: 20px !important;
  }
  
  /* Ajustes para seções de documentação em telas muito pequenas */
  .vulpe-section[data-aos="fade-up"] > div > div[style*="max-width: 800px"] > h3 {
    font-size: 1.4em !important;
  }
  
  .vulpe-section[data-aos="fade-up"] > div > div[style*="max-width: 800px"] > ul > li {
    font-size: 1em !important;
  }
  
  /* Ajustes para seções de quem pode usar em telas muito pequenas */
  .vulpe-section[data-aos="fade-up"] > div > div[style*="max-width: 900px"] > h3 {
    font-size: 1.5em !important;
  }
  
  .vulpe-section[data-aos="fade-up"] > div > div[style*="max-width: 900px"] > ul > li {
    font-size: 1em !important;
  }
  
  /* Ajustes para seções de exemplo de uso em telas muito pequenas */
  .vulpe-section[data-aos="fade-up"] > div > div[style*="max-width: 900px"] > h3 {
    font-size: 1.5em !important;
  }
  
  .vulpe-section[data-aos="fade-up"] > div > div[style*="max-width: 900px"] > p {
    font-size: 1em !important;
  }
  
  /* Ajustes para seções CTA final em telas muito pequenas */
  .vulpe-section[data-aos="zoom-in"] > div > div[style*="max-width: 800px"] > h2 {
    font-size: 1.8em !important;
  }
  
  .vulpe-section[data-aos="zoom-in"] > div > div[style*="max-width: 800px"] > p {
    font-size: 1.1em !important;
  }
  
  .vulpe-section[data-aos="zoom-in"] > div > div[style*="max-width: 800px"] > .vulpe-hero-btn {
    padding: 14px 20px !important;
    font-size: 0.95em !important;
  }
}

/* Ajustes para tablets - hero sections de serviços */
@media (min-width: 769px) and (max-width: 1024px) {
  .vulpe-hero[data-aos="fade-up"] .vulpe-hero-content h1 {
    font-size: 3em !important;
  }
  
  .vulpe-hero[data-aos="fade-up"] .vulpe-hero-content p {
    font-size: 1.2em !important;
  }
  
  /* Ajustes para seções específicas de serviços em tablets */
  .vulpe-section[data-aos="fade-up"] {
    padding: 60px 0 !important;
  }
  
  /* Ajustes para seções de parceiros em tablets */
  .vulpe-section[data-aos="fade-up"] > div > div[style*="display: grid"] {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 25px !important;
  }
  
  .vulpe-section[data-aos="fade-up"] > div > div[style*="display: grid"] > div {
    padding: 30px !important;
  }
  
  /* Ajustes para seções de documentação em tablets */
  .vulpe-section[data-aos="fade-up"] > div > div[style*="max-width: 800px"] > h3 {
    font-size: 1.6em !important;
  }
  
  .vulpe-section[data-aos="fade-up"] > div > div[style*="max-width: 800px"] > ul > li {
    font-size: 1.1em !important;
  }
  
  /* Ajustes para seções de quem pode usar em tablets */
  .vulpe-section[data-aos="fade-up"] > div > div[style*="max-width: 900px"] > h3 {
    font-size: 2em !important;
  }
  
  .vulpe-section[data-aos="fade-up"] > div > div[style*="max-width: 900px"] > ul > li {
    font-size: 1.1em !important;
  }
  
  /* Ajustes para seções de exemplo de uso em tablets */
  .vulpe-section[data-aos="fade-up"] > div > div[style*="max-width: 900px"] > h3 {
    font-size: 2em !important;
  }
  
  .vulpe-section[data-aos="fade-up"] > div > div[style*="max-width: 900px"] > p {
    font-size: 1.1em !important;
  }
  
  /* Ajustes para seções CTA final em tablets */
  .vulpe-section[data-aos="zoom-in"] > div > div[style*="max-width: 800px"] > h2 {
    font-size: 2.5em !important;
  }
  
  .vulpe-section[data-aos="zoom-in"] > div > div[style*="max-width: 800px"] > p {
    font-size: 1.3em !important;
  }
}

/* Ajustes para orientação landscape em mobile - hero sections de serviços */
@media (max-width: 768px) and (orientation: landscape) {
  .vulpe-hero[data-aos="fade-up"] {
    min-height: 60vh !important;
  }
}

/* Ajustes específicos para elementos das páginas de serviços */
@media (max-width: 768px) {
  /* Ajustes para seções de introdução de serviços */
  .vulpe-section[data-aos="fade-up"] > div > div[style*="max-width: 900px"] > h2 {
    font-size: 1.8em !important;
    line-height: 1.3 !important;
  }
  
  .vulpe-section[data-aos="fade-up"] > div > div[style*="max-width: 900px"] > p {
    font-size: 1em !important;
    line-height: 1.6 !important;
  }
  
  /* Ajustes para cards de vantagens de serviços */
  .vulpe-section[data-aos="fade-up"] > div > div[style*="display: grid"] > div {
    padding: 25px !important;
    margin-bottom: 20px !important;
  }
  
  .vulpe-section[data-aos="fade-up"] > div > div[style*="display: grid"] > div > div[style*="font-size: 3em"] {
    font-size: 2.5em !important;
  }
  
  .vulpe-section[data-aos="fade-up"] > div > div[style*="display: grid"] > div > h3 {
    font-size: 1.3em !important;
    margin: 0 0 15px 0 !important;
  }
  
  .vulpe-section[data-aos="fade-up"] > div > div[style*="display: grid"] > div > p {
    margin: 0 !important;
    opacity: 0.9 !important;
    line-height: 1.6 !important;
  }
  
  /* Ajustes para seções de o que está incluso */
  .vulpe-section[data-aos="fade-up"] > div > div[style*="max-width: 800px"] > h3 {
    font-size: 1.5em !important;
    font-weight: 700 !important;
    margin: 0 0 20px 0 !important;
  }
  
  .vulpe-section[data-aos="fade-up"] > div > div[style*="max-width: 800px"] > h4 {
    font-size: 1.2em !important;
    font-weight: 600 !important;
    margin: 30px 0 15px 0 !important;
  }
  
  .vulpe-section[data-aos="fade-up"] > div > div[style*="max-width: 800px"] > ul > li {
    padding: 8px 0 !important;
    color: #666 !important;
    font-size: 1.1em !important;
    position: relative !important;
    padding-left: 25px !important;
  }
  
  /* Ajustes para seções de benefícios diretos */
  .vulpe-section[data-aos="fade-up"] > div > div[style*="max-width: 900px"] > h3 {
    font-size: 1.8em !important;
    font-weight: 700 !important;
    margin: 0 0 30px 0 !important;
  }
  
  .vulpe-section[data-aos="fade-up"] > div > div[style*="max-width: 900px"] > ul > li {
    padding: 8px 0 !important;
    color: #666 !important;
    font-size: 1.1em !important;
    position: relative !important;
    padding-left: 25px !important;
  }
  
  /* Ajustes para seções de exemplo prático */
  .vulpe-section[data-aos="fade-up"] > div > div[style*="max-width: 900px"] > h3 {
    font-size: 1.8em !important;
    font-weight: 700 !important;
    margin: 0 0 30px 0 !important;
  }
  
  .vulpe-section[data-aos="fade-up"] > div > div[style*="max-width: 900px"] > p {
    color: #666 !important;
    font-size: 1.1em !important;
    line-height: 1.7 !important;
    margin: 0 0 20px 0 !important;
  }
  
  /* Ajustes para seções CTA final de serviços */
  .vulpe-section[data-aos="zoom-in"] > div > div[style*="max-width: 800px"] > h2 {
    font-size: 2.2em !important;
    font-weight: 800 !important;
    margin: 0 0 20px 0 !important;
  }
  
  .vulpe-section[data-aos="zoom-in"] > div > div[style*="max-width: 800px"] > p {
    font-size: 1.2em !important;
    line-height: 1.6 !important;
    margin: 0 0 30px 0 !important;
  }
  
  .vulpe-section[data-aos="zoom-in"] > div > div[style*="max-width: 800px"] > .vulpe-hero-btn {
    width: 100% !important;
    padding: 16px 24px !important;
    font-size: 1em !important;
  }
}

/* Ajustes para telas muito pequenas - elementos específicos das páginas de serviços */
@media (max-width: 480px) {
  /* Ajustes para seções de introdução de serviços */
  .vulpe-section[data-aos="fade-up"] > div > div[style*="max-width: 900px"] > h2 {
    font-size: 1.5em !important;
  }
  
  .vulpe-section[data-aos="fade-up"] > div > div[style*="max-width: 900px"] > p {
    font-size: 0.95em !important;
  }
  
  /* Ajustes para cards de vantagens de serviços */
  .vulpe-section[data-aos="fade-up"] > div > div[style*="display: grid"] > div {
    padding: 20px !important;
  }
  
  .vulpe-section[data-aos="fade-up"] > div > div[style*="display: grid"] > div > div[style*="font-size: 2.5em"] {
    font-size: 2em !important;
  }
  
  .vulpe-section[data-aos="fade-up"] > div > div[style*="display: grid"] > div > h3 {
    font-size: 1.2em !important;
  }
  
  /* Ajustes para seções de o que está incluso */
  .vulpe-section[data-aos="fade-up"] > div > div[style*="max-width: 800px"] > h3 {
    font-size: 1.4em !important;
  }
  
  .vulpe-section[data-aos="fade-up"] > div > div[style*="max-width: 800px"] > h4 {
    font-size: 1.1em !important;
  }
  
  .vulpe-section[data-aos="fade-up"] > div > div[style*="max-width: 800px"] > ul > li {
    font-size: 1em !important;
  }
  
  /* Ajustes para seções de benefícios diretos */
  .vulpe-section[data-aos="fade-up"] > div > div[style*="max-width: 900px"] > h3 {
    font-size: 1.5em !important;
  }
  
  .vulpe-section[data-aos="fade-up"] > div > div[style*="max-width: 900px"] > ul > li {
    font-size: 1em !important;
  }
  
  /* Ajustes para seções de exemplo prático */
  .vulpe-section[data-aos="fade-up"] > div > div[style*="max-width: 900px"] > h3 {
    font-size: 1.5em !important;
  }
  
  .vulpe-section[data-aos="fade-up"] > div > div[style*="max-width: 900px"] > p {
    font-size: 1em !important;
  }
  
  /* Ajustes para seções CTA final de serviços */
  .vulpe-section[data-aos="zoom-in"] > div > div[style*="max-width: 800px"] > h2 {
    font-size: 1.8em !important;
  }
  
  .vulpe-section[data-aos="zoom-in"] > div > div[style*="max-width: 800px"] > p {
    font-size: 1.1em !important;
  }
  
  .vulpe-section[data-aos="zoom-in"] > div > div[style*="max-width: 800px"] > .vulpe-hero-btn {
    padding: 14px 20px !important;
    font-size: 0.95em !important;
  }
}

/* Ajustes para tablets - elementos específicos das páginas de serviços */
@media (min-width: 769px) and (max-width: 1024px) {
  /* Ajustes para seções de introdução de serviços */
  .vulpe-section[data-aos="fade-up"] > div > div[style*="max-width: 900px"] > h2 {
    font-size: 2.2em !important;
  }
  
  .vulpe-section[data-aos="fade-up"] > div > div[style*="max-width: 900px"] > p {
    font-size: 1.1em !important;
  }
  
  /* Ajustes para cards de vantagens de serviços */
  .vulpe-section[data-aos="fade-up"] > div > div[style*="display: grid"] > div {
    padding: 30px !important;
  }
  
  .vulpe-section[data-aos="fade-up"] > div > div[style*="display: grid"] > div > div[style*="font-size: 3em"] {
    font-size: 2.8em !important;
  }
  
  .vulpe-section[data-aos="fade-up"] > div > div[style*="display: grid"] > div > h3 {
    font-size: 1.4em !important;
  }
  
  /* Ajustes para seções de o que está incluso */
  .vulpe-section[data-aos="fade-up"] > div > div[style*="max-width: 800px"] > h3 {
    font-size: 1.6em !important;
  }
  
  .vulpe-section[data-aos="fade-up"] > div > div[style*="max-width: 800px"] > h4 {
    font-size: 1.3em !important;
  }
  
  .vulpe-section[data-aos="fade-up"] > div > div[style*="max-width: 800px"] > ul > li {
    font-size: 1.1em !important;
  }
  
  /* Ajustes para seções de benefícios diretos */
  .vulpe-section[data-aos="fade-up"] > div > div[style*="max-width: 900px"] > h3 {
    font-size: 2em !important;
  }
  
  .vulpe-section[data-aos="fade-up"] > div > div[style*="max-width: 900px"] > ul > li {
    font-size: 1.1em !important;
  }
  
  /* Ajustes para seções de exemplo prático */
  .vulpe-section[data-aos="fade-up"] > div > div[style*="max-width: 900px"] > h3 {
    font-size: 2em !important;
  }
  
  .vulpe-section[data-aos="fade-up"] > div > div[style*="max-width: 900px"] > p {
    font-size: 1.1em !important;
  }
  
  /* Ajustes para seções CTA final de serviços */
  .vulpe-section[data-aos="zoom-in"] > div > div[style*="max-width: 800px"] > h2 {
    font-size: 2.5em !important;
  }
  
  .vulpe-section[data-aos="zoom-in"] > div > div[style*="max-width: 800px"] > p {
    font-size: 1.3em !important;
  }
}

/* Botão Flutuante WhatsApp */
.vulpe-whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 99999;
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: white;
  padding: 16px 20px;
  border-radius: 50px;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.3);
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.vulpe-whatsapp-float:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.4);
  background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
  color: white;
  text-decoration: none;
}

.vulpe-whatsapp-float:active {
  transform: translateY(-1px) scale(1.02);
}

.vulpe-whatsapp-icon {
  width: 24px;
  height: 24px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.vulpe-whatsapp-icon svg {
  width: 16px;
  height: 16px;
  fill: #25D366;
}

.vulpe-whatsapp-text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 120px;
}

/* Animação de pulso */
.vulpe-whatsapp-float::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: rgba(37, 211, 102, 0.3);
  border-radius: 50px;
  transform: translate(-50%, -50%) scale(1);
  animation: vulpe-whatsapp-pulse 2s infinite;
  z-index: -1;
}

@keyframes vulpe-whatsapp-pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0;
  }
}

/* Responsividade */
@media (max-width: 768px) {
  .vulpe-whatsapp-float {
    bottom: 20px;
    right: 20px;
    padding: 14px 16px;
    font-size: 14px;
  }
  
  .vulpe-whatsapp-text {
    max-width: 100px;
  }
  
  .vulpe-whatsapp-icon {
    width: 20px;
    height: 20px;
  }
  
  .vulpe-whatsapp-icon svg {
    width: 14px;
    height: 14px;
  }
}

@media (max-width: 480px) {
  .vulpe-whatsapp-float {
    bottom: 15px;
    right: 15px;
    padding: 12px 14px;
    font-size: 13px;
    gap: 8px;
  }
  
  .vulpe-whatsapp-text {
    max-width: 80px;
  }
}

/* Esconder em telas muito pequenas */
@media (max-width: 360px) {
  .vulpe-whatsapp-float {
    padding: 10px 12px;
    font-size: 12px;
  }
  
  .vulpe-whatsapp-text {
    display: none;
  }
  
  .vulpe-whatsapp-float {
    border-radius: 50%;
    width: 50px;
    height: 50px;
    justify-content: center;
    padding: 0;
  }
}

/* Esconder quando o usuário está no footer para não sobrepor */
@media (max-height: 600px) {
  .vulpe-whatsapp-float {
    bottom: 10px;
  }
}