/* Base & Reset */
:root {
    --bg-color: #0b0c10;
    --bg-lighter: #000000;
    --text-main: #c5c6c7;
    --text-light: #ffffff;
    --accent: #0082b3;
    --accent-glow: #00aeef;
    --accent-gradient: linear-gradient(90deg, #0082b3, #00aeef);
    
    --glass-bg: rgba(31, 40, 51, 0.4);
    --glass-border: rgba(0, 174, 239, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
}

html {
    overflow-x: hidden;
    width: 100%;
}

h1, h2, h3, h4 {
    font-family: 'Space Grotesk', sans-serif;
    color: var(--text-light);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Utilities */
.accent { color: var(--accent-glow); }
.accent-gradient {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: var(--accent-glow);
    color: var(--bg-color);
}

.btn-primary:hover {
    background: var(--accent);
}

.btn-glow {
    box-shadow: 0 0 15px rgba(0, 174, 239, 0.4);
}

.btn-glow:hover {
    box-shadow: 0 0 25px rgba(0, 174, 239, 0.7);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--accent-glow);
    border: 1px solid var(--accent-glow);
}

.btn-secondary:hover {
    background: rgba(0, 174, 239, 0.1);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Navbar */
.navbar {
    padding: 1.5rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    background: rgba(11, 12, 16, 0.8);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 45px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    display: block;
}

.logo-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: 1px;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a:not(.btn):hover {
    color: var(--accent-glow);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
}

.mobile-menu-btn span {
    width: 30px;
    height: 3px;
    background: var(--text-light);
    border-radius: 10px;
    transition: all 0.3s linear;
    position: relative;
    transform-origin: 1px;
}

/* Hero Section */
.hero {
    padding-top: 150px;
    padding-bottom: 4rem;
    display: flex;
    align-items: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 174, 239, 0.15) 0%, transparent 70%);
    z-index: -1;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 100%;
}

.hero-container > div {
    min-width: 0;
    max-width: 100%;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(0, 174, 239, 0.1);
    color: var(--accent-glow);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(0, 174, 239, 0.2);
    max-width: 100%;
    white-space: normal;
}

#modalText {
    color: #e5e6e8;
    line-height: 1.7;
    margin-bottom: 2rem;
    text-align: justify;
}

.hero h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
}

/* Robot Card Animation */
.robot-card {
    position: relative;
    overflow: hidden;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    margin-bottom: 2rem;
}

.dot.live {
    width: 10px;
    height: 10px;
    background: #00ff00;
    border-radius: 50%;
    box-shadow: 0 0 10px #00ff00;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.pulse-ring {
    margin: 2rem auto;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 2px solid var(--accent-glow);
    position: relative;
}

.pulse-ring::before, .pulse-ring::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid var(--accent-glow);
    animation: pulse 2s linear infinite;
}

.pulse-ring::after {
    animation-delay: 1s;
}

@keyframes pulse {
    0% { width: 150px; height: 150px; opacity: 1; }
    100% { width: 250px; height: 250px; opacity: 0; }
}

/* Partners Carousel */
.partners-carousel {
    padding: 1rem 0;
    background: var(--bg-color);
    border-top: 1px solid rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
    overflow: hidden;
}

.carousel-title {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-main);
    margin-bottom: 2rem;
    font-weight: 500;
}

.carousel-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
}

.carousel-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: scroll 40s linear infinite;
    gap: 4rem;
    padding-left: 4rem;
}

.carousel-track:hover {
    animation-play-state: paused;
}

.carousel-item {
    width: 120px;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
}

.carousel-item img {
    max-width: 100%;
    max-height: 40px;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.5);
    transition: all 0.3s ease;
}

.carousel-item img:hover {
    filter: grayscale(0%) opacity(1);
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50%)); } /* Translate left by exactly half the track width (one full set + gap) */
}

/* Sections */
.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.performance-section, .tech-section, .cta-section {
    padding: 1rem 0;
}

/* Dashboard */
.dashboard-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
}

.stat-value {
    font-size: 3.5rem;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
    color: var(--accent-glow);
    margin: 1rem 0;
}

.chart-container {
    position: relative;
    height: 300px;
    width: 100%;
    margin-top: 1rem;
}

/* Features */
.charts-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.chart-card-title {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    text-align: left;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 10px;
}

.chart-container-small {
    position: relative;
    height: 250px;
    width: 100%;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--bg-lighter);
    padding: 2rem;
    border-radius: 12px;
    border-top: 3px solid var(--accent-glow);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card .icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
}

/* CTA */
.cta-container {
    text-align: center;
    padding: 4rem 2rem;
}

.cta-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-container p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Footer */
.footer {
    background: var(--bg-lighter);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-top-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
}

.footer-logo-col {
    flex: 0 0 20%;
    min-width: 150px;
    margin-right: 10px;
}

