/* ========================================
   RESET & VARIÁVEIS
   ======================================== */
:root {
    --primary: #0056b3;
    --primary-dark: #003d82;
    --secondary: #00a0e9;
    --accent: #0056b3;
    /* Changed from orange to Blue ACITEC */
    --accent-hover: #003d82;
    /* Changed from orange-hover to Blue Dark */
    --dark: #1a1a1a;
    --gray: #6c757d;
    --light: #f8f9fa;
    --white: #ffffff;
    --success: #28a745;
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 100px 0;
}

.text-center {
    text-align: center;
}

.mt-60 {
    margin-top: 60px;
}

/* ========================================
   HEADER
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: var(--transition);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}

.logo {
    flex-shrink: 0;
}

.nav {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-link {
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    position: relative;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    background: linear-gradient(135deg, var(--accent) 0%, #003d82 100%);
    color: var(--white) !important;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 86, 179, 0.3);
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 86, 179, 0.4);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--dark);
    border-radius: 3px;
    transition: var(--transition);
}

/* ========================================
   HERO SECTION (PREMIUM REDESIGN)
   ======================================== */
.hero {
    padding: 160px 0 100px;
    background: linear-gradient(135deg, rgba(0, 30, 60, 0.9) 0%, rgba(0, 86, 179, 0.85) 100%), url('https://images.unsplash.com/photo-1494412574643-35d324688b08?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
    color: var(--white);
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(0, 160, 233, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.hero .container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Hero Logo */
.hero-logo {
    margin-bottom: 30px;
    animation: fadeInDown 0.8s ease-out;
}

.hero-logo-img {
    max-width: 180px;
    height: auto;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--secondary);
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    animation: fadeInDown 0.8s ease-out;
}

.hero-badge i {
    color: var(--secondary);
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: fadeInLeft 0.8s ease-out 0.2s backwards;
}

/* Text Gradient - Clean, No Shadow */
.hero-title .text-gradient {
    background: linear-gradient(90deg, #00b4ff 0%, #0077cc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 600px;
    font-weight: 300;
    animation: fadeInLeft 0.8s ease-out 0.4s backwards;
}

.hero-features {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.6s backwards;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    transition: var(--transition);
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    border-color: var(--secondary);
}

.feature-item i {
    color: var(--secondary);
    font-size: 18px;
}

.feature-item span {
    font-weight: 500;
    font-size: 14px;
    color: var(--white);
}

.hero-cta {
    display: flex;
    gap: 20px;
    animation: fadeInUp 0.8s ease-out 0.8s backwards;
}

/* Visual Side - Glassmorphism */
.hero-visual {
    position: relative;
    animation: zoomIn 1s ease-out 0.4s backwards;
}

.certificate-showcase {
    position: relative;
}

.certificate-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    padding: 0;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    position: relative;
    z-index: 10;
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: var(--transition);
}

.certificate-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.certificate-header {
    background: linear-gradient(90deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 15px 20px;
    border-bottom: 1px solid #dee2e6;
    display: flex;
    align-items: center;
    gap: 8px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot-red {
    background: #ff5f57;
}

.dot-yellow {
    background: #febc2e;
}

.dot-green {
    background: #28c840;
}

.header-title {
    margin-left: 10px;
    font-size: 12px;
    color: #64748b;
    font-weight: 600;
}

.certificate-body {
    padding: 30px;
    text-align: center;
    position: relative;
    background: #f8fafc;
}

/* CSS Certificate Mockup Styles - A4 Proportion */
.cert-mockup {
    background: white;
    border-radius: 8px;
    padding: 25px 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    margin: 0 auto 25px;
    border: 1px solid #e2e8f0;
    position: relative;
    max-width: 220px;
    min-height: 280px;
}

.cert-inner {
    position: relative;
}

.cert-top-bar {
    height: 6px;
    background: linear-gradient(90deg, #0056b3, #00a0e9);
    border-radius: 3px;
    margin-bottom: 15px;
}

.cert-logo {
    font-size: 32px;
    color: #0056b3;
    margin-bottom: 10px;
}

.cert-title {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.cert-subtitle {
    font-size: 10px;
    color: #64748b;
    font-style: italic;
    margin-bottom: 15px;
}

.cert-lines {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 15px;
}

.cert-line {
    height: 8px;
    background: #e2e8f0;
    border-radius: 4px;
}

.cert-line.w80 {
    width: 80%;
    margin: 0 auto;
}

.cert-line.w100 {
    width: 100%;
}

.cert-line.w90 {
    width: 90%;
    margin: 0 auto;
}

.cert-line.w60 {
    width: 60%;
    margin: 0 auto;
}

.cert-footer-badge {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
    border-top: 1px dashed #cbd5e1;
}

.cert-qr {
    font-size: 30px;
    color: #334155;
}

.cert-stamp {
    display: flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #059669, #10b981);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.cert-stamp i {
    font-size: 14px;
}

.certificate-info .label {
    font-size: 13px;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
    font-weight: 700;
}

.certificate-info .time {
    font-family: 'Poppins', sans-serif;
    font-size: 64px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1;
    letter-spacing: -2px;
    background: linear-gradient(120deg, #0f172a 0%, #334155 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.certificate-footer {
    background: linear-gradient(to right, #ecfdf5, #d1fae5);
    padding: 18px;
    color: #059669;
    font-weight: 700;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-top: 1px solid #d1fae5;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    padding: 15px 20px;
    border-radius: 12px;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 20;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    animation: float 4s ease-in-out infinite;
}

.float-1 {
    top: 20px;
    right: -50px;
    animation-delay: 0s;
}

.float-2 {
    bottom: 20px;
    left: -50px;
    animation-delay: 2s;
}

.icon-box {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #00c6ff, #0072ff);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
}

.float-text h4 {
    font-size: 14px;
    margin: 0;
    color: var(--dark);
    font-weight: 700;
}

.float-text p {
    font-size: 12px;
    margin: 0;
    color: var(--gray);
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: var(--transition);
    animation: bounce 2s infinite;
    z-index: 5;
}

.scroll-down:hover {
    color: var(--white);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse-blue {
    0% {
        transform: scale(1);
        filter: drop-shadow(0 0 0 rgba(0, 160, 233, 0.4));
    }

    50% {
        transform: scale(1.05);
        filter: drop-shadow(0 0 10px rgba(0, 160, 233, 0.6));
    }

    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 0 rgba(0, 160, 233, 0.4));
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translate(-50%, 0);
    }

    40% {
        transform: translate(-50%, -10px);
    }

    60% {
        transform: translate(-50%, -5px);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, #003d82 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 86, 179, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 86, 179, 0.4);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-lg {
    padding: 18px 36px;
    font-size: 17px;
}

.btn-large {
    width: 100%;
    justify-content: center;
    padding: 20px;
    font-size: 18px;
}

/* ========================================
   STATS BAR
   ======================================== */
.stats-bar {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat {
    text-align: center;
    color: var(--white);
}

.stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 1;
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
}

/* ========================================
   SECTION HEADER
   ======================================== */
.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-tag {
    display: inline-block;
    background: rgba(0, 86, 179, 0.1);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark);
}

.section-header p {
    font-size: 18px;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
}

.section-header.light h2,
.section-header.light p {
    color: var(--white);
}

.section-header.light .section-tag {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

/* ========================================
   BENEFITS SECTION
   ======================================== */
.benefits {
    background: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.benefit-card {
    background: var(--white);
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.benefit-card:hover {
    border-color: rgba(0, 86, 179, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 50%;
    /* Circular for elegance */
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: var(--transition);
    box-shadow: inset 0 0 0 1px rgba(14, 165, 233, 0.1);
}

.benefit-card:hover .benefit-icon {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    box-shadow: 0 10px 20px rgba(0, 86, 179, 0.3);
    transform: scale(1.1);
}

.benefit-icon i {
    font-size: 32px;
    color: var(--primary);
    transition: var(--transition);
}

.benefit-card:hover .benefit-icon i {
    color: var(--white);
    transform: scale(0.9);
}

.benefit-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark);
}

.benefit-card p {
    color: var(--gray);
    line-height: 1.8;
}

/* ========================================
   COMPARISON SECTION
   ======================================== */
.comparison {
    background: var(--light);
}

.comparison-table {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    padding: 25px 20px;
    font-size: 18px;
    font-weight: 700;
}

/* ACITEC Header with Logo */
.comparison-table th.acitec-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 15px 20px;
}

.table-logo {
    max-height: 35px;
    width: auto;
    filter: brightness(0) invert(1);
}

/* Concorrência Header - Gray Gradient (Less Trustworthy) */
.comparison-table th.concorrencia-header {
    background: linear-gradient(135deg, #6b7280 0%, #9ca3af 100%);
    color: #f3f4f6;
}

.acitec-badge {
    background: var(--accent);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 14px;
}

.comparison-table td {
    padding: 25px 20px;
    text-align: center;
    border-bottom: 1px solid var(--light);
    font-size: 16px;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tr:nth-child(even) {
    background: var(--light);
}

/* Gray background for Concorrência column cells */
.comparison-table td:last-child {
    background: linear-gradient(180deg, rgba(156, 163, 175, 0.1) 0%, rgba(107, 114, 128, 0.1) 100%);
    color: #6b7280;
}

.comparison-table .highlight {
    color: var(--primary);
    font-weight: 700;
}

.comparison-table .highlight i {
    color: var(--success);
    margin-right: 8px;
}

/* ========================================
   PROCESS SECTION
   ======================================== */
.process {
    background: var(--white);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    z-index: 0;
}

.step {
    position: relative;
    z-index: 1;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    margin: 0 auto 25px;
    box-shadow: 0 4px 15px rgba(0, 86, 179, 0.3);
}

.step-content {
    text-align: center;
}

.step-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark);
}

.step-content h3 i {
    color: var(--primary);
    margin-right: 10px;
}

.step-content p {
    color: var(--gray);
    line-height: 1.8;
}

/* ========================================
   COVERAGE SECTION (MAPA)
   ======================================== */
.coverage {
    background: var(--light);
}

.map-wrapper {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow);
    margin-bottom: 60px;
}

.world-map {
    height: 500px;
    border-radius: 15px;
    overflow: hidden;
}

.coverage-stats {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.coverage-stat {
    background: var(--white);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.coverage-stat:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(0, 86, 179, 0.1) 0%, rgba(0, 160, 233, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.stat-icon i {
    font-size: 32px;
    color: var(--primary);
}

.coverage-stat h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--dark);
}

.coverage-stat p {
    color: var(--gray);
    font-size: 14px;
}

/* ========================================
   SECURITY SECTION
   ======================================== */
.security {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
}

.security-features {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}

.security-feature {
    text-align: center;
}

.security-icon {
    width: 90px;
    height: 90px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: var(--transition);
}

.security-feature:hover .security-icon {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.security-icon i {
    font-size: 40px;
    color: var(--white);
}

.security-feature h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.security-feature p {
    font-size: 14px;
    opacity: 0.9;
    line-height: 1.6;
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */
.testimonials {
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--light);
    border-radius: 20px;
    padding: 35px;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.stars {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.stars i {
    color: #ffc107;
    font-size: 18px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--dark);
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    min-width: 50px;
    /* Prevent squashing */
    min-height: 50px;
    /* Prevent squashing */
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
    /* Critical for keeping circle shape */
}

.testimonial-author h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--dark);
}

.testimonial-author p {
    font-size: 14px;
    color: var(--gray);
}

/* ========================================
   FAQ SECTION
   ======================================== */
.faq {
    background: var(--light);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
    align-items: start;
    /* Para não esticar itens lado a lado */
}

.faq-item {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.faq-header {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-header:hover {
    background: var(--light);
}

.faq-item.active .faq-header {
    background: var(--primary);
}

.faq-header h3 {
    font-size: 17px;
    font-weight: 600;
    color: var(--dark);
    margin: 0;
    transition: var(--transition);
}

.faq-item.active .faq-header h3 {
    color: var(--white);
}

.faq-header i {
    color: var(--primary);
    transition: var(--transition);
}

.faq-item.active .faq-header i {
    color: var(--white);
    transform: rotate(180deg);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-content {
    max-height: 300px;
}

.faq-content p {
    padding: 30px 30px 25px;
    color: var(--gray);
    line-height: 1.8;
}

/* ========================================
   FORM SECTION
   ======================================== */
.form-section {
    background: linear-gradient(135deg, var(--primary) 0%, #003d80 100%);
}

.form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 20px;
    padding: 50px;
    box-shadow: var(--shadow-lg);
}

.certificate-form {
    width: 100%;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 30px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark);
    font-size: 14px;
}

.form-group input,
.form-group select {
    padding: 15px 20px;
    border: 2px solid var(--light);
    border-radius: 10px;
    font-size: 16px;
    transition: var(--transition);
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(0, 86, 179, 0.1);
}

.form-group.checkbox {
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
}

.form-group.checkbox input {
    width: auto;
    margin-top: 4px;
}

.form-group.checkbox label {
    margin: 0;
    font-weight: 400;
    font-size: 14px;
    color: var(--gray);
}

.form-note {
    text-align: center;
    color: var(--gray);
    font-size: 14px;
    margin-top: 20px;
}

/* ========================================
   CTA FINAL SECTION
   ======================================== */
.cta-final {
    background: var(--dark);
    color: var(--white);
    text-align: center;
    padding: 80px 0;
}

.cta-final h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-final p {
    font-size: 18px;
    opacity: 0.8;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 50px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
}

.contact-item i {
    color: var(--accent);
    font-size: 20px;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: #0f0f0f;
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.6);
    margin-top: 20px;
    line-height: 1.8;
}

.footer-column h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--accent);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--accent);
    transform: translateY(-3px);
}

/* ========================================
   MODAL
   ======================================== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--white);
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    text-align: center;
    padding: 40px 30px 20px;
    border-bottom: 1px solid var(--light);
}

.modal-header i {
    font-size: 60px;
    color: var(--success);
    margin-bottom: 20px;
}

.modal-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
}

.modal-body {
    padding: 30px;
}

.modal-body p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 15px;
}

.modal-contact {
    background: var(--light);
    border-radius: 10px;
    padding: 20px;
    margin-top: 20px;
}

.modal-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.modal-contact p:last-child {
    margin-bottom: 0;
}

.modal-contact i {
    color: var(--primary);
}

.modal-footer {
    padding: 20px 30px 30px;
    text-align: center;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 35px;
    height: 35px;
    background: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.close-modal:hover {
    background: var(--accent);
    color: var(--white);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 42px;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps::before {
        display: none;
    }

    .coverage-stats {
        grid-template-columns: repeat(3, 1fr);
    }

    .security-features {
        grid-template-columns: repeat(3, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    section {
        padding: 60px 0;
    }

    .hero {
        padding: 140px 0 80px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-features {
        grid-template-columns: 1fr;
    }

    .hero-cta {
        flex-direction: column;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .coverage-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .security-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .contact-info {
        flex-direction: column;
        gap: 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
    }
}

/* ===============================
   CARROSSEL DE LOGOS ACITEC
   =============================== */

.logos-carousel-wrapper {
    position: relative;
    padding: 2rem 0;
    overflow: hidden;
    /* IMPORTANTE: esconde o “rastro” do scroll */
}

.logos-carousel {
    display: flex;
    /* Fica na horizontal */
    gap: 4rem;
    align-items: center;
    width: max-content;
    /* largura cresce conforme o conteúdo */
    animation: acitec-scroll 40s linear infinite;
}

.logos-carousel:hover {
    animation-play-state: paused;
}

.logo-item {
    min-width: 180px;
    /* controla o espaço de cada logo */
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-item img {
    max-width: 160px;
    height: auto;
    object-fit: contain;
}

/* Animação de rolagem contínua */
@keyframes acitec-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
        /* como duplicamos os logos no HTML,
                                     50% fecha o loop perfeito */
    }
}

/* Responsivo */
@media (max-width: 768px) {
    .logos-carousel {
        animation-duration: 25s;
    }

    .logo-item {
        min-width: 140px;
    }

    .logo-item img {
        max-width: 130px;
    }
}


/* ========================================
   CERTIFICATES PREMIUM DESIGN
   ======================================== */
.certificates {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.certificates::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(#dfe4ea 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.5;
    pointer-events: none;
}

.certificates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2;
}

.cert-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    flex-direction: column;
}

.cert-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 86, 179, 0.15);
    background: #ffffff;
    border-color: rgba(0, 86, 179, 0.2);
}

.cert-preview-wrapper {
    background: linear-gradient(180deg, rgba(240, 242, 245, 0.5) 0%, rgba(255, 255, 255, 0) 100%);
    padding: 50px 20px 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Paper Stack Effect */
.cert-preview {
    width: 150px;
    height: 212px;
    background: #ffffff;
    border-radius: 4px;
    /* Paper corners */
    box-shadow:
        0 2px 4px rgba(0, 0, 0, 0.05),
        0 15px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.5s ease;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transform-style: preserve-3d;
}

/* Stack layers */
.cert-preview::before,
.cert-preview::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    z-index: -1;
    transition: all 0.5s ease;
}

.cert-preview::before {
    transform: rotate(-2deg);
}

.cert-preview::after {
    transform: rotate(2deg);
}

.cert-card:hover .cert-preview {
    transform: rotate(0deg) translateZ(20px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.cert-card:hover .cert-preview::before {
    transform: rotate(-6deg) translateX(-10px);
}

.cert-card:hover .cert-preview::after {
    transform: rotate(6deg) translateX(10px);
}


/* Decorations inside paper */
.cert-header-deco {
    height: 10px;
    background: var(--primary);
    width: 50%;
    border-radius: 2px;
    opacity: 0.9;
}

.cert-header-deco.gold {
    background: linear-gradient(45deg, #d4af37, #f9e38d);
}

.cert-header-deco.blue {
    background: linear-gradient(45deg, #0056b3, #00a0e9);
}

.cert-header-deco.green {
    background: linear-gradient(45deg, #28a745, #85e09f);
}

.cert-body-deco .line {
    height: 4px;
    background: #f1f3f5;
    border-radius: 2px;
    margin-bottom: 8px;
}

.cert-stamp {
    position: absolute;
    bottom: 25px;
    right: 25px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px dashed var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 18px;
    transform: rotate(-15deg);
    opacity: 0.8;
    background: rgba(255, 255, 255, 0.9);
}

.cert-stamp.gold {
    border-color: #d4af37;
    color: #d4af37;
}

.cert-stamp.green {
    border-color: #28a745;
    color: #28a745;
}

/* Specific variants */
.cert-seal {
    position: absolute;
    bottom: 25px;
    right: 25px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    transform: rotate(0deg);
    box-shadow: 0 4px 10px rgba(0, 86, 179, 0.3);
}

.cert-signature {
    position: absolute;
    bottom: 30px;
    right: 30px;
    font-size: 24px;
    color: var(--dark);
    opacity: 0.7;
    transform: rotate(-10deg);
}

.cert-icon-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 60px;
    color: var(--primary);
    opacity: 0.1;
    pointer-events: none;
}


.cert-content {
    padding: 30px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.cert-content h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 12px;
    font-family: 'Poppins', sans-serif;
}

.cert-content p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.btn-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 700;
    font-size: 15px;
    padding: 12px 24px;
    background: rgba(0, 86, 179, 0.08);
    /* Light primary bg */
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-link:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 86, 179, 0.2);
}

.cert-card:hover .btn-link {
    /* Make button prominent on card hover */
    background: var(--primary);
    color: var(--white);
}

@media (max-width: 768px) {
    .certificates-grid {
        grid-template-columns: 1fr;
        padding: 0 10px;
    }

    .cert-card {
        max-width: 400px;
        margin: 0 auto;
    }
}

/* ========================================
   TECHNOLOGY PREMIUM SECTION
   ======================================== */
/* ========================================
   TECHNOLOGY PREMIUM SECTION (Light Mode)
   ======================================== */
.technology {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    color: var(--dark);
}

/* Circuit/Tech Background Pattern (Subtle) */
.technology::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%230056b3' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 1;
}

.technology .container {
    position: relative;
    z-index: 2;
}

.technology .section-header h2 {
    color: var(--dark);
    text-shadow: none;
    background: none;
    -webkit-text-fill-color: initial;
}

.technology .section-tag {
    background: rgba(0, 86, 179, 0.1);
    color: var(--primary);
    border: 1px solid rgba(0, 86, 179, 0.2);
}

/* ========================================
   ASSOCIATES SECTION
   ======================================== */
.associados {
    padding: 80px 0;
    background: var(--white);
    text-align: center;
}

.associados .section-tag {
    background: rgba(0, 86, 179, 0.1);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 20px;
}

.associados h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 15px;
}

.associados p {
    color: var(--gray);
    font-size: 18px;
    margin-bottom: 50px;
}

.logos-carousel-wrapper {
    overflow: hidden;
    padding: 30px 0;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.logos-carousel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    /* Fixed container height */
    width: 220px;
    /* Fixed container width */
    padding: 10px;
}

.logo-item img {
    max-height: 80px;
    max-width: 100%;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

/* Tamanhos específicos para equilibrar visualmente */
.logo-lar img {
    max-height: 85px;
    /* Altura padrão para logos quadradas/verticais */
}

.logo-naturafrig img {
    max-height: 75px;
    /* Leve redução pois é oval mas densa */
}

/* Logos horizontais MUITO MAIORES para equilibrar com a LAR */
.logo-copacol img {
    max-height: 150px;
    width: 220px;
    /* Ocupa toda a largura do container */
    transform: scale(1.3);
    /* Zoom adicional garantido */
}

.logo-frimesa img {
    max-height: 150px;
    width: 220px;
    /* Ocupa toda a largura do container */
    transform: scale(1.3);
    /* Zoom adicional garantido */
}

/* Ajuste do hover para manter a escala relativa */
.logo-item.logo-copacol:hover img,
.logo-item.logo-frimesa:hover img {
    transform: scale(1.4);
    /* Cresce a partir do 1.3 */
}

/* Logos adicionais: GTF, Bello, Berneck */
.logo-item-gtf img {
    max-height: 90px;
    width: auto;
}

.logo-item-bello img {
    max-height: 80px;
    width: auto;
    transform: scale(1.1);
}

.logo-item-berneck img {
    max-height: 170px;
    /* Logo retangular fina */
    width: auto;
    transform: scale(1.2);
}

.logo-item-bello:hover img,
.logo-item-berneck:hover img {
    transform: scale(1.25);
}

.logo-item:hover img {
    transform: scale(1.05);
}

/* ========================================
   FORM SECTION (Blue Theme)
   ======================================== */
.form-section {
    background: linear-gradient(135deg, var(--primary) 0%, #003d80 100%);
}

.technology .section-header p {
    color: var(--gray);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.tech-item {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.tech-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 86, 179, 0) 0%, rgba(0, 86, 179, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.tech-item:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 86, 179, 0.3);
    box-shadow:
        0 20px 40px rgba(0, 86, 179, 0.1),
        0 0 20px rgba(0, 86, 179, 0.05);
    /* Glow */
}

.tech-item:hover::before {
    opacity: 1;
}

.tech-item i {
    font-size: 48px;
    margin-bottom: 25px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.4s ease;
    filter: drop-shadow(0 4px 10px rgba(0, 86, 179, 0.3));
}

.tech-item:hover i {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 8px 20px rgba(0, 86, 179, 0.5));
}

.tech-item h4 {
    color: var(--primary);
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    position: relative;
    z-index: 1;
}

.tech-item:hover h4 {
    color: var(--primary-dark);
}

/* ========================================
   PREMIUM TECHNOLOGY SECTION
   ======================================== */
.technology-premium {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background: #0f172a;
}

.tech-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 0;
    filter: grayscale(100%) contrast(1.2);
}

.technology-premium::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(15, 23, 42, 0.8) 0%, #0f172a 100%);
    z-index: 1;
}

#tech-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    /* Above background and overlay, below container */
    pointer-events: none;
    /* Let clicks pass through */
}

