/* ===== VARIÁVEIS CSS ===== */
:root {
    --primary-color: #667eea;
    --primary-dark: #5568d3;
    --secondary-color: #764ba2;
    --accent-color: #f093fb;
    --text-dark: #1a202c;
    --text-light: #718096;
    --text-white: #ffffff;
    --bg-light: #f7fafc;
    --bg-dark: #1a202c;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --success-color: #48bb78;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.2);
    
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --transition: all 0.3s ease;
}

/* ===== RESET E BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/*----modal----*/

#popoverTelefone {
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 15px 40px rgba(0,0,0,.35);
  width: 320px;
  max-width: 90%;
  text-align: center;
  background-color: white;
  color: black;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1001;
  
  border: none;
}

#popoverTelefone::backdrop {
  background: rgba(0,0,0,0.65);
}

/* Conteúdo */
.acoes {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  justify-content: center;
  padding: 5px 10px;

  & button {
    flex: 1;
    padding: 12px 0;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    background-color: blueviolet;
    color: white;
  }
}

.form-group label span {
  font-size: 0.75rem;
  color: #9ca3af;
  font-weight: bold;
  font-size: 12px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
}

.nav__logo-link {
    display: flex;
    align-items: center;
    height: 50px;
    transition: var(--transition);
}

.nav__logo-link:hover {
    transform: scale(1.05);
}

.nav__logo-img {
    height: 45px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

@media (max-width: 768px) {
    .nav__logo-img {
        height: 35px;
        max-width: 150px;
    }
}

.nav__logo h2 {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: none; /* Ocultar texto, usar apenas logo SVG */
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav__link {
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
    padding: 0.5rem 0;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav__link:hover::after,
.nav__link.active::after {
    width: 100%;
}

.nav__link.active {
    color: var(--primary-color);
    font-weight: 600;
}

.nav__cta {
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
}

.nav__toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav__toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn--primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-white);
    box-shadow: var(--shadow-md);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn--secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn--secondary:hover {
    background: var(--primary-color);
    color: var(--text-white);
}

.btn--large {
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
}

.btn--block {
    width: 100%;
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    padding-bottom: 5rem;
    background: #0a0e27;
    position: relative;
    overflow: hidden;
    z-index: 1;
    isolation: isolate;
}

.hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero__grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(102, 126, 234, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(102, 126, 234, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.hero__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: pulse 4s ease-in-out infinite;
}

.hero__glow--1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #667eea 0%, transparent 70%);
    top: -200px;
    right: 10%;
    animation-delay: 0s;
}

.hero__glow--2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #764ba2 0%, transparent 70%);
    bottom: -150px;
    left: 20%;
    animation-delay: 1s;
}

.hero__glow--3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, #f093fb 0%, transparent 70%);
    top: 50%;
    right: 30%;
    animation-delay: 2s;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.4; }
    50% { transform: scale(1.1); opacity: 0.6; }
}

.hero__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero__content {
    color: var(--text-white);
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(102, 126, 234, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.hero__badge-dot {
    width: 8px;
    height: 8px;
    background: #48bb78;
    border-radius: 50%;
    animation: blink 2s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.hero__title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-family: 'Space Grotesk', sans-serif;
}

.hero__highlight {
    position: relative;
    display: inline-block;
}

.hero__highlight-text {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

.hero__highlight-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.hero__subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

.btn--glow {
    position: relative;
    overflow: hidden;
}

.btn--glow::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;
}

.btn--glow:hover::before {
    left: 100%;
}

.btn--glow svg {
    margin-left: 0.5rem;
    transition: transform 0.3s;
    width: 20px;
    height: 20px;
}

.btn--glow:hover svg {
    transform: translateX(5px);
}

.hero__buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero__buttons .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    white-space: nowrap;
}

.hero__stats {
    display: flex;
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.hero__stat {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero__stat-icon {
    width: 40px;
    height: 40px;
    background: rgba(102, 126, 234, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    border: 1px solid rgba(102, 126, 234, 0.3);
}

.hero__stat-icon svg {
    width: 20px;
    height: 20px;
    color: var(--primary-color);
}

.hero__stat-number {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__stat-label {
    font-size: 0.875rem;
    opacity: 0.7;
    color: rgba(255, 255, 255, 0.7);
}

.hero__visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.hero__card {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.hero__card:hover {
    transform: translateY(-10px);
    border-color: rgba(102, 126, 234, 0.5);
    box-shadow: 0 12px 40px rgba(102, 126, 234, 0.3);
}

.hero__card--1 {
    top: 0;
    left: 0;
    z-index: 3;
    animation: float 6s ease-in-out infinite;
}

.hero__card--2 {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 2;
    animation: float 6s ease-in-out infinite 2s;
}

.hero__card--3 {
    bottom: 0;
    left: 20%;
    z-index: 1;
    animation: float 6s ease-in-out infinite 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.hero__card-content {
    text-align: center;
}

.hero__card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--text-white);
}

.hero__card-icon svg {
    width: 30px;
    height: 30px;
}

.hero__card-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-white);
}

.hero__card-content p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.hero__orb {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.3), rgba(118, 75, 162, 0.3));
    filter: blur(40px);
    animation: orbFloat 8s ease-in-out infinite;
}

.hero__orb--1 {
    width: 200px;
    height: 200px;
    top: 10%;
    right: 10%;
}

.hero__orb--2 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 10%;
    animation-delay: 2s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

.hero__wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    z-index: 1;
    pointer-events: none;
}

