/* Base styles */
:root {
    --color-green-50: #f0fdf4;
    --color-green-100: #dcfce7;
    --color-green-400: #4ade80;
    --color-green-500: #22c55e;
    --color-green-600: #16a34a;
    --color-zinc-800: #27272a;
    --color-blue-500: #3b82f6;
    --color-purple-500: #a855f7;
    --color-red-500: #ef4444;
    --color-orange-500: #f97316;
    --color-yellow-400: #facc15;
    --color-pink-500: #ec4899;
    --color-gray-500: #6b7280;
}

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

body {
    font-family: system-ui, -apple-system, sans-serif;
    line-height: 1.5;
    background: linear-gradient(to bottom, var(--color-green-50), var(--color-green-100));
    color: var(--color-zinc-800);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--color-zinc-800);
    z-index: 50;
    transition: all 0.3s;
}

.header.scrolled {
    background-color: rgba(39, 39, 42, 0.5);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 5.76rem;
}

@keyframes logoEntrance {
    0% { opacity: 0; transform: translateY(-20px) scale(0.9); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-weight: bold;
    font-size: 1.25rem;
    text-decoration: none;
    animation: logoEntrance 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    transition: all 0.3s ease;
    transform-origin: center;
}

.logo:hover {
    transform: scale(1.05);
    color: var(--color-green-400);
}

.logo img {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.logo:hover img {
    transform: rotate(-5deg) scale(1.1);
}

.menu-toggle {
    display: block;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 0.5rem;
    margin-left: auto;
}

.menu-toggle i {
    width: 28px;
    height: 28px;
}

.nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-zinc-800);
    padding: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    text-align: center;
    gap: 1.5rem;
}

.nav.active {
    display: flex;
}

@media (min-width: 768px) {
    .menu-toggle {
        display: none;
    }
    
    .nav {
        display: flex;
        position: static;
        flex-direction: row;
        background: transparent;
        padding: 0;
        box-shadow: none;
        gap: 2rem;
    }
}

.nav a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.nav a:hover {
    color: var(--color-green-500);
}

/* Hero Section */
.hero {
    padding-top: 9.76rem;
    padding-bottom: 5rem;
    background: linear-gradient(to bottom, var(--color-green-600), var(--color-green-500));
    color: white;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .hero-content {
        flex-direction: row;
        justify-content: space-between;
    }
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .hero-text h1 {
        font-size: 3.75rem;
    }
}

.hero-text p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    background-color: var(--color-green-400);
    color: var(--color-zinc-800);
    border: none;
    border-radius: 9999px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.cta-button:hover {
    background-color: var(--color-green-500);
    transform: scale(1.05);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-icon {
    width: 16rem;
    height: 16rem;
    color: rgba(255, 255, 255, 0.2);
}

/* Sections */
.section {
    padding: 5rem 0;
}

.section-title {
    font-size: 1.875rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--color-zinc-800);
}

.bg-light {
    background-color: var(--color-green-50);
}

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

.grid-3.testimonials-bottom {
    margin-top: 3rem;
}

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

/* Cards */
.card {
    background: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.card:hover {
    border-color: var(--color-green-500);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.15);
    transform: translateY(-5px);
}

.channel-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.channel-card:hover {
    border-color: var(--color-green-500);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.15);
    transform: translateY(-5px);
}

.channel-card i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.channel-card span {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-gray-800);
    display: block;
    margin-bottom: 0.75rem;
}

.channel-description {
    font-size: 0.875rem;
    color: var(--color-gray-600);
    line-height: 1.4;
    margin: 0;
}

.agent-description {
    font-size: 0.875rem;
    color: var(--color-gray-600);
    line-height: 1.4;
    margin: 0;
}

/* Icons */
.icon-green { color: var(--color-green-500); }
.icon-blue { color: var(--color-blue-500); }
.icon-purple { color: var(--color-purple-500); }
.icon-red { color: var(--color-red-500); }
.icon-orange { color: var(--color-orange-500); }
.icon-yellow { color: var(--color-yellow-400); }
.icon-pink { color: var(--color-pink-500); }
.icon-gray { color: var(--color-gray-500); }
.icon-light-blue { color: var(--color-blue-500); }

.large-icon {
    width: 12rem;
    height: 12rem;
}

/* IA Section */
.ia-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

@media (min-width: 768px) {
    .ia-content {
        flex-direction: row;
        align-items: center;
    }
}

.ia-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.ia-text {
    flex: 1;
}

.feature-list {
    list-style: none;
    margin-top: 1.5rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

/* Testimonials */
.testimonial-card {
    background: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: var(--color-green-500);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.15);
    transform: translateY(-5px);
}

.stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.testimonial-author {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author-photo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--color-green-400);
    flex-shrink: 0;
}

.author-name {
    font-weight: bold;
}

