:root {
    --primary-color: #004e92;
    --secondary-color: #000428;
    --accent-color: #00c6ff;
    --text-color: #333;
    --light-bg: #f4f7f6;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-color);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    color: var(--secondary-color);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

/* Header */
#main-header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgb(255, 255, 255);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: var(--transition);
}

#main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo h1 {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.logo .highlight {
    color: var(--primary-color);
    font-weight: 800;
}

.logo-img {
    max-height: 60px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--secondary-color);
    transition: var(--transition);
}

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

.btn-nav {
    padding: 8px 20px;
    background: transparent;
    color: var(--primary-color) !important;
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition);
}

.btn-nav:hover {
    background: var(--primary-color);
    color: var(--white) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 78, 146, 0.3);
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: 15px;
    padding-left: 15px;
    border-left: 1px solid #e0e0e0;
}

.lang-flag {
    width: 32px;
    height: 24px;
    border-radius: 4px;
    cursor: pointer;
    opacity: 0.6;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.lang-flag:hover {
    opacity: 1;
    transform: scale(1.15);
}

.lang-flag.active {
    opacity: 1;
    border-color: var(--primary-color);
    box-shadow: 0 2px 10px rgba(0, 78, 146, 0.4);
    transform: scale(1.1);
}

/* Flag images via CDN */
.lang-flag[data-lang="pt"] {
    background-image: url('https://flagcdn.com/w40/br.png');
}

.lang-flag[data-lang="en"] {
    background-image: url('https://flagcdn.com/w40/us.png');
}

.lang-flag[data-lang="es"] {
    background-image: url('https://flagcdn.com/w40/es.png');
}

@media (max-width: 768px) {
    .lang-switcher {
        margin-left: 0;
        padding-left: 0;
        border-left: none;
        justify-content: center;
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid #e0e0e0;
        width: 100%;
    }

    .lang-flag {
        width: 36px;
        height: 27px;
    }
}

/* Burger Menu */
.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: var(--secondary-color);
    margin: 5px;
    transition: var(--transition);
}

/* Hero Section */
#hero {
    height: 90vh; /* Reduced from 100vh for better fold visibility */
    min-height: 600px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px; /* Account for fixed header */
}

#hero.hero-gradient-animated {
    background: linear-gradient(-45deg, #000428, #004e92, #001a3a, #003d66, #000428);
    background-size: 400% 400%;
    animation: gradientShift 20s ease infinite;
}

#hero.hero-gradient-animated .hero-text h2 {
    color: var(--accent-color);
    margin-top: 80px;
}

#hero.hero-gradient-animated .hero-text h1 {
    background: linear-gradient(135deg, #ffffff, var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

#hero.hero-gradient-animated .hero-text p {
    color: rgba(255, 255, 255, 0.9);
}

#hero.hero-gradient-animated .hero-btns .btn-primary {
    background: linear-gradient(135deg, var(--accent-color), #2ecc71);
    color: white;
    border: none;
}

#hero.hero-gradient-animated .hero-btns .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(46, 204, 113, 0.4);
}

#hero.hero-gradient-animated .hero-btns .btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

#hero.hero-gradient-animated .hero-btns .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

#hero.hero-gradient-animated .hero-btns .btn-light {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

#hero.hero-gradient-animated .hero-btns .btn-light:hover {
    background: rgba(255, 255, 255, 0.25);
}

/* Hero Microphone Animation */
.hero-mic-container {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-mic-glow {
    position: absolute;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(46, 204, 113, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    animation: micGlow 3s ease-in-out infinite;
}

.hero-mic-icon {
    position: relative;
    z-index: 2;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    border: 2px solid rgba(46, 204, 113, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.hero-mic-icon i {
    font-size: 3.5rem;
    background: linear-gradient(135deg, #ffffff, var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: micPulse 2s ease-in-out infinite;
}

.hero-mic-waves {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.mic-wave {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid rgba(46, 204, 113, 0.3);
    border-radius: 50%;
    animation: micWaveExpand 3s ease-out infinite;
}

.mic-wave:nth-child(1) {
    width: 140px;
    height: 140px;
    animation-delay: 0s;
}

.mic-wave:nth-child(2) {
    width: 140px;
    height: 140px;
    animation-delay: 1s;
}

.mic-wave:nth-child(3) {
    width: 140px;
    height: 140px;
    animation-delay: 2s;
}

@keyframes micGlow {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.8;
    }
}

@keyframes micPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

@keyframes micWaveExpand {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    100% {
        transform: translate(-50%, -50%) scale(2.5);
        opacity: 0;
    }
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    z-index: 2;
}

.hero-text {
    flex: 1;
    padding-right: 40px; /* Reduced padding */
}

.hero-text h2 {
    font-size: 1.2rem; /* Reduced size */
    color: var(--primary-color);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

.hero-text h1 {
    font-size: 3rem; /* Slightly reduced for better fit */
    line-height: 1.1;
    margin-bottom: 20px;
    background: -webkit-linear-gradient(var(--secondary-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text p {
    font-size: 1.05rem; /* Better readability */
    margin-bottom: 35px;
    color: #555; /* Slightly darker for contrast */
    max-width: 550px;
    line-height: 1.7;
}

.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
    justify-content: flex-start;
}

.hero-btns .btn {
    white-space: nowrap;
    padding: 12px 24px;
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .hero-btns {
        justify-content: center;
    }

    .hero-btns .btn {
        padding: 10px 20px;
        font-size: 0.8rem;
    }
}

.btn {
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    font-size: 0.9rem;
    display: inline-block;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background: transparent;
    color: var(--primary-color);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
}

.hero-visual {
    flex: 1;
    position: relative;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Scroll Down */
.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    color: var(--primary-color);
    font-size: 2rem;
    cursor: pointer;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0) translateX(-50%);}
    40% {transform: translateY(-10px) translateX(-50%);}
    60% {transform: translateY(-5px) translateX(-50%);}
}

/* Sections */
section {
    padding: 70px 0; /* Reduced general section padding */
}

.section-title {
    text-align: center;
    margin-bottom: 50px; /* Reduced margin */
}

.section-title h3 {
    color: var(--accent-color);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title h2 {
    font-size: 2.2rem; /* Balanced heading size */
    margin: 10px 0 15px;
}

.section-title p {
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* Stats Bar with Slider */
.stats-bar {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    padding: 60px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.stats-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.03)"/></svg>') repeat;
    background-size: 30px 30px;
    pointer-events: none;
}

.stats-bar .container {
    position: relative;
    z-index: 1;
}

.stats-header {
    text-align: center;
    margin-bottom: 40px;
}

.stats-header h3 {
    color: white;
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
}

/* Slider inside Stats Bar */
.slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
}

.slider-container {
    overflow: hidden;
    flex: 1;
    cursor: grab;
    user-select: none;
}

.slider-container:active {
    cursor: grabbing;
}

.slider-track {
    display: flex;
    gap: 20px;
    transition: transform 0.4s ease;
}

.slider-item {
    flex: 0 0 calc(33.333% - 14px);
    min-width: calc(33.333% - 14px);
}

.slider-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.slider-card:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--accent-color);
    box-shadow: 0 0 25px rgba(0, 198, 255, 0.3), inset 0 0 20px rgba(0, 198, 255, 0.05);
}

.slider-card:hover i {
    transform: scale(1.1);
    text-shadow: 0 0 30px rgba(0, 198, 255, 0.8);
}

.slider-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 15px;
    display: block;
    text-shadow: 0 0 20px rgba(0, 198, 255, 0.5);
    transition: all 0.3s ease;
}

.slider-card h4 {
    font-size: 1.15rem;
    margin-bottom: 12px;
    color: white;
    font-weight: 600;
}

.slider-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.slider-nav {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
    backdrop-filter: blur(5px);
}

.slider-nav:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(0, 198, 255, 0.4);
}

.slider-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

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

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.6);
}