.hero__wave svg {
    width: 100%;
    height: 100%;
}

/* ===== SECTION STYLES ===== */
.section {
    padding: 5rem 0;
    position: relative;
    z-index: 10;
    background: var(--bg-white);
    isolation: isolate;
}

.section:first-of-type {
    margin-top: 0;
}

.section--dark {
    background: var(--bg-dark);
    color: var(--text-white);
    z-index: 10;
}

.section--alt {
    background: var(--bg-light);
    z-index: 10;
}

.section__header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section__tag {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-white);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section__tag--light {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.section__title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section__title--light {
    color: var(--text-white);
}

.section__description {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.8;
}

.section__description--light {
    color: rgba(255, 255, 255, 0.8);
}

/* ===== SOBRE SECTION ===== */
.sobre__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.sobre__card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
}

.sobre__card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.sobre__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
}

.sobre__icon svg {
    width: 40px;
    height: 40px;
}

.sobre__card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.sobre__card-text {
    color: var(--text-light);
    line-height: 1.8;
}

/* ===== BENEFÍCIOS SECTION ===== */
.beneficios__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.beneficios__item {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    position: relative;
}

.beneficios__item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.beneficios__item--highlight {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.2));
    border: 2px solid rgba(102, 126, 234, 0.5);
}

.beneficios__number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1rem;
    opacity: 0.3;
}

.beneficios__title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.beneficios__text {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

/* ===== SERVIÇOS SECTION ===== */
.servicos__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2rem;
}

.servicos__card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.servicos__card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.servicos__card--featured {
    border: 2px solid var(--primary-color);
}

.servicos__icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    margin-bottom: 1.5rem;
}

.servicos__icon svg {
    width: 30px;
    height: 30px;
}

.servicos__card-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.servicos__card-text {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.servicos__list {
    list-style: none;
}

.servicos__list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-dark);
}

.servicos__list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

.servicos__modulos {
    margin-top: 1.5rem;
}

.servicos__modulo {
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 8px;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===== KIT SECTION ===== */
.kit__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.kit__features {
    margin-top: 2rem;
}

.kit__feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    color: var(--text-dark);
}

.kit__feature svg {
    width: 24px;
    height: 24px;
    color: var(--success-color);
    flex-shrink: 0;
}

.kit__comparison {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.kit__comparison-item {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.kit__comparison-item--bad {
    background: #fee;
    border: 2px solid #fcc;
}

.kit__comparison-item--good {
    background: #efe;
    border: 2px solid #cfc;
}

.kit__comparison-item h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.kit__comparison-item ul {
    list-style: none;
}

.kit__comparison-item li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.kit__comparison-item--bad li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #e53e3e;
}

.kit__comparison-item--good li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

.kit__arrow {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: 700;
}

/* ===== INVESTIMENTO SECTION ===== */
.investimento__carousel-wrapper {
    position: relative;
    padding: 2rem 0 4rem;
}

.investimento__swiper {
    padding: 2rem 0 4rem !important;
    overflow: visible;
}

.investimento__swiper .swiper-slide {
    height: auto;
    display: flex;
    justify-content: center;
}

.investimento__card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    border: 2px solid transparent;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.investimento__card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(102, 126, 234, 0.3);
}