/* ========================================
   PAIN POINTS SECTION (DORES DO CLIENTE - RED ALERT)
   ======================================== */
.pain-points-section {
    padding: 120px 0;
    /* RED ALERT THEME: Dark background for high contrast */
    background: radial-gradient(circle at center, #1a1a1a 0%, #000000 100%);
    position: relative;
    overflow: hidden;
    color: #fff;
    border-top: 4px solid #dc3545;
    border-bottom: 4px solid #dc3545;
}

.pain-points-section .container {
    position: relative;
    z-index: 2;
    /* Ensure content is above the background pseudo-element */
}

/* Background animated elements */
.pain-points-section::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 2.24 5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ccc' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
    animation: floatingBackground 60s linear infinite;
    z-index: 0;
}

/* OVERRIDE Background animated elements - Dynamic Alert Pattern */
.pain-points-section::before {
    background-image:
        linear-gradient(45deg, #111 25%, transparent 25%, transparent 75%, #111 75%, #111),
        linear-gradient(45deg, #111 25%, transparent 25%, transparent 75%, #111 75%, #111);
    background-size: 60px 60px;
    background-position: 0 0, 30px 30px;
    animation: none;
    opacity: 0.2;
    /* Deixar mais sutil */
}

@keyframes alertBackground {
    0% {
        background-position: 0 0, 30px 30px;
    }

    100% {
        background-position: 60px 60px, 90px 90px;
    }
}


/* Estilos para o texto da seção de dor */
.pain-points-section .section-header h2 {
    font-size: 3rem;
    line-height: 1.2;
}

.pain-points-section p.lead-text {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 992px) {
    .pain-points-section .section-header h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .pain-points-section .section-header h2 {
        font-size: 26px !important;
        /* Forçar tamanho igual aos outros h2 */
    }

    .pain-points-section p.lead-text {
        font-size: 14px !important;
    }
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
    position: relative;
    z-index: 2;
}

.pain-card {
    background: rgba(255, 255, 255, 0.05);
    /* Glass dark */
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: left;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.pain-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(220, 53, 69, 0.3);
    border-color: #dc3545;
    background: rgba(20, 20, 20, 0.9);
    z-index: 10;
}

/* Card central DESTAQUE */
/* Card central DESTAQUE - PRETO E VERMELHO */
.pain-card.highlight {
    border: 2px solid #dc3545;
    background: linear-gradient(145deg, #1a0505 0%, #000 100%);
    transform: scale(1.05);
    box-shadow: 0 0 50px rgba(220, 53, 69, 0.4);
    animation: cardPulse 3s infinite;
}

.pain-card.highlight:hover {
    transform: scale(1.08);
    /* Cresce mais ainda */
    animation: none;
    /* Para animação ao hover */
}

/* Badge de "URGENTE" no card destaque */
/* Badge de "URGENTE" no card destaque */
.pain-card.highlight::before {
    content: '🚨 RISCO MÁXIMO';
    position: absolute;
    top: 0;
    right: 0;
    background: #dc3545;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    padding: 6px 15px;
    border-bottom-left-radius: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: blinkBadge 0.8s infinite;
}

@keyframes blinkBadge {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

@keyframes cardPulse {
    0% {
        transform: scale(1.05);
        box-shadow: 0 15px 40px rgba(220, 53, 69, 0.2);
    }

    50% {
        transform: scale(1.06);
        box-shadow: 0 20px 50px rgba(220, 53, 69, 0.3);
        border-color: #ff4d5e;
    }

    100% {
        transform: scale(1.05);
        box-shadow: 0 15px 40px rgba(220, 53, 69, 0.2);
    }
}

.pain-icon {
    width: 70px;
    height: 70px;
    background: #ffe3e3;
    border-radius: 50%;
    /* Redondo */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #dc3545;
    margin-bottom: 25px;
    transition: transform 0.3s ease;
}

.pain-card:hover .pain-icon {
    transform: rotate(15deg) scale(1.1);
    background: #dc3545;
    color: #fff;
}

.pain-card h3 {
    font-size: 24px;
    color: #fff;
    /* Texto branco */
    margin-bottom: 15px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.pain-card p {
    color: #adb5bd;
    /* Cinza claro */
    margin-bottom: 25px;
    line-height: 1.6;
    flex-grow: 1;
    font-size: 15px;
}

.pain-quote {
    font-style: italic;
    color: #dc3545;
    font-weight: 700;
    margin-top: auto;
    padding: 20px;
    background: rgba(220, 53, 69, 0.08);
    border-radius: 12px;
    border: 1px dashed #dc3545;
    position: relative;
}

/* Aspas decorativas */
.pain-quote::after {
    content: '"';
    position: absolute;
    top: -10px;
    right: 20px;
    font-size: 60px;
    color: rgba(220, 53, 69, 0.1);
    font-family: serif;
    line-height: 0;
}

/* CTA FLUTUANTE e PULSANTE */
.pain-cta-wrapper {
    text-align: center;
    margin-top: 60px;
    position: relative;
    z-index: 5;
}

.btn-pain-cta {
    background: #dc3545;
    color: white;
    font-size: 18px;
    font-weight: 700;
    padding: 18px 40px;
    border-radius: 50px;
    border: none;
    box-shadow: 0 10px 25px rgba(220, 53, 69, 0.4);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    animation: btnPulse 2s infinite;
}

.btn-pain-cta:hover {
    background: #c82333;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(220, 53, 69, 0.5);
    color: white;
}

@keyframes btnPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(220, 53, 69, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(220, 53, 69, 0);
    }
}

@keyframes floatingBackground {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(50px, 50px);
    }
}

.pain-vs .bad {
    color: #dc3545;
    display: flex;
    /* Flex para alinhar icone */
    align-items: center;
}

.pain-vs .bad::before {
    content: "✕";
    margin-right: 8px;
    display: inline-block;
}

.pain-vs .good {
    color: #28a745;
    display: flex;
    /* Flex para alinhar icone */
    align-items: center;
}

.pain-vs .good::before {
    content: "✓";
    margin-right: 8px;
    display: inline-block;
}


.technology-premium .container {
    position: relative;
    z-index: 2;
}

.technology-premium .section-header.light h2 {
    color: white;
    font-size: 36px;
    margin-bottom: 10px;
}

.technology-premium .section-header.light p {
    color: #94a3b8;
    font-size: 18px;
}

.tech-grid-premium {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.tech-card {
    background: rgba(30, 41, 59, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 35px 30px;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.tech-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: 0.4s;
}

.tech-card:hover {
    transform: translateY(-10px);
    background: rgba(30, 41, 59, 0.6);
    border-color: rgba(0, 198, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.tech-card:hover::before {
    opacity: 1;
}

.tech-icon-box {
    width: 64px;
    height: 64px;
    background: rgba(15, 23, 42, 0.6);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: 0.4s;
    position: relative;
    z-index: 2;
}

.tech-card:hover .tech-icon-box {
    background: linear-gradient(135deg, #00c6ff, #0072ff);
    border-color: transparent;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 20px rgba(0, 114, 255, 0.4);
}

.tech-icon-box i {
    font-size: 28px;
    color: #00c6ff;
    transition: 0.4s;
}

.tech-card:hover .tech-icon-box i {
    color: white;
    transform: scale(0.9);
}

.tech-card h4 {
    color: white;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
}

.tech-card p {
    color: #94a3b8;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 2;
    transition: 0.4s;
}

.tech-card:hover p {
    color: #cbd5e1;
}

/* Floating particles background (optional css-only improvement) */
.tech-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

@media (max-width: 992px) {
    .tech-grid-premium {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .tech-grid-premium {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   MODAL STYLES (Privacy Policy & Confirmation)
   ======================================== */
.modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    /* Black w/ opacity */
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: #fff;
    margin: 5% auto;
    /* 5% from the top and centered */
    padding: 30px;
    border: 1px solid #888;
    width: 90%;
    max-width: 500px;
    border-radius: 16px;
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close-modal {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 15px;
    right: 20px;
    cursor: pointer;
    transition: color 0.3s;
}

.close-modal:hover,
.close-modal:focus {
    color: #dc3545;
    text-decoration: none;
    cursor: pointer;
}

.modal-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    color: #333;
}

.modal-header i {
    font-size: 24px;
    color: #dc3545;
    /* Brand Red */
    margin-right: 15px;
}

.modal-header h3 {
    margin: 0;
    font-size: 22px;
}

.modal-body p {
    margin-bottom: 15px;
    color: #666;
    line-height: 1.6;
}

.modal-contact {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin-top: 15px;
}

.modal-contact p {
    margin-bottom: 5px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-footer {
    margin-top: 25px;
    text-align: right;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.modal-close-btn {
    background: #6c757d;
    border: none;
}

.modal-close-btn:hover {
    background: #5a6268;
}

/* ========================================
   WHATSAPP FLOATING BUTTON (legado - substituído pelo wa-widget inline)
   ======================================== */
.whatsapp-float { display: none; }

/* ========================================
   SCROLL TO TOP BUTTON
   ======================================== */
.scroll-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 86, 179, 0.3);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 86, 179, 0.5);
}

/* ========================================
   LOGOS CAROUSEL GRADIENT FADE
   ======================================== */
.logos-carousel-wrapper {
    overflow: hidden;
    position: relative;
}

.logos-carousel-wrapper::before,
.logos-carousel-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 10;
    pointer-events: none;
}

.logos-carousel-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--white) 0%, transparent 100%);
}

.logos-carousel-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--white) 0%, transparent 100%);
}

.logos-carousel {
    display: flex;
    gap: 60px;
    align-items: center;
    animation: scrollLogos 20s linear infinite;
}

.logo-item {
    flex-shrink: 0;
}

.logo-item img {
    height: 80px;
    max-width: 200px;
    object-fit: contain;
    filter: none;
    opacity: 1;
    transition: all 0.3s ease;
}

.logo-item img:hover {
    transform: scale(1.08);
    opacity: 1;
}

/* Aumentar logos específicas (Copacol e Berneck) */
.logo-copacol img,
.logo-item-berneck img {
    transform: scale(2.9);
    margin: 0 15px;
}

.logo-copacol img:hover,
.logo-item-berneck img:hover {
    transform: scale(3.0);
}

/* Frimesa um pouco menor */
.logo-frimesa img {
    transform: scale(2.0);
    margin: 0 15px;
}

.logo-frimesa img:hover {
    transform: scale(2.1);
}

@keyframes scrollLogos {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ========================================
   MOBILE RESPONSIVENESS
   ======================================== */
@media (max-width: 992px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .hero-visual {
        display: none;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-number {
        font-size: 32px;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .comparison-table {
        overflow-x: auto;
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps::before {
        display: none;
    }

    .coverage-stats {
        grid-template-columns: repeat(3, 1fr);
    }

    .section-header h2 {
        font-size: 32px;
    }

    .section-header p {
        font-size: 16px;
    }

    section {
        padding: 60px 0;
    }

    .security-features {
        grid-template-columns: repeat(3, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .certificates-grid {
        grid-template-columns: 1fr;
        padding: 0 10px;
    }

    .cert-card {
        max-width: 400px;
        margin: 0 auto;
    }

    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        gap: 15px;
    }

    .nav.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: flex;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 120px 0 60px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 15px;
    }

    .hero-features {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .feature-item {
        padding: 12px 16px;
    }

    .feature-item span {
        font-size: 13px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .stat-number {
        font-size: 28px;
    }

    .stat-label {
        font-size: 13px;
    }

    .section-header h2 {
        font-size: 26px;
    }

    .section-header p {
        font-size: 14px;
    }

    .section-tag {
        font-size: 12px;
        padding: 6px 14px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .benefit-card {
        padding: 30px 20px;
    }

    .benefit-card h3 {
        font-size: 18px;
    }

    .benefit-card p {
        font-size: 14px;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .coverage-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .coverage-stat h4 {
        font-size: 15px;
    }

    .security-features {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .security-feature h3 {
        font-size: 15px;
    }

    .security-feature p {
        font-size: 12px;
    }

    .security-icon {
        width: 65px;
        height: 65px;
    }

    .security-icon i {
        font-size: 28px;
    }

    .tech-grid {
        grid-template-columns: 1fr;
    }

    .tech-item h4 {
        font-size: 16px;
    }

    .tech-item i {
        font-size: 36px;
    }

    .testimonial-card {
        padding: 25px;
    }

    .testimonial-text {
        font-size: 14px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .btn-lg {
        padding: 14px 24px;
        font-size: 15px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-wrapper {
        padding: 30px 20px;
    }

    /* .whatsapp-float removido — substituído por .wa-widget */

    .scroll-to-top {
        width: 42px;
        height: 42px;
        font-size: 16px;
        bottom: 80px;
        right: 20px;
    }

    .logos-carousel-wrapper::before,
    .logos-carousel-wrapper::after {
        width: 60px;
    }

    .logo-item img {
        height: 55px;
        max-width: 140px;
    }

    .logos-carousel {
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 24px;
    }

    .hero-badge {
        font-size: 12px;
        padding: 8px 14px;
    }

    .section-header h2 {
        font-size: 22px;
    }

    .stat-number {
        font-size: 24px;
    }

    .btn-lg {
        padding: 12px 20px;
        font-size: 14px;
    }

    .step-number {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 15px 10px;
        font-size: 13px;
    }
}