:root {
    /* Clean, Light Mode Palette */
    --bg-main: #f0f2f5; 
    --bg-secondary: #ffffff;
    --primary: #00b4d8;      /* Clean solid cyan */
    --primary-glow: rgba(0, 180, 216, 0.3);
    --secondary: #0077b6;    /* Deeper clean blue */
    --accent: #ff006e;       /* Accent color */
    --text-main: #1a1e29;
    --text-muted: #5c6270;
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(0, 0, 0, 0.05);
    --success: #06d6a0;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

.step-content p {
    color: var(--text-main);
    line-height: 1.6;
}

.step-image {
    width: 100%;
    margin-top: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.04);
    object-fit: contain;
}

/* Background com detalhes de patinhas */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Subtle paw print SVG pattern */
    background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 7.5C8 8.88071 6.88071 10 5.5 10C4.11929 10 3 8.88071 3 7.5C3 6.11929 4.11929 5 5.5 5C6.88071 5 8 6.11929 8 7.5ZM16 7.5C16 8.88071 14.8807 10 13.5 10C12.1193 10 11 8.88071 11 7.5C11 6.11929 12.1193 5 13.5 5C14.8807 5 16 6.11929 16 7.5ZM21 8.5C21 9.88071 19.8807 11 18.5 11C17.1193 11 16 9.88071 16 8.5C16 7.11929 17.1193 6 18.5 6C19.8807 6 21 7.11929 21 8.5ZM7.89311 12.2858C9.52932 11.8344 11.2384 11.7516 12.8718 12.1558C14.6599 12.5983 16.2737 13.8055 17.1895 15.3524C17.7027 16.2191 18 17.3888 17.747 18.3491C17.4721 19.3929 16.6346 20.3129 15.6558 20.7303C14.8143 21.0891 13.8824 21.0504 13.0135 20.8407C12.3551 20.6819 11.6666 20.6698 11 20.817C10.1552 21.0035 9.25556 21.0189 8.35825 20.702C7.30612 20.3304 6.36836 19.3879 6.06456 18.3093C5.79589 17.3553 6.1368 16.166 6.6666 15.2891C7.57567 13.7848 9.17228 12.6373 10.9576 12.1558C11.5833 11.9871 12.2359 11.8037 12.8718 12.1558C12.8718 12.1558 11.705 11.7853 7.89311 12.2858Z' fill='%23000000' fill-opacity='0.02'/%3E%3C/svg%3E");
    z-index: -2;
    pointer-events: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    color: #111827;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Camuflagem da imagem do Herói */
.blend-image {
    mix-blend-mode: multiply; /* Esconde fundos brancos/cinzas claros combinando perfeitamente com a página */
    filter: contrast(1.02);
    display: block;
    margin: 0 auto;
}

/* Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

.section-padding {
    padding: 5rem 0;
}

.text-center {
    text-align: center;
}

.text-gradient {
    /* Gradient adapted for light mode */
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.text-gradient-icon {
    stroke: url(#gradient); 
    color: var(--primary); /* Fallback */
}

.text-green {
    color: var(--success);
}

.darker-bg {
    background-color: var(--bg-secondary);
}

.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.glass-strong {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 180, 216, 0.2);
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 180, 216, 0.1);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    box-shadow: 0 4px 15px var(--primary-glow);
}

.btn-primary:hover {
    box-shadow: 0 8px 25px var(--primary-glow);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    width: 100%;
}

.pulse-effect {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 180, 216, 0.6); }
    70% { box-shadow: 0 0 0 15px rgba(0, 180, 216, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 180, 216, 0); }
}

/* Badges */
.badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: rgba(0, 180, 216, 0.1);
    color: var(--secondary);
    border: 1px solid rgba(0, 180, 216, 0.2);
    margin-bottom: 1.5rem;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.2rem 0;
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
    padding: 1rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 300;
    color: #111827;
}

.logo strong {
    font-weight: 800;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.neo-icon {
    color: var(--primary);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    color: #374151;
}

.nav-links a:not(.nav-cta):hover {
    color: var(--primary);
}

.nav-links a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-links a:not(.nav-cta):hover::after {
    width: 100%;
}

.nav-cta {
    background: rgba(0, 180, 216, 0.1);
    color: var(--secondary) !important;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    border: 1px solid var(--primary);
}

.nav-cta:hover {
    background: var(--primary);
    color: #fff !important;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-main);
    cursor: pointer;
}

/* Background Effects */
.background-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
    pointer-events: none;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
}

.glow-orb.primary {
    top: -10%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: rgba(0, 180, 216, 0.3);
}

.glow-orb.secondary {
    bottom: 20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 0, 110, 0.15); /* Soft pinkish accent below */
}