.footer-disclaimer-col {
    flex: 1 1 60%;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    text-align: justify;
    line-height: 1.6;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-col {
    flex: 1 1 250px;
}

.box-content {
    margin-top: 0;
}

.box-content h4.box-title {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 0.5rem;
}

.box-content p {
    font-size: 0.85rem;
    margin-bottom: 0.8rem;
    color: var(--text-main);
    line-height: 1.5;
}

.box-content p b {
    color: var(--text-light);
}

.box-content p i.menu-icon {
    color: var(--accent-glow);
    margin-right: 8px;
    width: 15px;
    text-align: center;
}

.box-content a {
    color: var(--text-main);
    text-decoration: none;
    transition: color 0.3s ease;
}

.box-content a:hover {
    color: var(--accent-glow);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
}
.footer-bottom .list-inline {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-bottom .list-inline li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.footer-bottom .list-inline a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s;
}
.footer-bottom .list-inline a:hover {
    color: var(--accent-glow);
}

/* Responsive */
@media (max-width: 900px) {
    .hero-container, .dashboard-grid, .charts-grid-3 {
        grid-template-columns: 1fr;
    }
    
    .hero {
        text-align: center;
        padding-top: 150px;
    }
    
    .hero-actions {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .mobile-menu-btn {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        width: 30px;
        height: 25px;
        background: transparent;
        border: none;
        cursor: pointer;
        z-index: 101;
        margin-right: 35px; /* Valor testado e aprovado */
    }
    
    .nav-links {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(11, 12, 16, 0.98);
        backdrop-filter: blur(10px);
        justify-content: flex-start;
        align-items: center;
        padding-top: 120px;
        transition: right 0.4s ease-in-out;
        z-index: 100;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        margin: 1.5rem 0;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg);
    }
    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }
    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg);
    }
    
    .hero h1 {
        font-size: 2rem;
    }
}

/* Detalhes dos Gráficos (Abaixo do Canvas) */
.chart-details {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.detail-label {
    color: #8b8c8f;
}

.detail-value {
    color: #e5e6e8;
    font-weight: 500;
}

.highlight-value {
    color: var(--accent-glow);
    font-weight: 600;
    font-size: 1.1rem;
}

/* Card Actions (Botões) */
.card-actions {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.btn-card-outline, .btn-card-primary {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-card-outline {
    background: transparent;
    border: 1px solid rgba(0, 174, 239, 0.2);
    color: var(--accent-glow);
}

.btn-card-outline:hover {
    background: rgba(0, 174, 239, 0.1);
    border-color: var(--accent-glow);
}

.btn-card-primary {
    background: var(--accent-glow);
    color: #0b0c10;
    border: none;
    box-shadow: 0 0 10px rgba(0, 174, 239, 0.2);
}

.btn-card-primary:hover {
    background: #0096cc;
    box-shadow: 0 0 15px rgba(0, 174, 239, 0.5);
    transform: translateY(-2px);
}

.card-disclaimer {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
    margin-top: 0.5rem;
    font-style: italic;
    line-height: 1.4;
}

/* Modal UI */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 12, 16, 0.85);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--bg-lighter);
    width: 100%;
    max-width: 600px;
    border-radius: 12px;
    padding: 2.5rem;
    position: relative;
    transform: translateY(20px);
    transition: all 0.3s ease;
    border: 1px solid var(--glass-border);
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
    max-height: 90vh;
    overflow-y: auto;
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: var(--text-main);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.2s;
}

.modal-close:hover {
    color: var(--accent-glow);
}

/* Efeito Luminoso no Título do Modal */
#modalTitle {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(0, 174, 239, 0.5),
                 0 0 20px rgba(0, 174, 239, 0.3);
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    animation: text-glow-pulse 3s infinite alternate ease-in-out;
}

@keyframes text-glow-pulse {
    from {
        text-shadow: 0 0 10px rgba(0, 174, 239, 0.4),
                     0 0 20px rgba(0, 174, 239, 0.2);
    }
    to {
        text-shadow: 0 0 15px rgba(0, 174, 239, 0.9),
                     0 0 30px rgba(0, 174, 239, 0.6),
                     0 0 45px rgba(0, 174, 239, 0.3);
    }
}

.modal-body {
    margin: 1.5rem 0;
    color: #e5e6e8;
    line-height: 1.7;
}

/* KPI Dashboard Section */
.kpi-section {
    padding: 2rem 0 1rem;
}

.glass-card-glow {
    background: rgba(31, 40, 51, 0.4);
    border: 1px solid rgba(0, 174, 239, 0.2);
    border-radius: 12px;
    padding: 1rem 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5),
                inset 0 -50px 80px -30px rgba(0, 174, 239, 0.15);
    text-align: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.kpi-title {
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 4rem;
    font-weight: 700;
}

.kpi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.kpi-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.kpi-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--accent-glow);
    font-family: 'Space Grotesk', sans-serif;
    margin-bottom: 0.5rem;
}