.investimento__swiper .swiper-slide-active .investimento__card {
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
    border-color: var(--primary-color);
}

.investimento__card--highlighted {
    border: 2px solid var(--primary-color);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
}

.investimento__badge {
    position: absolute;
    top: -12px;
    right: 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.investimento__title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.investimento__price {
    display: flex;
    align-items: baseline;
    margin-bottom: 0.5rem;
}

.investimento__currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-light);
}

.investimento__value {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-left: 0.25rem;
}

.investimento__installment {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.investimento__description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.investimento__list {
    margin-bottom: 1.5rem;
}

.investimento__item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: var(--text-dark);
}

.investimento__item svg {
    width: 20px;
    height: 20px;
    color: var(--success-color);
    flex-shrink: 0;
    margin-top: 2px;
}

.investimento__fees {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 8px;
    text-align: center;
}

.investimento__fees small {
    color: var(--text-light);
    font-size: 0.85rem;
}

/* Swiper Navigation & Pagination */
.investimento__nav-next,
.investimento__nav-prev {
    width: 50px !important;
    height: 50px !important;
    background: var(--bg-white) !important;
    border-radius: 50% !important;
    box-shadow: var(--shadow-md) !important;
    color: var(--primary-color) !important;
    border: 2px solid rgba(102, 126, 234, 0.2) !important;
    transition: var(--transition) !important;
}

.investimento__nav-next::after,
.investimento__nav-prev::after {
    font-size: 18px !important;
    font-weight: 700 !important;
}

.investimento__nav-next:hover,
.investimento__nav-prev:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)) !important;
    color: var(--text-white) !important;
    border-color: transparent !important;
    transform: scale(1.1) !important;
    box-shadow: var(--shadow-lg) !important;
}

.investimento__pagination {
    position: relative !important;
    margin-top: 2rem !important;
    bottom: 0 !important;
}

.investimento__pagination .swiper-pagination-bullet {
    width: 12px !important;
    height: 12px !important;
    background: var(--border-color) !important;
    opacity: 1 !important;
    transition: var(--transition) !important;
}

.investimento__pagination .swiper-pagination-bullet-active {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)) !important;
    width: 30px !important;
    border-radius: 10px !important;
}

/* ===== COMO FUNCIONA SECTION ===== */
.como-funciona__steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.como-funciona__step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.como-funciona__number {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
}

.como-funciona__step h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.como-funciona__step p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.como-funciona__role {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.como-funciona__arrow {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: 700;
}

/* ===== CONTATO SECTION ===== */
.contato__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contato__info {
    margin-top: 2rem;
}

.contato__info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.contato__info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    flex-shrink: 0;
}

.contato__info-icon svg {
    width: 24px;
    height: 24px;
}

.contato__info-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.contato__info-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* ===== FORM STYLES ===== */
.form__group {
    margin-bottom: 1.5rem;
}

.form__label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.form__input {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--font-family);
    transition: var(--transition);
    background: var(--bg-white);
}

.form__input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form__textarea {
    resize: vertical;
    min-height: 120px;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--bg-dark);
    color: var(--text-white);
    padding: 4rem 0 2rem;
}

.footer__content {
    display: grid;
    grid-template-columns: 2fr 1fr 0fr 0fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer__links {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
}

.footer__logo {
    height: 40px;
    width: auto;
    max-width: 180px;
    margin-bottom: 1rem;
    display: block;
    object-fit: contain;
}

@media (max-width: 768px) {
    .footer__logo {
        height: 35px;
        max-width: 150px;
    }
}

.footer__brand h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: none; /* Ocultar texto, usar apenas logo SVG */
}

.footer__brand p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.footer__column h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer__column ul li {
    margin-bottom: 0.75rem;
}

.footer__column ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer__column ul li a:hover {
    color: var(--text-white);
    padding-left: 5px;
}