/* Hero Section */
.hero {
    position: relative;
    padding-top: 8rem;
    padding-bottom: 5rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-container {
    max-width: 900px; /* Centered narrow container for hero */
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

/* The camouflage image wrapper */
.hero-image-center {
    width: 100%;
    max-width: 700px;
    margin: 1.5rem auto;
    position: relative;
}

.hero-image-center img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    /* mix-blend-mode aplied via .blend-image class */
}

.hero .subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.hero-benefits-frame {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 180, 216, 0.2);
    border-radius: 24px;
    padding: 2rem;
    margin: 0 auto 2.5rem auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    display: inline-block;
}

.hero-benefits {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}


.hero-benefits li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-main);
    background: var(--glass-bg);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

.hero-offer {
    background: linear-gradient(135deg, #ffffff, #f0fdfa);
    padding: 1.8rem 3rem;
    border-radius: 20px;
    border: 2px solid var(--success);
    margin-bottom: 2rem;
    display: inline-block;
    box-shadow: 0 10px 30px rgba(6, 214, 160, 0.15);
    text-align: center;
    transform: scale(1.05); /* Faz a caixa pular ligeiramente na página */
}

.offer-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    background: var(--accent);
    color: #fff;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
}

.offer-list {
    margin-top: 2rem;
    text-align: center;
}

.text-dark {
    color: #1a202c;
}

.list-head {
    font-weight: 800;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.offer-items-left {
    list-style: none;
    display: inline-block;
    text-align: left;
}

.offer-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-muted);
    font-size: 1.1rem;
}

.offer-alert {
    margin-top: 2rem;
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--text-main);
    text-align: center;
    line-height: 1.4;
}

/* Price Box */
.offer-price-box.checkout-style {
    background: linear-gradient(to bottom, #fffcf5, #ffeedb);
    border: 2px solid #ffaa99;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.timer-text {
    font-weight: 900;
    font-size: 1.5rem;
    color: #b52929;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    font-family: 'Outfit', sans-serif;
}

.price-strike {
    font-size: 1.1rem;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-bottom: 0.3rem;
}

.price-final-label {
    font-size: 1.1rem;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.price-final.text-green {
    font-size: 4.5rem;
    font-weight: 900;
    color: var(--success);
    line-height: 1;
    margin-bottom: 2rem;
    font-family: 'Outfit', sans-serif;
}

.btn-success {
    background: var(--success);
    color: #fff;
    width: 100%;
}

.btn-success:hover {
    background: #05b086;
    box-shadow: 0 10px 25px rgba(6, 214, 160, 0.4);
}

.pricing {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.prices-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.2rem;
}

.pricing .old-price {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 1.1rem;
    margin: 0;
}

.pricing .por-text {
    font-size: 1.1rem;
    color: var(--text-main);
    font-weight: 600;
}

.pricing .new-price {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--success);
    font-family: 'Outfit';
    line-height: 1;
    text-shadow: 0 4px 15px rgba(6, 214, 160, 0.2);
    white-space: nowrap; /* Impede a quebra de linha do R$ 10,00 */
}

/* Features */
.section-header {
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
}

.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.card-image-header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
    height: 80px; 
}

.card-image-header img {
    max-height: 100%;
    width: auto;
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(0, 180, 216, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.icon-wrapper.primary-bg {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    box-shadow: 0 4px 15px var(--primary-glow);
}

.feature-card h3 {
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.feature-card ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-card ul li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.feature-card ul li i {
    width: 20px;
    height: 20px;
    color: var(--secondary);
    flex-shrink: 0;
}

.highlight-border {
    position: relative;
}

.highlight-border::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

/* How It Works */
.how-it-works {
    position: relative;
}

.steps-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.step-line {
    position: absolute;
    left: calc(2rem + 40px); /* Padding of card (32px) + half of number circle (40px) */
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--glass-border);
    z-index: 1;
}

.step-card {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 2;
    background: #ffffff;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.04);
}

.step-number {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    background: #fff;
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    box-shadow: 0 10px 25px rgba(0, 180, 216, 0.2);
}

.step-content {
    padding-top: 1rem;
}

.step-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Feedback Carousel (1 by 1) */
.carousel-wrapper {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    overflow: hidden;
    padding: 1.5rem 0;
}

.carousel-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 1rem;
    padding: 0.5rem 2.5vw;
    -ms-overflow-style: none; /* IE */
    scrollbar-width: none; /* Firefox */
}
.carousel-track::-webkit-scrollbar {
    display: none; /* Chrome */
}

.carousel-slide {
    scroll-snap-align: center;
    flex: 0 0 95%; /* Make it huge on mobile so it's readable */
    max-width: 500px;
    display: flex;
    justify-content: center;
}

.feedback-frame {
    background: #ffffff;
    padding: 10px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06); 
    border: 1px solid rgba(0,0,0,0.04);
    width: 100%;
}

.feedback-frame img {
    width: 100%;
    border-radius: 12px;
    height: auto;
    object-fit: contain;
}

/* Dots and Navigation */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 1.5rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(0, 180, 216, 0.3);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary);
    width: 25px;
    border-radius: 10px;
}