.slider-dot.active {
    background: var(--accent-color);
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(0, 198, 255, 0.5);
}

/* Slider Responsive */
@media (max-width: 992px) {
    .slider-item {
        flex: 0 0 calc(50% - 10px);
        min-width: calc(50% - 10px);
    }

    .slider-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .stats-header h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 576px) {
    .slider-item {
        flex: 0 0 100%;
        min-width: 100%;
    }

    .slider-wrapper {
        gap: 8px;
    }

    .slider-nav {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .slider-card {
        padding: 25px 20px;
    }

    .slider-card i {
        font-size: 2rem;
    }

    .slider-card h4 {
        font-size: 1rem;
    }

    .slider-card p {
        font-size: 0.85rem;
    }

    .stats-bar {
        padding: 40px 0;
    }

    .stats-header h3 {
        font-size: 1.4rem;
    }
}

/* How it Works (Steps) */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.step-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    border: 1px solid #eee;
    transition: var(--transition);
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-color: var(--primary-color);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 800;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.step-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    margin-top: 10px;
}

.step-card h3 {
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.step-card p {
    color: #666;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: center;
    transition: var(--transition);
    border: 1px solid #eee;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.icon-box {
    width: 70px;
    height: 70px;
    background: rgba(0, 198, 255, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.feature-card h4 {
    margin-bottom: 15px;
    color: var(--secondary-color);
}

/* AXONCAST Section */
.dark-section {
    background: var(--secondary-color);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.light-section {
    background: transparent;
    position: relative;
    overflow: visible;
}

.split-layout {
    display: flex;
    align-items: center;
    gap: 50px;
}

.text-block {
    flex: 1;
}

.text-block h2 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.text-block p {
    color: #ccc;
    margin-bottom: 30px;
}

.badge {
    background: var(--accent-color);
    color: var(--secondary-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 15px;
}

.check-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.check-list i {
    color: var(--accent-color);
}

.image-block {
    flex: 1;
}

.btn-light {
    background: var(--white);
    color: var(--secondary-color);
    margin-top: 30px;
}

.btn-light:hover {
    background: var(--accent-color);
    color: var(--white);
}

/* TV Section */
.tv-content {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.tv-card {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    width: 300px;
    transition: var(--transition);
}

.tv-card:hover {
    background: var(--primary-color);
    color: var(--white);
}

.tv-card:hover h3 {
    color: var(--white);
}

.tv-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.tv-card:hover i {
    color: var(--white);
}

/* Comparison Table */
.comparison-table-wrapper {
    overflow-x: auto;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    border-radius: 15px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
}

.comparison-table th, .comparison-table td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.comparison-table th {
    background: #f8f9fa;
    color: var(--secondary-color);
    font-weight: 700;
}

.comparison-table .highlight-col {
    background: var(--primary-color);
    color: var(--white);
}

.comparison-table tr:hover {
    background: #f1f1f1;
}

.comparison-table tr:hover td:last-child {
    background: #003d73; /* Darker shade of primary */
    color: var(--white);
}

.comparison-table td:last-child {
    background: var(--primary-color);
    font-weight: 600;
    color: var(--white);
    box-shadow: -5px 0 20px rgba(0,0,0,0.1);
}

/* Plans Section */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

/* Offer Countdown */
.offer-countdown {
    text-align: center;
    margin-bottom: 30px;
}

.offer-countdown p {
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 15px;
    text-transform: uppercase;
}

#countdown {
    display: flex;
    justify-content: center;
    gap: 15px;
    font-family: 'Montserrat', sans-serif;
}

.time-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--primary-color);
    color: var(--white);
    padding: 10px 15px;
    border-radius: 8px;
    min-width: 70px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.time-box span:first-child {
    font-size: 1.5rem;
    font-weight: 800;
}

.time-box .label {
    font-size: 0.6rem;
    text-transform: uppercase;
    opacity: 0.8;
}

.separator {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    align-self: flex-start;
    margin-top: 5px;
}

/* Billing Toggle */
.billing-toggle-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: var(--secondary-color);
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input { 
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked + .slider {
    background-color: var(--primary-color);
}

input:focus + .slider {
    box-shadow: 0 0 1px var(--primary-color);
}

input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.discount-badge {
    background: #e74c3c;
    color: white;
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 10px;
    margin-left: 5px;
    vertical-align: middle;
}

/* Info Icon Tooltip */
.info-icon {
    color: #ccc;
    font-size: 0.9rem;
    cursor: help;
    margin-left: 5px;
    transition: var(--transition);
}

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

/* Plan Price Adjustments */
.price-container {
    min-height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    color: var(--secondary-color);
    line-height: 0.9;
    margin-bottom: 5px;
}

.price .currency {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 5px;
    margin-right: 2px;
}

.price .amount {
    font-size: 4rem; /* Much larger */
    font-weight: 800;
    letter-spacing: -2px;
}

.price .period {
    font-size: 1rem;
    font-weight: 600;
    color: #888;
    align-self: flex-end;
    margin-bottom: 8px;
    margin-left: 2px;
}

.old-price {
    font-size: 1.2rem;
    color: #e74c3c; /* Red to show cut price */
    text-decoration: line-through;
    margin-bottom: 0;
    opacity: 0;
    height: 0;
    transition: var(--transition);
    font-weight: 600;
}

.plan-card.annual .old-price {
    opacity: 1;
    height: auto;
    margin-bottom: 5px;
}

.discount-tag {
    background: #e74c3c;
    color: white;
    font-size: 0.8rem;
    font-weight: 800;
    padding: 5px 15px;
    border-radius: 50px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition);
}

.billing-period-text {
    font-size: 0.85rem;
    color: #666;
    margin-top: 5px;
    font-weight: 500;
}

.plan-card {
    padding: 40px;
    text-align: center;
    border-radius: 20px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.glass-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
}

.plan-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 40px rgba(0, 78, 146, 0.2);
}

.plan-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
    z-index: 1;
    background: #fff;
}

.plan-card.featured:hover {
    transform: scale(1.05) translateY(-15px);
}

.popular-tag {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--accent-color);
    color: var(--secondary-color);
    padding: 5px 20px;
    font-size: 0.8rem;
    font-weight: 700;
    border-bottom-left-radius: 15px;
}

.plan-header {
    margin-bottom: 30px;
}

.plan-header h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary-color);
}