.author-role {
    color: var(--color-gray-500);
    font-size: 0.875rem;
}

/* Pricing */
.price-card {
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.price-card:hover {
    border-color: var(--color-green-500);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.15);
    transform: translateY(-5px);
}

.price-card.featured {
    transform: scale(1.05);
}

.price {
    font-size: 2rem;
    font-weight: bold;
    color: var(--color-green-600);
    margin: 1rem 0;
}

.price-features {
    list-style: none;
    margin: 1.5rem 0;
}

.price-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.price-button {
    width: 100%;
    padding: 0.75rem;
    background-color: var(--color-green-500);
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.price-button:hover {
    background-color: var(--color-green-600);
}

/* Contact Form */
.contact-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: 2fr 1fr;
    }
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--color-zinc-800);
}

.form-input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    transition: border-color 0.3s;
}

.form-input:focus {
    outline: none;
    border-color: var(--color-green-500);
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

.submit-button {
    width: 100%;
    padding: 0.75rem;
    background-color: var(--color-green-500);
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-button:hover {
    background-color: var(--color-green-600);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-logo {
    text-align: left;
    margin-bottom: 1rem;
}

.contact-logo img {
    max-width: 100%;
    height: auto;
}

.contact-cta {
    margin-top: 1.5rem;
}

.contact-cta .cta-button {
    width: 100%;
    justify-content: center;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-item a {
    color: var(--color-zinc-700);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: var(--color-green-500);
}

/* Footer */
.footer {
    background: var(--color-zinc-800);
    color: white;
    padding: 3rem 0;
}

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

.footer-brand p {
    color: #a1a1aa;
    margin-top: 1rem;
}

.footer-links h4 {
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    color: #a1a1aa;
    margin-bottom: 0.5rem;
    cursor: pointer;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links li:hover {
    color: var(--color-green-500);
}

.footer-links li i {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}



.footer-item-clickable {
    cursor: pointer;
    transition: color 0.3s ease;
}

.footer-item-clickable:hover {
    color: var(--color-green-500);
    text-decoration: underline;
}

.footer-bottom {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: #a1a1aa;
    position: relative;
}

.footer-bottom a {
    color: #a1a1aa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: var(--color-green-500);
    text-decoration: underline;
}

.cookies-button {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: 1px solid #4b5563;
    color: #9ca3af;
    padding: 0.5rem;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.875rem;
    opacity: 0.7;
}

.cookies-button:hover {
    background: var(--color-green-500);
    border-color: var(--color-green-500);
    color: white;
    opacity: 1;
    transform: translateY(-50%) scale(1.05);
}

.cookies-button i {
    width: 16px;
    height: 16px;
}

/* Floating Buttons */
.floating-button {
    position: fixed;
    bottom: 2rem;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s;
    z-index: 1000;
}

.whatsapp-button {
    right: 2rem;
    background: #25d366;
    color: white;
    animation: pulse-cta 2s ease-in-out infinite;
}

@keyframes pulse-cta {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    50% {
        box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
    }
}

.whatsapp-button:hover {
    background: #128c7e;
    transform: scale(1.1);
    animation: none;
}

.scroll-top-button {
    right: 2rem;
    bottom: 6.5rem;
    background: #1a8fcb;
    color: white;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.scroll-top-button.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top-button:hover {
    background: #1577a8;
    transform: scale(1.1);
}

.scroll-top-button.visible:hover {
    transform: scale(1.1) translateY(0);
}

/* Clickable Cards */
.clickable-card {
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.clickable-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 1rem;
    width: 90%;
    max-width: 600px;
    position: relative;
    animation: modalSlideIn 0.3s ease-out;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

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

.modal-content h2 {
    color: var(--color-zinc-800);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.modal-content p {
    color: var(--color-zinc-600);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.modal-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.modal-content li {
    color: var(--color-zinc-700);
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    color: var(--color-zinc-400);
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.close:hover {
    color: var(--color-zinc-600);
}

@media (max-width: 768px) {
    .modal-content {
        margin: 10% auto;
        width: 95%;
        padding: 1.5rem;
    }
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

.animate-fade-in {
    animation: fadeIn 1s ease-out forwards;
}

/* Video Showcase Section */
.video-showcase-section {
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 30%, #f0f9ff 70%, #f0fdf4 100%);
    position: relative;
    overflow: hidden;
}

.video-showcase-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at 30% 50%, rgba(34, 197, 94, 0.06) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 50%, rgba(59, 130, 246, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.video-showcase {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 3rem;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
}

@media (min-width: 768px) {
    .video-showcase {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        gap: 4rem;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
}

.video-wrapper {
    -webkit-box-flex: 1.2;
    -ms-flex: 1.2;
    flex: 1.2;
    position: relative;
    width: 100%;
    max-width: 640px;
    min-width: 0;
}

.video-frame-glow {
    position: absolute;
    inset: -8px;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--color-green-400), var(--color-blue-500), var(--color-purple-500), var(--color-green-400));
    background-size: 300% 300%;
    -webkit-animation: glowShift 6s ease-in-out infinite;
    animation: glowShift 6s ease-in-out infinite;
    opacity: 0.6;
    -webkit-filter: blur(12px);
    filter: blur(12px);
    z-index: 0;
}

@keyframes glowShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}
@-webkit-keyframes glowShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: 16px;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.1);
    -webkit-box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.1);
    background: #000;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-description {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    min-width: 0;
}

.video-badge {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.5rem;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    padding: 0.4rem 1rem;
    border-radius: 9999px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-green-600);
    margin-bottom: 1.25rem;
}

.video-badge i,
.video-badge svg {
    width: 18px;
    height: 18px;
}

.video-description h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--color-zinc-800);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.video-description > p {
    font-size: 1.05rem;
    color: #52525b;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.video-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 1.25rem;
}

.video-features li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1rem;
}

.video-feature-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--color-green-400), var(--color-green-600));
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
    -webkit-box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

.video-feature-icon i,
.video-feature-icon svg {
    width: 22px;
    height: 22px;
    color: white;
}

.video-features li div:last-child {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.video-features li strong {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-zinc-800);
}

.video-features li div:last-child span {
    font-size: 0.85rem;
    color: #71717a;
    margin-top: 2px;
}

.video-cta {
    background: linear-gradient(135deg, var(--color-green-500), var(--color-green-600));
    color: white;
    font-size: 1rem;
    padding: 0.85rem 2rem;
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.35);
    -webkit-box-shadow: 0 6px 20px rgba(34, 197, 94, 0.35);
}

.video-cta:hover {
    background: linear-gradient(135deg, var(--color-green-600), #15803d);
    -webkit-transform: scale(1.05) translateY(-2px);
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 8px 30px rgba(34, 197, 94, 0.45);
    -webkit-box-shadow: 0 8px 30px rgba(34, 197, 94, 0.45);
}

@media (max-width: 767px) {
    .video-wrapper {
        max-width: 100%;
    }

    .video-description h3 {
        font-size: 1.4rem;
    }

    .video-description > p {
        font-size: 0.95rem;
    }
}

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

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.faq-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-zinc-800);
    transition: all 0.3s ease;
    outline: none;
}

