/* Planeja Agora - Estilos da Landing Page */

:root {
    --primary-color: #1F2A40;
    --secondary-color: #38B000;
    --tertiary-color:#4c915e;
    --gradient-color: #2980b9;
    --accent-color: #38B000;
    --text-color: #2c3e50;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --light-color: #ffffff;
    --dark-color: #2c3e50;
    --bkgrd1-color: #474b55;
    --gray-color: #95a5a6;
    --dark-gray: #34495e;
    --success-color: #27ae60;
    --warning-color: #f39c12;
    --danger-color: #e74c3c;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 15px rgba(0, 0, 0, 0.2);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

header {
    background-color: var(--primary-color);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
    padding: 15px 0;
    transition: var(--transition);
}

header.scrolled {
    background: rgba(44, 62, 80, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
}

p {
    margin-bottom: 15px;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo img {
    height: 60px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--light-color);
    border-radius: 3px;
    transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: var(--light-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-links a:hover {
    color: var(--accent-color);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.cta-button {
    background-color: var(--accent-color);
    color: var(--light-color);
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-acessar {
    margin-left: 15px;
}

.btn-experimente {
    padding: 0px;
    gap: 0px;
}

.cta-button:hover {
    background-color: #2d9900;
}

.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--bkgrd1-color) 100%);
    color: var(--light-color);
    padding: 10rem 0 6rem;
    text-align: left;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: center;
    min-height: 70vh;
}

.hero-text {
    width: 100%;
    padding-right: 2rem;
}

.hero h1 {
    font-size: 2.1rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin: 0 0 2rem;
    line-height: 1.6;
}

.hero-description {
    font-size: 1.1rem;
    color: #e0e6ed;
    margin-bottom: 2rem;
}

.tagline {
    display: block;
    font-size: 1.5rem;
    font-weight: 300;
    margin: 1rem 0 2rem;
    color: var(--accent-color);
}

.accent {
    color: var(--accent-color);
}

/* Hero Benefits */
.hero-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;


    .benefit-item {
        display: flex;
        align-items: center;
        gap: 0.8rem;
        font-size: 0.95rem;
        color: #e0e6ed;
    }

    .benefit-item i {
        color: var(--accent-color);
        font-size: 1.1rem;
        flex-shrink: 0;
    }
}
/* Hero CTA */
.hero-cta {
    display: flex;
    gap: 1rem;
    margin: 2.5rem 0 1.5rem;
    flex-wrap: wrap;
}

.hero-cta .cta-button {
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.hero-cta .cta-button.primary {
    background: var(--accent-color);
    color: white;
    box-shadow: 0 4px 15px rgba(56, 176, 0, 0.3);
}

.hero-cta .cta-button.primary:hover {
    background: #2d9900;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(56, 176, 0, 0.4);
}

.hero-cta .cta-button.secondary {
    background: transparent;
    color: var(--light-color);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-cta .cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-color);
    color: var(--accent-color);
}

/* Hero Guarantee */
.hero-guarantee {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.9rem;
    color: #b8c5d1;
    margin-top: 1rem;
}

.hero-guarantee i {
    color: var(--accent-color);
    font-size: 1.1rem;
}

/* Hero Image */
.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dashboard-preview {
    position: relative;
    max-width: 100%;
}

.main-screenshot {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.main-screenshot:hover {
    transform: scale(1.02);
}

/* Floating Cards */
.floating-cards {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.feature-highlight {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 600;
    color: var(--primary-color);
    animation: float 3s ease-in-out infinite;
    pointer-events: auto;
}

.feature-highlight:nth-child(1) {
    top: 15%;
    right: -10%;
    animation-delay: 0s;
}

.feature-highlight:nth-child(2) {
    top: 50%;
    left: -15%;
    animation-delay: 1s;
}

.feature-highlight:nth-child(3) {
    bottom: 20%;
    right: -5%;
    animation-delay: 2s;
}

.feature-highlight i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.features {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f5f5 0%, #e9ffe5 100%);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    margin-top: 3rem;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-title p {
    color: var(--dark-gray);
    max-width: 700px;
    margin: 0 auto;
}

/* Benefits Highlight */
.benefits-highlight {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 40px 0 60px;
    padding: 40px;
    background: linear-gradient(135deg, var(--text-color), var(--primary-color));
    border-radius: 20px;
    color: white;
}

.benefit-stat {
    text-align: center;
    padding: 20px;
}

.benefits-highlight .stat-number {
    color: white;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 10px;
    background: linear-gradient(45deg, #fff, #f8f9fa);
    -webkit-background-clip: text;
    background-clip: text;
}

.benefits-highlight .stat-label {
    font-size: 1rem;
    font-weight: 600;
    opacity: 0.9;
    color: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
}

.feature-card.premium {
    border: 2px solid var(--primary-color);
    background: linear-gradient(135deg, #fff 0%, #f8f9ff 100%);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--primary-color), var(--gradient-color));
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--tertiary-color));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    font-size: 30px;
    color: white;
}

.feature-icon svg {
    width: 35px;
    height: 35px;
    fill: white;
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 700;
}

.feature-card p {
    color: var(--dark-gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

.feature-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-benefits li {
    padding: 8px 0;
    color: var(--dark-gray);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-benefits li:before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
    flex-shrink: 0;
}

.control {
    background-color: var(--gray-color);
    padding: 1rem 0;
}

.control-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.control-text {
    flex: 1;
}

.control-image {
    flex: 1;
    text-align: center;
}

.control-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.lgpd {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.lgpd::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"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23dee2e6" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>') repeat;
    opacity: 0.1;
}

.lgpd-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.lgpd-image {
    text-align: center;
    position: relative;
}

.lgpd-image::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 280px;
    height: 280px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    opacity: 0.1;
    z-index: -1;
}

.lgpd-image img {
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.lgpd-image:hover img {
    transform: scale(1.05);
}

.lgpd-text {
    padding: 20px 0;
}

.lgpd-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.2;
}

.lgpd-text .section-title p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 30px;
    font-weight: 500;
}

.lgpd-text > p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 25px;
}

.lgpd-text ul {
    margin: 30px 0;
    padding-left: 0;
    list-style: none;
}

.lgpd-text ul li {
    position: relative;
    padding: 12px 0 12px 40px;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.lgpd-text ul li::before {
    content: '🔒';
    position: absolute;
    left: 0;
    top: 12px;
    font-size: 1.2rem;
    color: var(--primary-color);
}

.lgpd-text ul li:hover {
    color: var(--text-dark);
    transform: translateX(5px);
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2a3b5d 100%);
    color: var(--light-color);
    padding: 1rem 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-section p {
    max-width: 700px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
}

footer {
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 3rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 1rem;
}

.footer-logo p {
    max-width: 300px;
    color: #ccc;
}

.footer-links h3 {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--secondary-color);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #ccc;
}

.social-media {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    color: var(--light-color);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-icon:hover {
    background-color: var(--gray-color);
    transform: translateY(-5px);
}

/* Estilos para o Carrossel */
.carousel-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto 3rem;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.carousel-slides {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-slide {
    min-width: 100%;
    position: relative;
}

.carousel-slide img {
    width: 100%;
    height: auto;
    display: block;
}

.carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(31, 42, 64, 0.7);
    color: white;
    padding: 10px;
    text-align: center;
    font-weight: 500;
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(31, 42, 64, 0.5);
    color: white;
    border: none;
    font-size: 18px;
    padding: 15px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.carousel-button:hover {
    background-color: rgba(56, 176, 0, 0.7);
}

.carousel-button.prev {
    left: 0;
    border-radius: 0 5px 5px 0;
}

.carousel-button.next {
    right: 0;
    border-radius: 5px 0 0 5px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    position: absolute;
    bottom: 40px;
    width: 100%;
    gap: 8px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
}

.carousel-dot.active {
    background-color: var(--accent-color);
}

/* Estilos para a seção de preços com cards */
.pricing-period-selector {
    display: flex;
    justify-content: center;
    margin: 2rem auto;
    max-width: 600px;
    background-color: #f0f5ff;
    border-radius: 10px;
    overflow: hidden;
}

.period-option {
    flex: 1;
    text-align: center;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    position: relative;
    font-size: 1.5rem;
}

.period-option.active {
    background-color: var(--accent-color);
    color: white;
}

.period-option:not(.active):hover {
    background-color: #e0e9ff;
}

.discount {
    font-size: 0.8rem;
    font-weight: 400;
    color: inherit;
}

.pricing-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin: 2rem 0;
}

.pricing-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.pricing-card h3 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.price-option {
    display: none;
    text-align: center;
    margin-bottom: 1.5rem;
}

.price-option.active {
    display: block;
}

.price-main {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.price-installment {
    font-size: 1rem;
    color: var(--dark-gray);
    margin-bottom: 0.25rem;
}

.price-period {
    font-size: 0.9rem;
    color: var(--dark-gray);
}

.payment-methods {
    background-color: #e8f5e9;
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
    text-align: center;
}

.payment-methods p {
    margin: 0.25rem 0;
    font-size: 0.9rem;
}

.plan-features {
    list-style: none;
    margin: 1.5rem 0;
    padding: 0;
}

.plan-features li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.plan-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.more-info {
    text-align: center;
    display: block;
    margin-top: auto;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.more-info:hover {
    color: var(--accent-color);
}

/* Estilos para páginas de Política de Privacidade e Termos de Serviço */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2a3b5d 100%);
    color: var(--light-color);
    padding: 8rem 0 4rem;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.content-section {
    padding: 4rem 0;
    background-color: var(--light-color);
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.policy-content h2 {
    color: var(--primary-color);
    margin: 2rem 0 1rem;
    font-size: 1.8rem;
}

.policy-content p, .policy-content ul {
    margin-bottom: 1.5rem;
}

.policy-content ul {
    margin-left: 2rem;
}

.policy-content li {
    margin-bottom: 0.5rem;
}

.policy-content strong {
    font-weight: 600;
}

/* Demo Screens Section */
.demo-screens {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f5f5 0%, #e9ffe5 100%);
}

/* Main Demo Showcase */
.main-demo {
    margin: 50px 0;
}

.demo-showcase {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.demo-tabs {
    display: flex;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.demo-tab {
    flex: 1;
    padding: 20px;
    background: none;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-gray);
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.demo-tab:hover {
    background: #e9ecef;
    color: var(--primary-color);
}

.demo-tab.active {
    background: white;
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.demo-content-area {
    position: relative;
}

.demo-screen {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 40px;
    align-items: center;
}

.demo-screen.active {
    display: grid;
}

.demo-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.demo-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.demo-highlights {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.highlight-point {
    position: absolute;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(74, 144, 226, 0.7); }
    70% { transform: scale(1.1); box-shadow: 0 0 0 10px rgba(74, 144, 226, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(74, 144, 226, 0); }
}

.demo-description h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--text-color);
    font-weight: 700;
}

.demo-description p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--dark-gray);
    margin-bottom: 25px;
}

.demo-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--dark-gray);
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    padding: 10px 0;
    font-size: 1rem;
    color: var(--dark-gray);
    border-bottom: 1px solid #f0f0f0;
}

.feature-list li:last-child {
    border-bottom: none;
}

.calendar-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.calendar-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    text-align: center;
}

.calendar-feature i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* AIPA Section */
.aipa-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.aipa-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.aipa-text {
    max-width: 100%;
}

.aipa-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.aipa-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.aipa-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.aipa-feature i {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.aipa-feature h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.aipa-feature p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.5;
}

/* Chat Preview */
.aipa-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.chat-preview {
    background: white;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 100%;
    max-width: 400px;
    border: 1px solid #e9ecef;
}

.chat-header {
    background: var(--primary-color);
    color: white;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.chat-avatar {
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.chat-info h4 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

.chat-info span {
    font-size: 0.8rem;
    opacity: 0.8;
}

.chat-status {
    margin-left: auto;
}

.online {
    color: #27ae60;
    font-size: 1.2rem;
}

.chat-messages {
    padding: 1.5rem;
    max-height: 300px;
    overflow-y: auto;
}

.message {
    margin-bottom: 1rem;
    animation: fadeInUp 0.3s ease;
}

.message:last-child {
    margin-bottom: 0;
}

.message p {
    padding: 0.8rem 1rem;
    border-radius: 12px;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.message.assistant p {
    background: #f8f9fa;
    color: var(--text-color);
    border-bottom-left-radius: 4px;
}

.message.user p {
    background: var(--accent-color);
    color: white;
    margin-left: 2rem;
    border-bottom-right-radius: 4px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.aipa-capabilities {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.capability {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
}

.capability-icon {
    font-size: 1.5rem;
    width: 40px;
    text-align: center;
}

/* Seção de Vídeo de Apresentação */
.video-presentation {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-color) 100%);
    color: var(--light-color);
}

.video-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.video-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--light-color);
}

.video-content p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: var(--text-light);
    opacity: 0.9;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
    background: #000;
}

.video-container video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
}

/* Additional Features */
.additional-features {
    margin: 60px 0;
    text-align: center;
}

.additional-features h3 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--text-color);
    font-weight: 700;
}