.price span {
    font-size: 1rem;
    font-weight: 400;
    color: #666;
}

.plan-features {
    text-align: left;
    margin-bottom: 30px;
}

.plan-features li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.plan-features i {
    color: var(--accent-color);
}

/* AXONCAST Image Enhancements */
.axon-image-wrapper {
    position: relative;
    /* Removed fixed height and overflow to allow content to size the container */
    display: inline-block; /* Wraps tightly around the image */
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    transform-style: preserve-3d;
    width: 100%; /* Take full width of parent */
    max-width: 800px; /* Limit max width to prevent it getting too huge */
    margin: 0 auto; /* Center it */
}

.axon-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
    position: relative;
    z-index: 2;
}

.glow-effect {
    position: absolute;
    top: 10px; left: 10px; right: 10px; bottom: 10px; /* Inset slightly so blur extends out */
    background: linear-gradient(45deg, var(--accent-color), var(--primary-color));
    z-index: 1;
    filter: blur(50px); /* Stronger blur */
    opacity: 0.7;
    animation: glow 3s ease-in-out infinite alternate;
    width: 100%;
    height: 100%;
    transform: translate(-10px, -10px); /* Re-center the glow behind image */
}

@keyframes glow {
    from { opacity: 0.3; transform: scale(0.95); }
    to { opacity: 0.6; transform: scale(1.05); }
}

/* Login Button in Header */
.btn-login {
    border-color: var(--accent-color) !important;
    color: var(--accent-color) !important;
}

.btn-login:hover {
    background: var(--accent-color) !important;
    color: #fff !important;
    border-color: var(--accent-color) !important;
}

.btn-login i {
    margin-right: 5px;
}

/* ============================================= */
/* FAB de Atendimento (Support Floating Button) */
/* ============================================= */
.support-fab {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: 12px;
}

.fab-main {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 10;
}

.fab-main::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    z-index: -1;
    animation: fabPulse 2s infinite;
}

@keyframes fabPulse {
    0% { transform: scale(1); opacity: 0.7; }
    100% { transform: scale(1.6); opacity: 0; }
}

.fab-main i:last-child {
    display: none;
}

.fab-main:hover {
    transform: scale(1.1);
}

/* Tooltip for FAB main button */
.fab-main::after {
    content: 'Atendimento Online';
    position: absolute;
    right: 70px;
    background: rgba(0, 0, 0, 0.85);
    color: #fff;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.fab-main:hover::after {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.support-fab.active .fab-main::after {
    display: none;
}

.support-fab.active .fab-main {
    background: #e74c3c;
    transform: rotate(180deg);
}

.support-fab.active .fab-main::before {
    animation: none;
}

.support-fab.active .fab-main i:first-child {
    display: none;
}

.support-fab.active .fab-main i:last-child {
    display: block;
}

/* FAB Options */
.fab-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.support-fab.active .fab-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.fab-option {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fff;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    text-decoration: none;
}

.fab-option:hover {
    transform: scale(1.15);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.fab-option.whatsapp {
    background: #25d366;
    color: #fff;
}

.fab-option.whatsapp:hover {
    background: #20b858;
}

/* Tooltip for FAB options */
.fab-option::before {
    content: attr(data-tooltip);
    position: absolute;
    right: 60px;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.2s ease;
}

.fab-option:hover::before {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Animation delays for staggered effect */
.support-fab.active .fab-option:nth-child(1) { transition-delay: 0.05s; }
.support-fab.active .fab-option:nth-child(2) { transition-delay: 0.1s; }
.support-fab.active .fab-option:nth-child(3) { transition-delay: 0.15s; }
.support-fab.active .fab-option:nth-child(4) { transition-delay: 0.2s; }

/* Mobile adjustments */
@media (max-width: 768px) {
    .support-fab {
        bottom: 20px;
        right: 20px;
    }

    .fab-main {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }

    .fab-option {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .fab-option::before {
        display: none;
    }

    .fab-main::after {
        display: none;
    }
}

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

/* Testimonials Slider */
.testimonials-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
    padding: 20px 0;
}

.testimonials-slider {
    overflow: hidden;
    flex: 1;
    cursor: grab;
    user-select: none;
    padding: 10px 0;
}

.testimonials-slider:active {
    cursor: grabbing;
}

.testimonials-track {
    display: flex;
    gap: 25px;
    transition: transform 0.5s ease;
}

.testimonial-slide {
    flex: 0 0 calc(33.333% - 17px);
    min-width: calc(33.333% - 17px);
}

.testimonial-card {
    background: white;
    padding: 35px 30px;
    /* border-radius: 20px; */
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    position: relative;
    border: none;
    height: 100%;
    transition: all 0.3s ease;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    /* border-radius: 20px 20px 0 0; */
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.quote-icon {
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    opacity: 0.3;
}

.testimonial-card p {
    font-style: italic;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.7;
    font-size: 0.95rem;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.client-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.client-avatar i {
    color: white;
    font-size: 1.2rem;
}

.client-details {
    display: flex;
    flex-direction: column;
}

.client-details strong {
    color: var(--secondary-color);
    font-size: 1rem;
    font-weight: 700;
}

.client-details span {
    font-size: 0.85rem;
    color: #888;
}

.testimonial-nav {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    background: white;
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    z-index: 10;
    position: relative;
}

.testimonial-nav:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.testimonial-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: none;
}

.testimonials-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 35px;
}

.testimonials-dots .slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.testimonials-dots .slider-dot:hover {
    background: var(--accent-color);
}

.testimonials-dots .slider-dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

/* Testimonials Responsive */
@media (max-width: 992px) {
    .testimonial-slide {
        flex: 0 0 calc(50% - 13px);
        min-width: calc(50% - 13px);
    }

    .testimonial-nav {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .testimonial-slide {
        flex: 0 0 100%;
        min-width: 100%;
    }

    .testimonials-slider-wrapper {
        gap: 10px;
    }

    .testimonial-nav {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }

    .testimonial-card {
        padding: 25px 20px;
    }

    .testimonial-card p {
        font-size: 0.9rem;
    }
}

/* CTA Section */
#cta {
    background: linear-gradient(rgba(0,4,40,0.8), rgba(0,4,40,0.8)), url('https://images.unsplash.com/photo-1478737270239-2f63b8624843?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-attachment: fixed;
    text-align: center;
    color: var(--white);
}

.cta-content h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
    margin-top: 30px;
}

/* Video Presentation */
.video-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.video-content {
    width: 100%;
    max-width: 800px;
}

.video-content h2 {
    color: white;
    margin-bottom: 15px;
}

.video-content p {
    color: #ccc;
    margin-bottom: 30px;
}

/* Video with Animated Glow Border */
.video-glow-wrapper {
    position: relative;
    border-radius: 24px;
    padding: 4px;
    background: linear-gradient(90deg,
        var(--primary-color),
        var(--accent-color),
        #00ff88,
        var(--accent-color),
        var(--primary-color)
    );
    background-size: 400% 100%;
    animation: borderGlow 4s ease-in-out infinite;
}

.video-glow-wrapper::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: inherit;
    background-size: inherit;
    animation: inherit;
    border-radius: 26px;
    filter: blur(15px);
    opacity: 0.7;
    z-index: -1;
}

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

.youtube-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    background: #000;
}

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