.faq-question:hover {
    background-color: var(--color-green-50);
}

.faq-question:focus {
    background-color: var(--color-green-50);
    outline: 2px solid var(--color-green-500);
    outline-offset: -2px;
}

.faq-question span {
    flex: 1;
    margin-right: 1rem;
    line-height: 1.4;
}

.faq-icon {
    width: 20px;
    height: 20px;
    color: var(--color-green-600);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
}

.faq-label-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    margin-right: 0.75rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-label-icon {
    transform: scale(1.15);
}

.icon-teal { color: #14b8a6; }
.icon-indigo { color: #6366f1; }
.icon-cyan { color: #06b6d4; }

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
    background-color: var(--color-green-50);
    padding: 0 1.5rem;
}

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

.faq-answer p {
    color: var(--color-zinc-800);
    line-height: 1.6;
    margin: 0;
    padding-top: 0.5rem;
}

/* FAQ Responsive */
@media (max-width: 768px) {
    .faq-question {
        padding: 1.25rem;
        font-size: 1rem;
    }

    .faq-answer {
        padding: 0 1.25rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1.25rem 1.25rem 1.25rem;
    }

    .faq-question span {
        margin-right: 0.75rem;
    }

    .faq-icon {
        width: 18px;
        height: 18px;
        font-size: 12px;
    }
}

/* Fallback styles for when Lucide icons don't load */
.faq-icon:empty::before {
    content: '▼';
    font-size: 14px;
    color: var(--color-green-600);
}

.faq-item.active .faq-icon:empty::before {
    content: '▲';
}

/* Reduced motion accessibility */
@media (prefers-reduced-motion: reduce) {
    .faq-item,
    .faq-question,
    .faq-icon,
    .faq-answer {
        transition: none !important;
    }
}

/* Q&A Cards Styles */
.qa-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.qa-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.qa-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-green-500), var(--color-blue-500));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.qa-card:hover::before {
    transform: scaleX(1);
}

.qa-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.qa-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    transition: all 0.3s ease;
}

.qa-card:hover .qa-icon {
    transform: scale(1.1) rotate(5deg);
}