.features-mini-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.mini-feature {
    padding: 30px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.mini-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.mini-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.mini-feature h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--text-color);
    font-weight: 600;
}

.mini-feature p {
    font-size: 0.9rem;
    color: var(--dark-gray);
    margin: 0;
}

/* Demo CTA */
.demo-cta {
    margin-top: 60px;
    padding: 50px;
    background: linear-gradient(135deg, var(--text-color), var(--bkgrd1-color));
    border-radius: 20px;
    color: white;
    text-align: center;
}

.cta-content h3 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.cta-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-benefits {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.cta-button.primary {
    background: white;
    color: var(--primary-color);
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid white;
}

.cta-guarantee {
    font-size: 1rem;
    margin-top: 20px;
    opacity: 0.9;
}

/* Animações */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.feature-card, .hero h1, .hero p, .tagline, .cta-button {
    animation: fadeIn 0.8s ease-out forwards;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }
.feature-card:nth-child(5) { animation-delay: 0.5s; }
.feature-card:nth-child(6) { animation-delay: 0.6s; }

.advantages {
    padding: 1rem 0;
    background: linear-gradient(135deg, #f5f5f5 0%, #e9ffe5 100%);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.advantage-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(56,176,0,0.08);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1.5px solid #e0e0e0;
}

.advantage-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 32px rgba(56,176,0,0.15);
    border-color: var(--accent-color);
}

.advantage-icon {
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    margin-left: auto;
    margin-right: auto;
    background: var(--accent-color);
    color: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(56,176,0,0.12);
}

.advantage-card h3 {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-bottom: 0.7rem;
    font-weight: 600;
}

.advantage-card p {
    color: var(--dark-gray);
    font-size: 1rem;
    margin-bottom: 0;
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

/* Trial Highlight */
.trial-highlight {
    margin: 40px 0 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--tertiary-color));
    border-radius: 20px;
    padding: 40px;
    color: white;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.trial-content {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    gap: 30px;
    align-items: center;
    text-align: left;
}

.trial-icon {
    font-size: 4rem;
    text-align: center;
}

.trial-text h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.trial-text p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
}