/* Features Tabs (Slider) */
.tabs-container {
    margin-top: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    overflow: hidden;
}

.tabs-nav {
    display: flex;
    background: #f8f9fa;
    border-bottom: 1px solid #eee;
    overflow-x: auto; /* Allow scrolling on mobile */
}

.tab-btn {
    flex: 1;
    padding: 20px;
    border: none;
    background: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: #666;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    white-space: nowrap;
}

.tab-btn:hover {
    color: var(--primary-color);
    background: rgba(0, 78, 146, 0.05);
}

.tab-btn.active {
    color: var(--primary-color);
    background: white;
    border-bottom: 3px solid var(--primary-color);
}

.tabs-content {
    padding: 40px;
    min-height: 400px; /* Prevent layout shift */
    position: relative;
}

.tab-pane {
    position: absolute;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    height: 0;
    overflow: hidden;
    transition: opacity 0.4s ease;
}

.tab-pane.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    height: auto;
    overflow: visible;
}

.tab-grid {
    display: flex;
    align-items: center;
    gap: 50px;
}

.tab-text {
    flex: 1;
}

.tab-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.tab-text p {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.8;
}

.check-list-dark li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #444;
    font-weight: 500;
}

.check-list-dark i {
    color: var(--accent-color);
}

.tab-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.tab-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    position: relative;
    z-index: 1;
    box-shadow:
        0 0 20px rgba(0, 198, 255, 0.3),
        0 0 40px rgba(0, 78, 146, 0.2);
    animation: shadowGlow 5s ease-in-out infinite;
}

@keyframes shadowGlow {
    0%, 100% {
        box-shadow:
            0 0 20px rgba(0, 198, 255, 0.3),
            0 0 40px rgba(0, 78, 146, 0.2);
    }
    25% {
        box-shadow:
            8px -8px 25px rgba(0, 198, 255, 0.35),
            12px -12px 45px rgba(0, 78, 146, 0.25);
    }
    50% {
        box-shadow:
            0 0 30px rgba(0, 212, 255, 0.35),
            0 0 50px rgba(0, 136, 255, 0.25);
    }
    75% {
        box-shadow:
            -8px 8px 25px rgba(0, 198, 255, 0.35),
            -12px 12px 45px rgba(0, 78, 146, 0.25);
    }
}

/* Phone Mockup Small - for tabs */
.phone-mockup-small {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-frame-small {
    width: 180px;
    height: 360px;
    background: #000;
    border-radius: 30px;
    border: 6px solid #222;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 20px 40px rgba(0,0,0,0.3),
        0 0 20px rgba(0, 198, 255, 0.2);
}

.phone-frame-small::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 6px;
    background: #333;
    border-radius: 10px;
    z-index: 2;
}

.phone-screen-small {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    border-radius: 24px;
}

.mockup-placeholder {
    width: 100%;
    height: 300px;
    background: #eee;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #999;
    font-size: 1.5rem;
    border: 2px dashed #ddd;
}

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

@media (max-width: 768px) {
    .tab-grid {
        flex-direction: column;
        text-align: center;
    }
    
    .check-list-dark li {
        justify-content: center;
    }
    
    .tab-image {
        order: -1; /* Image first on mobile */
        margin-bottom: 30px;
    }
}
.audio-samples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.audio-card {
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid #eee;
    transition: var(--transition);
}

.audio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: var(--accent-color);
}

.play-btn {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
}

.play-btn:hover {
    background: var(--accent-color);
    transform: scale(1.1);
}

.audio-info h4 {
    margin-bottom: 5px;
    color: var(--secondary-color);
    font-size: 1rem;
}

.audio-wave {
    display: flex;
    gap: 3px;
    height: 20px;
    align-items: flex-end;
}

.audio-wave span {
    width: 3px;
    background: #ccc;
    animation: wave 1s infinite ease-in-out;
    height: 5px;
}

.audio-card.playing .audio-wave span {
    background: var(--accent-color);
}

.audio-card.playing .audio-wave span:nth-child(1) { height: 100%; animation-delay: 0.1s; }
.audio-card.playing .audio-wave span:nth-child(2) { height: 60%; animation-delay: 0.2s; }
.audio-card.playing .audio-wave span:nth-child(3) { height: 80%; animation-delay: 0.3s; }
.audio-card.playing .audio-wave span:nth-child(4) { height: 40%; animation-delay: 0.4s; }
.audio-card.playing .audio-wave span:nth-child(5) { height: 90%; animation-delay: 0.5s; }

/* Apps & Alexa Section */
.apps-grid {
    display: flex;
    flex-direction: column;
    gap: 80px;
    margin-top: 50px;
}

.app-showcase {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.app-showcase.reverse {
    flex-direction: row-reverse;
}

.app-content {
    flex: 1;
    color: white;
}

.app-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.app-content h4 {
    font-size: 2rem;
    color: white;
    margin-bottom: 15px;
}

.app-features {
    margin-top: 20px;
}

.app-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ccc;
}

.app-features i {
    color: var(--accent-color);
}