@media (min-width: 768px) {
    .carousel-track { padding: 1rem 15vw; gap: 2rem; }
    .carousel-slide { flex: 0 0 70%; }
}

@media (min-width: 1024px) {
    .carousel-track { padding: 1rem 30vw; }
    .carousel-slide { flex: 0 0 45%; max-width: 600px;}
}

/* Pets Verificados - Auto Scrolling */
.scrolling-testimonials {
    overflow: hidden;
    white-space: nowrap;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    position: relative;
    padding: 2rem 0;
}

.scrolling-track {
    display: flex;
    gap: 2rem;
    width: max-content;
    animation: scrollFeedbacks 25s linear infinite;
}

.scrolling-track:hover {
    animation-play-state: paused;
}

.scrolling-track img {
    height: 400px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    object-fit: cover;
    border: 1px solid var(--glass-border);
}

@keyframes scrollFeedbacks {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 1rem)); } 
}

@media (max-width: 768px) {
    .scrolling-track img {
        height: 280px;
    }
}

/* Offer Box */
.offer {
    position: relative;
}

.offer-box {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    padding: 4rem;
}

.offer-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.offer-content p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.offer-list {
    background: rgba(0, 180, 216, 0.05);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(0,180,216,0.1);
}

.list-head {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 800;
    font-family: 'Outfit';
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    color: var(--secondary);
}

.offer-list ul {
    margin-bottom: 1.5rem;
}

.offer-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.offer-list li i {
    color: var(--success);
}

.offer-alert {
    font-size: 0.85rem;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.offer-price-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.timer-tag {
    background: linear-gradient(135deg, var(--accent), #ff5c9f);
    color: #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.price-strike {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 1.2rem;
}

.price-final-label {
    font-size: 1.2rem;
    margin-top: 0.5rem;
    font-weight: 500;
}

.price-final {
    font-size: 4rem;
    font-family: 'Outfit';
    font-weight: 800;
    color: var(--success);
    line-height: 1;
    margin-bottom: 2rem;
    text-shadow: 0 4px 10px rgba(6, 214, 160, 0.2);
}

.secure-checkout {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    color: var(--success);
    font-size: 0.9rem;
    font-weight: 600;
}

/* FAQ */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border: 1px solid var(--glass-border);
    margin-bottom: 1rem;
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0,0,0,0.02);
}

.faq-item:hover {
    border-color: rgba(0, 180, 216, 0.3);
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-main);
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--secondary);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 1.5rem;
    background: #fafafc;
}

.faq-item.active .faq-answer {
    max-height: 200px; 
    padding-bottom: 1.5rem;
}

.faq-answer p {
    color: var(--text-muted);
    font-size: 0.95rem;
    padding-top: 1rem;
}

/* Footer */
.footer {
    border-top: 1px solid var(--glass-border);
    padding-top: 4rem;
    background: #fff;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.brand-col p {
    color: var(--text-muted);
    margin: 1.5rem 0;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-main);
}

.social-links a:hover {
    background: var(--primary);
    color: #fff;
}

.footer h4 {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer ul li a {
    color: var(--text-muted);
}

.footer ul li a:hover {
    color: var(--primary);
}

.contact-col li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
}

.contact-col li i {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding: 1.5rem;
    border-top: 1px solid var(--glass-border);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }
.delay-5 { animation-delay: 1.0s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    to { opacity: 1; }
}

/* Responsive */
@media (max-width: 992px) {
    .hero h1 { font-size: 2.8rem; }
    .hero-container { grid-template-columns: 1fr; text-align: center; }
    .hero .subtitle { margin: 0 auto 2rem auto; }
    .hero-benefits { display: inline-flex; flex-direction: column; align-items: flex-start; text-align: left; }
    .hero-image-center { margin: 1rem -1rem; width: calc(100% + 2rem); }
    .steps-container { grid-template-columns: 1fr; gap: 3rem; }
    .step-line { display: none; }
    .offer-box { grid-template-columns: 1fr; text-align: center; padding: 1.2rem 0.8rem; gap: 1.5rem; }
    .offer-content h2 { font-size: 2rem; }
    .offer-list { padding: 1.2rem 0.8rem; }
    .offer-alert { text-align: center; font-size: 0.85rem; }
    .offer-price-box.checkout-style { padding: 1.5rem 1rem; }
    .price-final.text-green { font-size: 3.5rem; }
    .footer-container { grid-template-columns: 1fr 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        justify-content: center;
        transition: var(--transition);
        box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    }
    .nav-links.active { left: 0; }
    .mobile-menu-btn { display: block; }
    .hero { padding-top: 8rem; }
    .hero h1 { font-size: 2.2rem; }
    .pricing .new-price strong { font-size: 2rem; }
    .footer-container { grid-template-columns: 1fr; text-align: center; }
    .social-links { justify-content: center; }
    .contact-col li { justify-content: center; }
}