.trial-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.trial-feature {
    font-size: 0.9rem;
    font-weight: 500;
}

.trial-btn {
    background: white;
    color: var(--primary-color);
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
}

.trial-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    color: var(--primary-color);
}

/* Pricing Toggle */
.pricing-toggle {
    text-align: center;
    margin: 40px 0 50px;
    padding: 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.toggle-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
}

.toggle-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.toggle-label.active {
    color: var(--primary-color);
}

.discount-badge {
    background: linear-gradient(135deg, var(--primary-color), var(--gradient-color));
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-left: 8px;
    animation: pulse-glow 2s infinite;
}

.toggle-switch {
    position: relative;
    width: 60px;
    height: 30px;
}

.toggle-input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ccc;
    transition: 0.4s;
    border-radius: 30px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background: white;
    transition: 0.4s;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.toggle-input:checked + .toggle-slider {
    background: var(--primary-color);
}

.toggle-input:checked + .toggle-slider:before {
    transform: translateX(30px);
}

.toggle-description {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
    font-style: italic;
}

.annual-savings {
    margin-top: 8px;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.annual-savings.show {
    opacity: 1;
    transform: translateY(0);
}

.savings-text {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    animation: pulse-savings 2s infinite;
}

@keyframes pulse-savings {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.pricing-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
    background: linear-gradient(135deg, #fff 0%, #f8f9ff 100%);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-color), var(--gradient-color));
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-header h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 700;
}

.trial-price {
    display: block;
    background: linear-gradient(135deg, var(--primary-color), var(--gradient-color));
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 15px;
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0% { box-shadow: 0 0 0 0 rgba(74, 144, 226, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(74, 144, 226, 0); }
    100% { box-shadow: 0 0 0 0 rgba(74, 144, 226, 0); }
}

.regular-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.currency {
    font-size: 1.2rem;
    color: var(--text-light);
}

.amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
}

.period {
    font-size: 1rem;
    color: var(--text-light);
}

.price-description {
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 1rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    text-align: left;
}

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.pricing-btn {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin: 20px 0 15px;
    width: 100%;
    box-sizing: border-box;
}

.pricing-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    color: white;
}

.featured-btn {
    background: var(--secondary-color);
    font-size: 1.1rem;
    padding: 18px 35px;
}

.pricing-guarantee {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

/* Pricing Benefits */
.pricing-benefits {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    text-align: center;

    h3 {
        font-size: 2.5rem;
        color: var(--primary-color);
        margin-bottom: 3rem;
        font-weight: 700;
    }

    .benefits-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
        max-width: 1000px;
        margin: 0 auto;
    }

    .benefit-item {
        display: block;
        background: white;
        padding: 30px 20px;
        border-radius: 15px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
        border: 1px solid #e9ecef;
    }

    .benefit-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        border-color: var(--accent-color);
    }

    .benefit-icon {
        font-size: 3rem;
        margin-bottom: 1rem;
        display: block;
    }

    .benefit-item h4 {
        font-size: 1.3rem;
        color: var(--primary-color);
        margin-bottom: 0.5rem;
        font-weight: 600;
    }

    .benefit-item p {
        color: var(--text-light);
        font-size: 1rem;
        line-height: 1.5;
    }
}
/* Pricing Note Section */
.pricing-note {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2a3b5d 100%);
    padding: 40px 0;
    margin: 40px 0;
    border-radius: 15px;
    text-align: center;
}