/* Phone Mockup */
.phone-mockup {
    width: 280px;
    height: 550px;
    background: #000;
    border-radius: 40px;
    border: 8px solid #333;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.phone-mockup .screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}

.phone-mockup .screen::before {
    content: 'APP RADIO';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    color: rgba(255,255,255,0.1);
    font-weight: 900;
    font-size: 2rem;
    transform: translate(-50%, -50%) rotate(-45deg);
}

/* Echo Dot Mockup */
.echo-mockup {
    width: 250px;
    height: 150px;
    background: #444;
    border-radius: 50%;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    background: radial-gradient(circle at 30% 30%, #666, #222);
}

.echo-mockup .ring {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: cyan;
    border-radius: 0 0 150px 150px;
    box-shadow: 0 0 20px cyan;
    animation: alexa-pulse 2s infinite;
}

@keyframes alexa-pulse {
    0% { opacity: 0.5; box-shadow: 0 0 10px cyan; }
    50% { opacity: 1; box-shadow: 0 0 30px cyan; }
    100% { opacity: 0.5; box-shadow: 0 0 10px cyan; }
}

@media (max-width: 768px) {
    .app-showcase, .app-showcase.reverse {
        flex-direction: column;
        text-align: center;
    }
    
    .app-content {
        order: 1;
    }
    
    .phone-mockup, .echo-mockup {
        order: 2;
    }
    
    .app-features li {
        justify-content: center;
    }
}

/* Active Menu Item */
.nav-links a.active {
    color: var(--primary-color);
    font-weight: 600;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent-color);
    border-radius: 2px;
}

.nav-links li a {
    position: relative;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #ccc;
    padding: 80px 0 20px;
    margin: 0;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-about {
    padding-right: 30px;
}

.footer-about .footer-logo {
    max-width: 180px;
    margin-bottom: 20px;
}

.footer-about h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.footer-about p {
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    font-size: 0.95rem;
}

.footer-about .company-years {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 15px;
}

.footer-section h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 2px;
}

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

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-section ul li a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-section ul li a i {
    font-size: 0.8rem;
    color: var(--accent-color);
}

.footer-contact-info {
    margin-top: 20px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: rgba(255,255,255,0.8);
}

.footer-contact-item i {
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 1rem;
    flex-shrink: 0;
}

.footer-section p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-top: 10px;
}

.footer-contact-item a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-item a:hover {
    color: var(--accent-color);
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
}

.footer-bottom-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--accent-color);
}

/* Fix for potential white space at bottom */
html {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body::after {
    content: none;
}

.footer-cols {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.copyright {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    font-size: 0.85rem;
    margin: 0;
}

.copyright p {
    margin: 0;
    padding: 0;
}

@media (max-width: 992px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .footer-main {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        right: 0;
        height: 92vh;
        top: 8vh;
        background-color: var(--white);
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 50%;
        transform: translateX(100%);
        transition: transform 0.5s ease-in;
        box-shadow: -2px 0 5px rgba(0,0,0,0.1);
    }
    
    .nav-links li {
        opacity: 0;
    }
    
    .burger {
        display: block;
    }
    
    .nav-active {
        transform: translateX(0%);
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-text {
        padding-right: 0;
        margin-bottom: 50px;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .split-layout {
        flex-direction: column;
    }
    
    .tv-content {
        flex-direction: column;
        align-items: center;
    }
}

@keyframes navLinkFade {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
}
.toggle .line2 {
    opacity: 0;
}
.toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* ===== MODERN PRICING SECTION ===== */
.pricing-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.pricing-section .section-title {
    margin-bottom: 40px;
}

.pricing-section .section-title h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.pricing-section .section-title p {
    font-size: 1.1rem;
    color: #666;
}

/* Billing Toggle */
.billing-toggle-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 50px;
}

.billing-toggle-box {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #ffffff;
    padding: 8px 12px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
}

.billing-option {
    font-size: 1rem;
    font-weight: 600;
    color: #888;
    cursor: pointer;
    padding: 10px 20px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.billing-option.active {
    background: var(--primary-color);
    color: #ffffff;
}

.billing-option .discount-pill {
    background: #e74c3c;
    color: #fff;
    font-size: 0.7rem;
    padding: 3px 8px;
    border-radius: 20px;
    margin-left: 8px;
    font-weight: 700;
}

.billing-toggle-switch {
    position: relative;
    width: 56px;
    height: 30px;
    background: #ddd;
    border-radius: 30px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.billing-toggle-switch.active {
    background: var(--primary-color);
}

.billing-toggle-switch .toggle-knob {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 24px;
    height: 24px;
    background: #fff;
    border-radius: 50%;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.billing-toggle-switch.active .toggle-knob {
    transform: translateX(26px);
}

.billing-info {
    margin-top: 15px;
    text-align: center;
}

.billing-info .savings-text {
    color: #27ae60;
    font-weight: 600;
    font-size: 0.95rem;
}

.billing-info .savings-text i {
    margin-right: 5px;
}

/* Pricing Grid */
/* ===== Pricing Slider ===== */
.pricing-slider-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.pricing-slider-viewport {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) rgba(0, 78, 146, 0.08);
    padding-bottom: 8px;
}

.pricing-slider-viewport::-webkit-scrollbar {
    height: 8px;
}
.pricing-slider-viewport::-webkit-scrollbar-track {
    background: rgba(0, 78, 146, 0.08);
    border-radius: 10px;
}
.pricing-slider-viewport::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.pricing-slider-track {
    display: flex;
}

.pricing-slider-slide {
    min-width: calc(100% / 3);
    max-width: calc(100% / 3);
    padding: 20px 12px;
    display: flex;
    justify-content: center;
    box-sizing: border-box;
    flex-shrink: 0;
    scroll-snap-align: start;
}

.pricing-slider-hint {
    text-align: center;
    margin: 4px 0 18px;
    font-size: 0.95rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    animation: pricingHintPulse 2.4s ease-in-out infinite;
}
.pricing-slider-hint i {
    animation: pricingHintArrows 1.8s ease-in-out infinite;
    font-size: 1.05rem;
}
@keyframes pricingHintPulse {
    0%, 100% { opacity: 0.65; }
    50% { opacity: 1; }
}
@keyframes pricingHintArrows {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-4px); }
    75% { transform: translateX(4px); }
}

.pricing-slider-slide .pricing-card {
    width: 100%;
}

/* Slider Navigation Arrows */
.pricing-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    font-size: 1.1rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 78, 146, 0.15);
    backdrop-filter: blur(10px);
}

.pricing-slider-nav:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 78, 146, 0.3);
}

.pricing-slider-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: translateY(-50%);
}

.pricing-slider-nav:disabled:hover {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(0, 78, 146, 0.15);
}

.pricing-slider-prev { left: 0; }
.pricing-slider-next { right: 0; }

/* Slider Dots */
.pricing-slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
}

.pricing-slider-dots .pricing-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #ccc;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.pricing-slider-dots .pricing-dot:hover {
    border-color: var(--primary-color);
}

.pricing-slider-dots .pricing-dot.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: scale(1.2);
}

/* Flex Plan Card Specific */
.pricing-card.flex-card {
    background: linear-gradient(145deg, #ffffff 0%, #f0f7ff 100%);
    border: 2px solid var(--primary-color);
    position: relative;
    overflow: visible;
}

.pricing-card.flex-card:hover {
    border-color: var(--accent-color);
    box-shadow: 0 25px 60px rgba(0, 78, 146, 0.2), 0 0 0 4px rgba(0, 198, 255, 0.1);
}

.flex-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-color) 0%, #0066b3 100%);
    color: #fff;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 78, 146, 0.4);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
}