.qa-icon .icon-green {
    color: white;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 12px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qa-icon .icon-blue {
    color: white;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 12px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qa-icon .icon-purple {
    color: white;
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    border-radius: 12px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qa-icon .icon-orange {
    color: white;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border-radius: 12px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qa-icon .icon-teal {
    color: white;
    background: linear-gradient(135deg, #14b8a6, #0d9488);
    border-radius: 12px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qa-icon .icon-red {
    color: white;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    border-radius: 12px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qa-icon .icon-indigo {
    color: white;
    background: linear-gradient(135deg, #6366f1, #4f46e5);
    border-radius: 12px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qa-icon .icon-pink {
    color: white;
    background: linear-gradient(135deg, #ec4899, #db2777);
    border-radius: 12px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qa-icon .icon-yellow {
    color: white;
    background: linear-gradient(135deg, #eab308, #ca8a04);
    border-radius: 12px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qa-icon .icon-cyan {
    color: white;
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    border-radius: 12px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qa-icon i {
    width: 24px;
    height: 24px;
}

.qa-question {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-zinc-800);
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

.qa-answer {
    color: var(--color-zinc-600);
    line-height: 1.6;
    margin: 0;
    font-size: 0.9rem;
}

/* Q&A Responsive */
@media (max-width: 1200px) and (min-width: 769px) {
    .qa-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.2rem;
        }
    
.qa-card {
    padding: 1.3rem;
        }
    
.qa-icon {
    width: 45px;
        height: 45px;
        margin-bottom: 1rem;
        }
    
.qa-question {
    font-size: 1rem;
        }
        
    .qa-answer {
font-size: 0.85rem;
    }
        }
    
@media (max-width: 768px) {
    .qa-grid {
        grid-template-columns: 1fr;
    gap: 1.2rem;
margin-top: 2rem;
}

.qa-card {
padding: 1.2rem;
}

.qa-icon {
width: 45px;
height: 45px;
margin-bottom: 1rem;
}

.qa-icon i {
width: 18px;
height: 18px;
}

.qa-question {
font-size: 1rem;
}

.qa-answer {
font-size: 0.85rem;
}
}

/* Estrutura Images Grid */
.estrutura-images-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: stretch;
    margin-bottom: 3rem;
}

.estrutura-image-box {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    height: 100%;
    display: flex;
}

.estrutura-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.estrutura-counter-box {
    background-color: #0b1120;
    color: #ffffff;
    padding: 40px;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(11, 17, 32, 0.4);
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.estrutura-counter-box .counter-icon {
    color: #ff4081;
    width: 48px;
    height: 48px;
    margin: 0 auto 20px;
    display: block;
}

.estrutura-counter-box .counter-text {
    font-size: 1.6rem;
    line-height: 1.4;
    font-weight: 500;
}

.estrutura-counter-box .counter-label {
    display: block;
    font-size: 1.1rem;
    color: #94a3b8;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.estrutura-counter-box .counter-badge-wrapper {
    margin: 15px 0;
}

.estrutura-counter-box .message-badge {
    background-color: #ff4081;
    color: white;
    padding: 8px 24px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 2.6rem;
    display: inline-block;
    letter-spacing: 2px;
}

.estrutura-counter-box .highlight-number {
    font-weight: 800;
    color: #38bdf8;
    font-size: 2.2rem;
}

.estrutura-text-bottom {
    max-width: 900px;
    margin: -1.5rem auto 0;
    text-align: center;
    color: #4b5563;
    font-size: 1.15rem;
    line-height: 1.8;
    background: linear-gradient(to bottom, #ffffff, #f8fafc);
    padding: 3.5rem 4rem;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.06), 0 0 0 1px rgba(15, 23, 42, 0.05);
    position: relative;
    z-index: 10;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.estrutura-text-bottom:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.1), 0 0 0 1px rgba(15, 23, 42, 0.05);
}

.estrutura-icon-wrapper {
    width: 64px;
    height: 64px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, #e0f2fe, #dbeafe);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0ea5e9;
    box-shadow: 0 10px 20px rgba(14, 165, 233, 0.15);
    transition: transform 0.3s ease;
}

.estrutura-text-bottom:hover .estrutura-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.estrutura-text-bottom p {
    margin-bottom: 1.5rem;
}

.estrutura-text-bottom p:last-child {
    margin-bottom: 0;
}

@media (max-width: 992px) {
    .estrutura-images-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .estrutura-image-box {
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    .estrutura-text-bottom {
        padding: 2.5rem 1.5rem;
        font-size: 1.05rem;
        margin-top: 0;
    }
    
    .estrutura-counter-box {
        padding: 25px 15px;
    }
    
    .estrutura-counter-box .counter-text {
        font-size: 1.2rem;
    }
    
    .estrutura-counter-box .message-badge {
        font-size: 1.8rem;
        padding: 6px 16px;
        letter-spacing: 1px;
    }
    
    .estrutura-counter-box .highlight-number {
        font-size: 1.6rem;
    }
}