.footer__bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .hero__container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero__title {
        font-size: 2.5rem;
    }
    
    .kit__content {
        grid-template-columns: 1fr;
    }
    
    .servicos__grid {
        grid-template-columns: 1fr;
    }
    
    .contato__grid {
        grid-template-columns: 1fr;
    }
    
    .footer__content {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer__links {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav__menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--bg-white);
        flex-direction: column;
        padding: 2rem;
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
    }
    
    .nav__menu.active {
        left: 0;
    }
    
    .nav__toggle {
        display: flex;
    }
    
    .nav__toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav__toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav__toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero__container {
        grid-template-columns: 1fr;
    }
    
    .hero__title {
        font-size: 2rem;
    }
    
    .hero__visual {
        min-height: 400px;
        margin-top: 2rem;
        width: 100%;
        box-sizing: border-box;
        overflow: hidden;
        padding-left: 0;
        padding-right: 0;
    }
    
    .hero__card {
        position: relative !important;
        margin-bottom: 1rem;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .hero__card--1,
    .hero__card--2,
    .hero__card--3 {
        position: relative !important;
        transform: none !important;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        bottom: auto !important;
        width: 100%;
        max-width: 100%;
    }
    
    .hero__stats {
        flex-direction: column;
        gap: 1.5rem;
        padding-left: 0;
        padding-right: 0;
        width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
    }
    
    .hero__stat {
        min-width: 0;
        width: 100%;
        flex-shrink: 0;
    }
    
    .investimento__nav-next,
    .investimento__nav-prev {
        width: 40px !important;
        height: 40px !important;
    }
    
    .section__title {
        font-size: 2rem;
    }
    
    .sobre__grid,
    .beneficios__grid,
    .investimento__swiper {
        padding: 1rem 0 3rem !important;
    }
    
    .investimento__swiper .swiper-slide-active .investimento__card {
        transform: scale(1);
    }
    
    .como-funciona__steps {
        flex-direction: column;
    }
    
    .como-funciona__arrow {
        transform: rotate(90deg);
    }
    
    .kit__comparison {
        flex-direction: column;
    }
    
    .kit__arrow {
        transform: rotate(90deg);
    }
    
    .footer__content {
        grid-template-columns: 1fr;
    }
    
    .footer__links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .hero__buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .hero__buttons .btn {
        width: 100%;
        padding: 0.65rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .hero__buttons .btn--glow svg {
        height: 30px;
        width: 30px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .hero {
        padding-top: 70px;
        min-height: auto;
        padding-bottom: 3rem;
        overflow-x: hidden;
    }
    
    .hero__container {
        grid-template-columns: 1fr;
        gap: 2rem;
        overflow-x: hidden;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .hero__visual {
        min-height: 400px;
        margin-top: 2rem;
        order: -1;
    }
    
    .hero__stats {
        flex-direction: row;
        gap: 1rem;
        padding-top: 0;
        border-top: none;
        margin-top: 1.5rem;
    }
    
    .hero__stat {
        flex: 1;
        min-width: 0;
    }
    
    .hero__title {
        font-size: 1.75rem;
        line-height: 1.3;
    }
    
    .hero__subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero__badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
    
    .hero__buttons {
        flex-direction: column;
        margin-bottom: 2rem;
        gap: 0.75rem;
    }
    
    .hero__buttons .btn {
        width: 100%;
        padding: 0.65rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .hero__buttons .btn--glow svg {
        height: 30px;
        width: 30px;
    }
    
    .hero__visual {
        min-height: 300px;
        margin-top: 2rem;
    }
    
    .hero__stats {
        flex-direction: row;
        gap: 0.75rem;
        padding-top: 0;
        border-top: none;
        margin-top: 1.5rem;
    }
    
    .hero__stat {
        flex: 1;
        min-width: 0;
    }
    
    .hero__stat-number {
        font-size: 1.5rem;
    }
    
    .hero__stat-label {
        font-size: 0.75rem;
    }
    
    .hero__stat-icon {
        width: 35px;
        height: 35px;
        margin-bottom: 0.5rem;
    }
    
    .hero__card {
        padding: 1rem;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .hero__card--1,
    .hero__card--2,
    .hero__card--3 {
        position: relative;
        transform: none;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        margin: 0.5rem auto;
        width: 100%;
        max-width: 100%;
    }
    
    .hero__card-content h3 {
        font-size: 0.9rem;
    }
    
    .hero__card-content p {
        font-size: 0.75rem;
    }
    
    .hero__card-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 0.5rem;
    }
    
    .hero__card-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .hero__stat-number {
        font-size: 1.75rem;
    }
    
    .section__title {
        font-size: 1.75rem;
    }
    
    .investimento__value {
        font-size: 2.5rem;
    }
    
    .investimento__card {
        padding: 2rem 1.5rem;
    }
    
    .investimento__nav-next,
    .investimento__nav-prev {
        width: 35px !important;
        height: 35px !important;
    }
    
    .investimento__nav-next::after,
    .investimento__nav-prev::after {
        font-size: 14px !important;
    }
}

/* ===== WHATSAPP FLOATING BUTTON ===== */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1rem;
}

.whatsapp__button {
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    transition: var(--transition);
    z-index: 10000;
    position: relative;
    padding: 12px 20px 12px 12px;
    min-width: auto;
    height: auto;
}

.whatsapp__button-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.whatsapp__button-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.whatsapp__online-text {
    font-size: 0.7rem;
    font-weight: 700;
    color: white;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.whatsapp__number {
    font-size: 0.85rem;
    font-weight: 600;
    color: white;
}

.whatsapp__button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp__button svg {
    width: 32px;
    height: 32px;
    color: white;
    flex-shrink: 0;
}

.whatsapp__form-container {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    background: var(--bg-white);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    padding: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 9998;
    overflow: hidden;
    pointer-events: none;
}

.whatsapp-float:hover .whatsapp__form-container,
.whatsapp__form-container.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.whatsapp__form-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 1.5rem;
    color: var(--text-white);
    text-align: center;
}

.whatsapp__form-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.whatsapp__form-header p {
    font-size: 0.875rem;
    opacity: 0.9;
}

.whatsapp__form {
    padding: 1.5rem;
}

.whatsapp__form .form__group {
    margin-bottom: 1rem;
}

.whatsapp__form label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.whatsapp__form input,
.whatsapp__form select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.9rem;
    font-family: var(--font-family);
    transition: var(--transition);
}

.whatsapp__form input:focus,
.whatsapp__form select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 1.5rem;
        right: 1.5rem;
    }
    
    .whatsapp__button {
        padding: 10px 16px 10px 10px;
    }
    
    .whatsapp__online-text {
        font-size: 0.65rem;
    }
    
    .whatsapp__number {
        font-size: 0.8rem;
    }
    
    .whatsapp__button svg {
        width: 28px;
        height: 28px;
    }
    
    .whatsapp__form-container {
        width: 320px;
        max-width: calc(100vw - 3rem);
    }
}