.flex-badge i {
    font-size: 0.7rem;
}

.pricing-card.flex-card .price-from {
    display: block;
    font-size: 0.8rem;
    color: #888;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.pricing-card.flex-card .price-main-row {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.flex-description {
    background: linear-gradient(135deg, rgba(0, 78, 146, 0.06) 0%, rgba(0, 198, 255, 0.06) 100%);
    border-radius: 14px;
    padding: 16px 18px;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 78, 146, 0.1);
}

.flex-description p {
    font-size: 0.88rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.flex-description i {
    color: var(--primary-color);
    margin-right: 4px;
}

/* Flex CTA Button */
.pricing-btn.btn-flex-pricing {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0066b3 100%);
    color: #ffffff;
    border-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 1.05rem;
}

.pricing-btn.btn-flex-pricing:hover {
    background: linear-gradient(135deg, #0066b3 0%, var(--primary-color) 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 78, 146, 0.35);
}

.pricing-btn.btn-flex-pricing i {
    font-size: 0.95rem;
}

/* Responsive Pricing Slider */
@media (max-width: 1100px) {
    .pricing-slider-slide {
        min-width: 50%;
        max-width: 50%;
    }
}

@media (max-width: 700px) {
    .pricing-slider-slide {
        min-width: calc(100% - 50px);
        max-width: calc(100% - 50px);
    }

    .pricing-slider-wrapper {
        padding: 0 45px;
    }

    .pricing-slider-nav {
        width: 40px;
        height: 40px;
        font-size: 0.95rem;
    }
}

/* Pricing Card */
.pricing-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px 35px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(0, 78, 146, 0.15);
    border-color: var(--primary-color);
}

/* Featured Card */
.pricing-card.featured {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0066b3 100%);
    border: none;
    z-index: 2;
    box-shadow: 0 30px 60px rgba(0, 78, 146, 0.3);
}

.pricing-card.featured:hover {
    transform: translateY(-12px);
    box-shadow: 0 35px 70px rgba(0, 78, 146, 0.35);
}

.pricing-card.featured * {
    color: #ffffff;
}

.pricing-card.featured .pricing-features li {
    color: rgba(255, 255, 255, 0.9);
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.pricing-card.featured .pricing-features i {
    color: var(--accent-color);
}

/* Popular Badge */
.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #00c6ff 0%, #0072ff 100%);
    color: #fff;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 198, 255, 0.4);
    white-space: nowrap;
}

/* Plan Name */
.pricing-card .plan-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 8px;
    text-align: center;
}

.pricing-card .plan-desc {
    font-size: 0.9rem;
    color: #888;
    text-align: center;
    margin-bottom: 25px;
}

.pricing-card.featured .plan-name {
    color: #ffffff;
}

.pricing-card.featured .plan-desc {
    color: rgba(255, 255, 255, 0.7);
}

/* Pricing Display */
.pricing-display {
    text-align: center;
    padding: 25px 0;
    margin-bottom: 25px;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
    min-height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.pricing-card.featured .pricing-display {
    border-color: rgba(255, 255, 255, 0.15);
}

/* Preço antigo riscado */
.pricing-display .old-price {
    font-size: 1.3rem;
    color: #999;
    text-decoration: line-through;
    margin-bottom: 5px;
    opacity: 0;
    height: 0;
    transition: all 0.3s ease;
}

.pricing-card.featured .pricing-display .old-price {
    color: rgba(255, 255, 255, 0.5);
}

.pricing-display.annual .old-price {
    opacity: 1;
    height: auto;
    margin-bottom: 8px;
}

/* Container do preço principal */
.price-main {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    transition: all 0.3s ease;
}

.pricing-display .currency {
    font-size: 1.5rem;
    font-weight: 700;
    vertical-align: top;
    margin-right: 2px;
    margin-top: 8px;
}

.pricing-display .amount {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -2px;
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

.pricing-card.featured .pricing-display .amount {
    color: #ffffff;
}

.pricing-display .period {
    font-size: 0.95rem;
    color: #888;
    margin-left: 3px;
    align-self: flex-end;
    margin-bottom: 5px;
}

.pricing-card.featured .pricing-display .period {
    color: rgba(255, 255, 255, 0.7);
}

/* Parcelamento */
.pricing-display .installment {
    font-size: 0.85rem;
    color: #666;
    margin-top: 10px;
    opacity: 0;
    height: 0;
    transition: all 0.3s ease;
}

.pricing-card.featured .pricing-display .installment {
    color: rgba(255, 255, 255, 0.8);
}

.pricing-display.annual .installment {
    opacity: 1;
    height: auto;
}

.pricing-display .installment strong {
    color: var(--primary-color);
}

.pricing-card.featured .pricing-display .installment strong {
    color: var(--accent-color);
}

/* Badge de economia */
.pricing-display .savings-badge {
    background: #27ae60;
    color: #fff;
    font-size: 0.75rem;
    padding: 4px 12px;
    border-radius: 20px;
    margin-top: 10px;
    font-weight: 600;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.pricing-display.annual .savings-badge {
    opacity: 1;
    transform: translateY(0);
}

/* Features List */
.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    flex-grow: 1;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid #f5f5f5;
    font-size: 0.95rem;
    color: #555;
    position: relative;
}

.pricing-features li .fa-info-circle {
    position: absolute;
    right: -20px;
    font-size: 0.65rem;
    color: var(--accent-color);
    opacity: 0.4;
    cursor: help;
}

.pricing-features li:hover .fa-info-circle {
    opacity: 1;
}

.pricing-card.featured .pricing-features li .fa-info-circle {
    color: rgba(255, 255, 255, 0.6);
}

.pricing-card.featured .pricing-features li:hover .fa-info-circle {
    color: var(--accent-color);
}

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

.pricing-features i {
    color: var(--accent-color);
    font-size: 1rem;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

.pricing-features .highlight-feature {
    font-weight: 600;
    color: var(--secondary-color);
}

.pricing-card.featured .pricing-features .highlight-feature {
    color: #ffffff;
}

/* Feature Tooltips */
.feature-tooltip {
    position: relative;
    cursor: help;
    border-bottom: 1px dashed rgba(0, 198, 255, 0.5);
}

.feature-tooltip::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #fff;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 400;
    line-height: 1.5;
    width: 280px;
    text-align: left;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    pointer-events: none;
    margin-bottom: 10px;
}

.feature-tooltip::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 8px solid transparent;
    border-top-color: #16213e;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 101;
    margin-bottom: -6px;
}

.feature-tooltip:hover::after,
.feature-tooltip:hover::before,
.pricing-features li:hover .feature-tooltip::after,
.pricing-features li:hover .feature-tooltip::before {
    opacity: 1;
    visibility: visible;
}

/* Cursor "?" no ícone de info pra deixar claro que é interativo */
.pricing-features li .fa-info-circle {
    cursor: help;
    color: rgba(0, 198, 255, 0.6);
    transition: color 0.2s ease;
}
.pricing-features li:hover .fa-info-circle {
    color: rgba(0, 198, 255, 1);
}

/* Pricing Button */
.pricing-btn {
    display: block;
    width: 100%;
    padding: 16px 30px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    margin-top: auto;
}

.pricing-btn.btn-outline-pricing {
    background: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.pricing-btn.btn-outline-pricing:hover {
    background: var(--primary-color);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 78, 146, 0.25);
}

.pricing-btn.btn-primary-pricing {
    background: #ffffff;
    color: var(--primary-color);
    border-color: #ffffff;
}

.pricing-btn.btn-primary-pricing:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 198, 255, 0.4);
}