.kpi-divider {
    width: 90%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 174, 239, 0.6), transparent);
    margin: 1rem 0;
}

.kpi-text {
    font-size: 0.85rem;
    color: #e5e6e8;
    font-weight: 600;
    line-height: 1.4;
    text-transform: uppercase;
    max-width: 220px;
}

.btn-kpi {
    display: inline-block;
    width: 100%;
    padding: 1.5rem;
    font-size: 1.3rem;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 8px;
    letter-spacing: 2px;
    background: var(--accent-glow);
    color: #0b0c10;
}

.btn-kpi:hover {
    background: #0096cc;
    box-shadow: 0 0 20px rgba(0, 174, 239, 0.5);
}

@media (max-width: 900px) {
    .kpi-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 500px) {
    .kpi-grid {
        grid-template-columns: 1fr;
    }
    .kpi-title {
        font-size: 1.5rem;
    }
}

.kpi-icon {
    font-size: 2.5rem;
    color: var(--accent-glow);
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

/* About Enhanced Section */
.about-card-enhanced {
    padding: 3rem 4rem !important;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.about-logo-container {
    flex: 0 0 250px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-floating-logo {
    width: 100%;
    max-width: 250px;
    filter: drop-shadow(0 0 10px rgba(0, 174, 239, 0.3));
    animation: glow-pulse-logo 4s ease-in-out infinite;
}

.about-text-content {
    flex: 1;
}

@keyframes glow-pulse-logo {
    0% {
        filter: drop-shadow(0 0 10px rgba(0, 174, 239, 0.3));
    }
    50% {
        filter: drop-shadow(0 0 25px rgba(0, 174, 239, 0.8));
    }
    100% {
        filter: drop-shadow(0 0 10px rgba(0, 174, 239, 0.3));
    }
}

@media (max-width: 900px) {
    .about-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    .about-logo-container {
        flex: 0 0 auto;
    }
    .about-text-content {
        text-align: center !important;
    }
}

.modal-stats {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

/* Pricing Section */
.pricing-section {
    padding: 2rem 0 1rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.pricing-card {
    display: flex;
    flex-direction: column;
    padding: 2.5rem;
    background: rgba(11, 12, 16, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.pricing-popular {
    border-color: rgba(0, 174, 239, 0.3);
    box-shadow: 0 0 40px rgba(0, 174, 239, 0.1);
    background: rgba(31, 40, 51, 0.6);
}

.plan-title-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.5rem;
}

.pricing-header h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #e5e6e8;
    margin-bottom: 0;
}

.badge-popular {
    background: linear-gradient(45deg, #7b2cbf, #9d4edd);
    color: #fff;
    font-size: 0.75rem;
    font-weight: bold;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
}

.pricing-price {
    margin-top: 1rem;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
}

.price-val {
    display: flex;
    align-items: baseline;
}

.pricing-price .currency {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
}

.pricing-price .amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    margin-left: 0.2rem;
    line-height: 1;
    font-family: 'Space Grotesk', sans-serif;
}

.pricing-price .period {
    font-size: 1.2rem;
    color: #888;
    margin-top: 0.3rem;
    margin-left: 0.2rem;
}

.pricing-body {
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.5rem;
}

.included-title {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 1.5rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    font-size: 1rem;
    color: #e5e6e8;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.pricing-features .feature-disabled {
    color: #666;
    text-decoration: line-through;
}

.feature-check {
    color: #4caf50;
    font-size: 1.2rem;
}

.feature-cross {
    color: #f44336;
    font-size: 1.2rem;
    opacity: 0.5;
}

@media (max-width: 900px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }
}

.modal-stat-box {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.stat-label {
    font-size: 0.85rem;
    color: #8b8c8f;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-value-small {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-glow);
    margin-top: 0.2rem;
}

.modal-footer {
    margin-top: 2rem;
    text-align: right;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.5rem;
}

/* FAQ Section */
.faq-accordion {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: rgba(20, 25, 35, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    overflow: hidden;
    transition: background 0.3s ease;
}

.faq-item.active {
    background: rgba(31, 40, 51, 0.8);
    border-color: rgba(0, 174, 239, 0.3);
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 500;
    color: #e5e6e8;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #fff;
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 250px;
}

.faq-answer-content, .faq-answer-content p {
    color: #aaa;
    line-height: 1.7;
    margin: 0;
    font-size: 1rem;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.05);
}

#whatsapp_chat_widget {
    background-color: #25d366;
    border-radius: 50px;
    padding: 0.6rem 1.2rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    display: flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

#wa-widget-send-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.wh-svg-icon {
    width: 24px;
    height: 24px;
    fill: #ffffff;
}

.wa-text {
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    .wa-text {
        display: none;
    }
    #whatsapp_chat_widget {
        padding: 0.8rem;
        border-radius: 50%;
    }
    .wh-svg-icon {
        width: 30px;
        height: 30px;
    }
}