@media (max-width: 480px) {
    .whatsapp-float {
        bottom: 1rem;
        right: 1rem;
    }
    
    .whatsapp__button {
        padding: 8px 12px 8px 8px;
    }
    
    .whatsapp__online-text {
        font-size: 0.6rem;
    }
    
    .whatsapp__number {
        font-size: 0.75rem;
    }
    
    .whatsapp__button svg {
        width: 24px;
        height: 24px;
    }
    
    .whatsapp__form-container {
        width: 280px;
        bottom: 70px;
    }
    
    .whatsapp__form-header {
        padding: 1.25rem;
    }
    
    .whatsapp__form {
        padding: 1.25rem;
    }
}

/* ===== PÁGINA OBRIGADO ===== */
.obrigado-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 100%);
    position: relative;
    overflow: hidden;
}

.obrigado-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(102, 126, 234, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(102, 126, 234, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
}

.obrigado-content {
    max-width: 600px;
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.obrigado-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, #48bb78, #38a169);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    animation: scaleIn 0.6s ease-out 0.2s both;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

.obrigado-icon svg {
    width: 60px;
    height: 60px;
}

.obrigado-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 1rem;
    font-family: 'Space Grotesk', sans-serif;
}

.obrigado-message {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.obrigado-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.obrigado-info-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

.obrigado-info-item svg {
    width: 24px;
    height: 24px;
    color: var(--primary-color);
}

.obrigado-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn--whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: var(--text-white);
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
}

.btn--whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.btn--whatsapp svg {
    width: 24px;
    height: 24px;
}

.btn--secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--text-white);
    padding: 0.875rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    transition: var(--transition);
}

.btn--secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
    .obrigado-content {
        padding: 2rem 1.5rem;
    }
    
    .obrigado-title {
        font-size: 2rem;
    }
    
    .obrigado-message {
        font-size: 1rem;
    }
    
    .obrigado-icon {
        width: 80px;
        height: 80px;
    }
    
    .obrigado-icon svg {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .obrigado-container {
        padding: 1rem;
    }
    
    .obrigado-content {
        padding: 1.5rem 1rem;
    }
    
    .obrigado-title {
        font-size: 1.75rem;
    }
    
    .obrigado-buttons {
        gap: 0.75rem;
    }
    
    .btn--whatsapp,
    .btn--secondary {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
}