/* Responsive Pricing */
@media (max-width: 992px) {
    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-12px);
    }
}

@media (max-width: 480px) {
    .pricing-card {
        padding: 30px 25px;
    }

    .pricing-display .amount {
        font-size: 3.5rem;
    }

    .pricing-section {
        padding: 60px 0;
    }
}

/* Payment Methods */
.payment-methods {
    text-align: center;
    margin-top: 50px;
    padding: 35px 30px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #eee;
}

.payment-methods p {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.payment-icon {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    font-weight: 600;
    padding: 15px 30px;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

/* Pix - Verde */
.payment-icon.pix {
    background: #e8f5e9;
    color: #2e7d32;
    border-color: #a5d6a7;
}

.payment-icon.pix:hover {
    background: #2e7d32;
    color: white;
    border-color: #2e7d32;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(46, 125, 50, 0.3);
}

.payment-icon.pix i {
    color: #2e7d32;
}

.payment-icon.pix:hover i {
    color: white;
}

/* Boleto - Azul */
.payment-icon.boleto {
    background: #e3f2fd;
    color: #1565c0;
    border-color: #90caf9;
}

.payment-icon.boleto:hover {
    background: #1565c0;
    color: white;
    border-color: #1565c0;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(21, 101, 192, 0.3);
}

.payment-icon.boleto i {
    color: #1565c0;
}

.payment-icon.boleto:hover i {
    color: white;
}

/* Cartão - Roxo */
.payment-icon.cartao {
    background: #f3e5f5;
    color: #7b1fa2;
    border-color: #ce93d8;
}

.payment-icon.cartao:hover {
    background: #7b1fa2;
    color: white;
    border-color: #7b1fa2;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(123, 31, 162, 0.3);
}

.payment-icon.cartao i {
    color: #7b1fa2;
}

.payment-icon.cartao:hover i {
    color: white;
}

.payment-icon i {
    font-size: 1.6rem;
    transition: color 0.3s ease;
}

@media (max-width: 768px) {
    .payment-icons {
        gap: 12px;
    }

    .payment-icon {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .payment-icon i {
        font-size: 1.3rem;
    }
}

/* =====================================================
   Stats Counter Section
   ===================================================== */
.stats-counter-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.stats-counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-counter-item {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.stat-counter-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon i {
    font-size: 1.5rem;
    color: white;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.95rem;
    color: #666;
    font-weight: 600;
}

@media (max-width: 992px) {
    .stats-counter-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .stats-counter-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .stat-counter-item {
        padding: 20px 15px;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-icon {
        width: 50px;
        height: 50px;
    }

    .stat-icon i {
        font-size: 1.2rem;
    }
}

/* =====================================================
   Client Logos Section
   ===================================================== */
.client-logos-section {
    padding: 40px 0;
    background: white;
    overflow: hidden;
}

.logos-title {
    text-align: center;
    font-size: 1rem;
    color: #888;
    margin-bottom: 25px;
    font-weight: 500;
}

.logos-carousel {
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.logos-track {
    display: flex;
    gap: 40px;
    animation: scrollLogos 20s linear infinite;
}

.logo-item {
    flex-shrink: 0;
    padding: 15px 30px;
    background: #f8f9fa;
    border-radius: 10px;
    border: 1px solid #eee;
}

.logo-item span {
    font-weight: 600;
    color: #666;
    white-space: nowrap;
}

@keyframes scrollLogos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* =====================================================
   Operation Modes Section
   ===================================================== */
.operation-modes-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.operation-modes-section .section-title p {
    max-width: 600px;
    margin: 15px auto 0;
    color: #666;
}

.modes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.mode-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.mode-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

.mode-card.featured {
    border-color: var(--primary-color);
    background: linear-gradient(180deg, #ffffff 0%, #f0f7ff 100%);
}

.mode-card.featured:hover {
    border-color: var(--accent-color);
}

.mode-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mode-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mode-icon i {
    font-size: 2rem;
    color: white;
}

.mode-card h3 {
    font-size: 1.4rem;
    color: var(--dark-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.mode-card > p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

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

.mode-features li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: #555;
}

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

.mode-features li i {
    color: var(--success-color, #28a745);
    font-size: 0.85rem;
}

@media (max-width: 992px) {
    .modes-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
    }

    .mode-card.featured {
        order: -1;
    }
}

/* =====================================================
   Platforms Section
   ===================================================== */
.platforms-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
}

.platforms-section .section-title h3,
.platforms-section .section-title h2 {
    color: white;
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.platform-item {
    text-align: center;
    padding: 25px 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.platform-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    border-color: var(--accent-color);
}

.platform-item i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 10px;
    display: block;
}

.platform-item span {
    font-size: 0.85rem;
    color: white;
    font-weight: 500;
}

@media (max-width: 992px) {
    .platforms-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 576px) {
    .platforms-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
    }

    .platform-item {
        padding: 15px 10px;
    }

    .platform-item i {
        font-size: 1.5rem;
    }

    .platform-item span {
        font-size: 0.75rem;
    }
}

/* =====================================================
   Guarantee Badge
   ===================================================== */
.guarantee-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    padding: 20px 40px;
    border-radius: 16px;
    margin-bottom: 30px;
    border: 2px solid #a5d6a7;
}

.guarantee-icon {
    width: 60px;
    height: 60px;
    background: #2e7d32;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.guarantee-icon i {
    font-size: 1.8rem;
    color: white;
}

.guarantee-text {
    text-align: left;
}

.guarantee-text strong {
    display: block;
    font-size: 1.3rem;
    color: #2e7d32;
    margin-bottom: 5px;
}

.guarantee-text span {
    color: #555;
    font-size: 0.95rem;
}

@media (max-width: 576px) {
    .guarantee-badge {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        gap: 15px;
    }

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

    .guarantee-text strong {
        font-size: 1.1rem;
    }
}

/* =====================================================
   FAQ Section
   ===================================================== */
.faq-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.faq-container {
    max-width: 800px;
    margin: 40px auto 0;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    border: 1px solid #eee;
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: white;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question span {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--secondary-color);
    text-align: left;
}

.faq-question i {
    color: var(--primary-color);
    font-size: 1rem;
    transition: transform 0.3s ease;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
}

.faq-answer p {
    padding: 0 25px 20px;
    color: #666;
    line-height: 1.7;
}

/* =====================================================
   Social Proof Notifications
   ===================================================== */
.social-proof-notification {
    position: fixed;
    bottom: 100px;
    left: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 15px 20px;
    z-index: 9999;
    max-width: 320px;
    transform: translateX(-120%);
    transition: transform 0.5s ease;
    border-left: 4px solid var(--accent-color);
}

.social-proof-notification.show {
    transform: translateX(0);
}

.social-proof-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.social-proof-avatar {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.social-proof-avatar i {
    color: white;
    font-size: 1.2rem;
}

.social-proof-text {
    flex: 1;
    font-size: 0.9rem;
    color: #333;
    line-height: 1.4;
}

.social-proof-text strong {
    color: var(--primary-color);
}

.social-proof-text span {
    color: #666;
}

.social-proof-close {
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    padding: 5px;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.social-proof-close:hover {
    color: #333;
}

.social-proof-time {
    font-size: 0.75rem;
    color: #999;
    margin-top: 8px;
    padding-left: 57px;
}

@media (max-width: 576px) {
    .social-proof-notification {
        left: 10px;
        right: 10px;
        bottom: 80px;
        max-width: none;
    }
}

/* =====================================================
   Cookie Consent Banner
   ===================================================== */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 -5px 30px rgba(0,0,0,0.3);
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-consent-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.cookie-content {
    flex: 1;
    min-width: 300px;
}

.cookie-content h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cookie-content h4 i {
    color: var(--accent-color);
}

.cookie-content p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
    margin-bottom: 10px;
}

.cookie-content a {
    color: var(--accent-color);
    text-decoration: underline;
}

.cookie-content a:hover {
    color: white;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.cookie-btn-accept {
    background: linear-gradient(135deg, #11998e, #38ef7d);
    color: white;
}

.cookie-btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(17, 153, 142, 0.4);
}

.cookie-btn-reject {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.3);
    color: white;
}

.cookie-btn-reject:hover {
    border-color: white;
    background: rgba(255,255,255,0.1);
}

.cookie-btn-settings {
    background: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
}

.cookie-btn-settings:hover {
    background: var(--accent-color);
    color: var(--secondary-color);
}

/* Cookie Settings Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cookie-modal.show {
    opacity: 1;
    visibility: visible;
}

.cookie-modal-content {
    background: white;
    border-radius: 20px;
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.cookie-modal-header {
    padding: 25px 30px;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cookie-modal-header h3 {
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cookie-modal-header h3 i {
    color: var(--primary-color);
}

.cookie-modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #999;
    cursor: pointer;
    transition: color 0.3s;
}

.cookie-modal-close:hover {
    color: #333;
}

.cookie-modal-body {
    padding: 30px;
}

.cookie-category {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #eee;
}

.cookie-category:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.cookie-category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.cookie-category-header h4 {
    font-size: 1rem;
    color: var(--secondary-color);
}

.cookie-category p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.6;
}

/* Toggle Switch */
.cookie-toggle {
    position: relative;
    width: 50px;
    height: 26px;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ccc;
    border-radius: 26px;
    transition: 0.3s;
}

.cookie-toggle-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background: white;
    border-radius: 50%;
    transition: 0.3s;
}

.cookie-toggle input:checked + .cookie-toggle-slider {
    background: linear-gradient(135deg, #11998e, #38ef7d);
}

.cookie-toggle input:checked + .cookie-toggle-slider:before {
    transform: translateX(24px);
}

.cookie-toggle input:disabled + .cookie-toggle-slider {
    background: #11998e;
    cursor: not-allowed;
}

.cookie-modal-footer {
    padding: 20px 30px;
    background: #f8f9fa;
    border-radius: 0 0 20px 20px;
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.cookie-modal-footer .cookie-btn {
    padding: 10px 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .cookie-consent-container {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        justify-content: center;
        width: 100%;
    }

    .cookie-btn {
        flex: 1;
        justify-content: center;
        min-width: 120px;
    }

    .cookie-modal-content {
        margin: 10px;
    }

    .cookie-modal-footer {
        flex-direction: column;
    }
}

/* ========================================
   NOVAS MELHORIAS - Progress Bar, Back to Top, Animações
   ======================================== */

/* Progress Bar no Topo */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    z-index: 10000;
    transition: width 0.1s ease-out;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(0, 78, 146, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 9999;
}

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

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 78, 146, 0.4);
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

/* Animações on Scroll */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

.animate-on-scroll.delay-1 { transition-delay: 0.1s; }
.animate-on-scroll.delay-2 { transition-delay: 0.2s; }
.animate-on-scroll.delay-3 { transition-delay: 0.3s; }

/* Gradiente Animado no Hero */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.hero-gradient-animated {
    background: linear-gradient(-45deg, #000428, #004e92, #001a3a, #003366, #000428);
    background-size: 400% 400%;
    animation: gradientShift 20s ease infinite;
}

/* Tabela Comparativa Melhorada */
#comparison {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    padding: 80px 0;
}

#comparison > .container > h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: var(--secondary-color);
}

.comparison-table-wrapper {
    overflow-x: auto;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    border-radius: 20px;
    background: white;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
}

.comparison-table th,
.comparison-table td {
    padding: 20px 25px;
    text-align: center;
    border-bottom: 1px solid #eee;
    vertical-align: middle;
}

.comparison-table th {
    background: #1a1a2e;
    color: white;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.comparison-table th:first-child {
    text-align: left;
    border-radius: 20px 0 0 0;
}

.comparison-table th:last-child {
    border-radius: 0 20px 0 0;
}

.comparison-table th.highlight-col {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--secondary-color);
}

.comparison-table tbody tr {
    transition: all 0.3s ease;
}

.comparison-table tbody tr:hover {
    background: #f8f9fa;
}

.comparison-table tbody tr:last-child td:first-child {
    border-radius: 0 0 0 20px;
}

.comparison-table tbody tr:last-child td:last-child {
    border-radius: 0 0 20px 0;
}

.comparison-table td:nth-child(2) {
    color: #999;
}

.comparison-table td:last-child {
    background: rgba(0, 78, 146, 0.05);
    color: var(--primary-color);
    font-weight: 600;
}

.comparison-table td:last-child i {
    color: var(--accent-color);
    margin-right: 8px;
}

.comparison-table .icon-no {
    color: #dc3545;
    font-size: 1.1rem;
}

.comparison-table .icon-yes {
    color: var(--accent-color);
    font-size: 1.1rem;
}

.comparison-table .icon-partial {
    color: #ffc107;
    font-size: 1.1rem;
}