.note-content {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
}

.note-content h4 {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 15px;
    font-weight: 600;
}

.note-content p {
    font-size: 1.1rem;
    color: #e0e6ed;
    margin-bottom: 25px;
    line-height: 1.6;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent-color);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(56, 176, 0, 0.3);
}

.contact-btn:hover {
    background: #2d9900;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(56, 176, 0, 0.4);
    color: white;
}

.contact-btn i {
    font-size: 1.2rem;
}

/* Media Query para Mobile */
@media (max-width: 768px) {

    .mobile-hidden{
        display: none;
    }

    .container {
        width: 96%;
        padding: 0 10px;
    }
    
    .header-content {
        flex-direction: row;
    }
    
    .logo img {
        height: 44px;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        left: 0;
        width: 100%;
        background: var(--primary-color);
        padding: 20px;
        box-shadow: var(--shadow);
        z-index: 999;
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-links.active {
        display: flex !important;
    }
    
    .nav-links li {
        width: 100%;
    }
    
    .nav-links a {
        display: block;
        padding: 10px 0;
        text-align: center;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        width: 100%;
    }
    
    .nav-links a:last-child {
        border-bottom: none;
    }
    
    .hero {
        padding: 6rem 0 3rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-cta .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .hero-benefits {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .floating-cards {
        display: none;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 1.2rem;
    }
    
    .section-title {
        margin-bottom: 2rem;
        margin-top: 2rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .control-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .control-image {
        margin: 0 auto;
        max-width: 90vw;
    }
    
    .pricing-cards {
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 30px;
    }
    
    .aipa-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .aipa-features {
        grid-template-columns: 1fr;
    }
    
    .aipa-section {
        padding: 60px 0;
    }
    
    .chat-preview {
        max-width: 350px;
    }
    
    .demo-screen {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .demo-description {
        order: 1;
    }
    
    .demo-image {
        order: 2;
    }
    
    .demo-tabs {
        flex-direction: column;
        gap: 10px;
    }
    
    .demo-tab {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .demo-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .calendar-features {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .aipa-capabilities {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .features-mini-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .mini-feature {
        padding: 20px 15px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .pricing-card {
        padding: 30px 20px;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .amount {
        font-size: 2.5rem;
    }
    
    .trial-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }
    
    .trial-highlight {
        padding: 30px 20px;
        margin: 30px 0 40px;
    }
    
    .trial-text h3 {
        font-size: 1.5rem;
    }
    
    .trial-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .lgpd-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .lgpd-text h2 {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }
    
    .lgpd-text p {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    .lgpd-text ul li {
        font-size: 0.95rem;
    }
    
    .lgpd-image img {
        max-width: 350px;
    }
    
    .pricing-toggle {
        margin: 30px 0 40px;
        padding: 25px 15px;
    }
    
    .toggle-container {
        gap: 15px;
    }
    
    .toggle-label {
        font-size: 1rem;
    }
    
    .discount-badge {
        font-size: 0.75rem;
        padding: 3px 6px;
    }
    
    .advantages-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .advantage-card {
        padding: 30px 20px;
    }
    
    .advantage-icon {
        font-size: 3rem;
    }
    
    .advantage-card h4 {
        font-size: 1.2rem;
    }
    
    .video-presentation {
        padding: 60px 0;
    }
    
    .video-content h2 {
        font-size: 2rem;
    }
    
    .video-content p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .video-container {
        max-width: 100%;
        margin: 0 10px;
    }
    
    .pricing-benefits {
        padding: 60px 0;
    }
    
    .pricing-benefits h3 {
        font-size: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }
    
    .benefit-item {
        padding: 25px 15px;
    }
    
    .benefit-icon {
        font-size: 2.5rem;
    }
    
    .benefit-item h4 {
        font-size: 1.2rem;
    }
    
    /* Pricing Note Mobile */
    .pricing-note {
        margin: 30px 0;
        padding: 30px 0;
    }
    
    .note-content h4 {
        font-size: 1.5rem;
    }
    
    .note-content p {
        font-size: 1rem;
    }
    
    .contact-btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}