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

:root {
    --verde-premium: #38492F;
    --verde-escuro: #2A3422;
    --dourado-elegante: #C9A961;
    --bege-claro: #F5F1E8;
    --cinza-escuro: #1A1A1A;
    --verde-suave: #4A5D3F;
}

html {
    scroll-behavior: auto;
    overflow-x: hidden;
}

body {
    font-family: 'Lato', sans-serif;
    line-height: 1.6;
    color: var(--cinza-escuro);
    overflow-x: hidden;
    background: var(--bege-claro);
}

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

/* ========== PRELOADER ========== */
.preloader {
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg, var(--verde-escuro) 0%, var(--verde-premium) 100%);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s, visibility 0.5s;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-inner {
    text-align: center;
}

.preloader-logo {
    height: 120px;
    margin-bottom: 2rem;
    animation: float 2s ease-in-out infinite;
}

.preloader-bar {
    width: 200px;
    height: 4px;
    background: rgba(255,255,255,0.2);
    border-radius: 10px;
    overflow: hidden;
}

.preloader-progress {
    height: 100%;
    background: var(--dourado-elegante);
    width: 0%;
    animation: loading 2s ease-out forwards;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes loading {
    to { width: 100%; }
}

/* ========== CURSOR GLOW ========== */
.cursor-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(201,169,97,0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s;
    opacity: 0;
}

@media (hover: hover) {
    body:hover .cursor-glow {
        opacity: 1;
    }
}

/* ========== FLOATING LOGO ========== */
.floating-logo {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.floating-logo.hidden {
    transform: translateX(-50%) translateY(-100%);
    opacity: 0;
}

.logo {
    height: 60px;
    transition: transform 0.3s;
}

.logo:hover {
    transform: scale(1.05);
}

/* ========== HERO ========== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--verde-escuro) 0%, var(--verde-premium) 100%);
    color: var(--bege-claro);
    text-align: center;
    overflow: hidden;
    padding: 150px 20px 100px;
}

.hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(201,169,97,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201,169,97,0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1100px;
}

.hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-sub {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--bege-claro);
    font-size: 0.9rem;
    opacity: 0.7;
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, var(--dourado-elegante), transparent);
    animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
    0%, 100% { transform: translateY(0); opacity: 0; }
    50% { transform: translateY(20px); opacity: 1; }
}

/* ========== BUTTONS ========== */
.btn-primary, .btn-form {
    background: var(--dourado-elegante);
    color: var(--cinza-escuro);
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn-primary::before, .btn-form::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.btn-primary:hover::before, .btn-form:hover::before {
    transform: translateX(100%);
}

.btn-primary:hover, .btn-form:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.4);
}

/* ========== MAGNETIC EFFECT ========== */
.magnetic {
    transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

/* ========== SECTION TRANSITIONS ========== */
.section-transition {
    position: relative;
    height: 120px;
    overflow: hidden;
    margin-top: -2px;
    margin-bottom: -2px;
    z-index: 2;
}

.section-transition svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 2;
}

.transition-dark-to-light {
    background: linear-gradient(135deg, var(--verde-escuro), var(--verde-premium));
}

.transition-light-to-dark {
    background: var(--verde-premium);
}

.transition-light-to-dark-alt {
    background: var(--verde-escuro);
}

.transition-dark-to-light-alt {
    background: var(--verde-escuro);
}

.transition-glow {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 80px;
    background: radial-gradient(ellipse, rgba(201,169,97,0.3) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s;
    z-index: 1;
}

.section-transition.in-view .transition-glow {
    opacity: 1;
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.4; }
    50% { transform: translate(-50%, -50%) scale(1.3); opacity: 1; }
}

@media (max-width: 768px) {
    .section-transition {
        height: 70px;
    }

    .transition-glow {
        width: 300px;
        height: 50px;
    }
}

/* ========== SECTIONS ========== */
section {
    padding: 100px 20px;
    position: relative;
}

section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 3rem;
    text-align: center;
}

/* ========== PROBLEM ========== */
.problem {
    background: white;
}

.problem h2 {
    color: var(--verde-premium);
}

.problem-text {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.8;
    text-align: center;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.problem-item {
    padding: 2rem;
    background: var(--bege-claro);
    border-radius: 12px;
    border-left: 4px solid var(--dourado-elegante);
    transition: all 0.3s;
}

.problem-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.problem-item i {
    font-size: 2.5rem;
    color: var(--dourado-elegante);
    margin-bottom: 1rem;
    display: block;
}

.problem-item p {
    font-weight: 600;
    color: var(--cinza-escuro);
}

/* ========== SOLUTION SECTION ========== */
.solution {
    background: var(--verde-premium);
    position: relative;
    overflow: hidden;
}

.solution-header {
    text-align: center;
    margin-bottom: 4rem;
}

.solution-tag {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(201,169,97,0.2);
    color: var(--dourado-elegante);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border: 1px solid rgba(201,169,97,0.3);
}

.solution h2 {
    color: var(--bege-claro);
    margin-bottom: 1rem;
}

.solution-subtitle {
    color: var(--bege-claro);
    opacity: 0.9;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.bento-card {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    padding: 1.8rem;
    border-radius: 20px;
    border: 1px solid rgba(201, 169, 97, 0.2);
    color: var(--bege-claro);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    overflow: hidden;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
}

.bento-hero {
    background: rgba(255, 255, 255, 0.08);
}

.bento-tall {
}

.bento-wide {
}

@media (max-width: 1200px) {
    .bento-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

@media (max-width: 480px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }
}

.bento-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(201,169,97,0.15), transparent 50%);
    opacity: 0;
    transition: opacity 0.3s;
}

.bento-card:hover::before {
    opacity: 1;
}

.bento-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--dourado-elegante);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.bento-icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(201,169,97,0.15);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    transition: all 0.3s;
}

.bento-card:hover .bento-icon-wrapper {
    background: rgba(201,169,97,0.25);
    transform: scale(1.1) rotate(5deg);
}

.bento-icon-wrapper i {
    font-size: 1.8rem;
    color: var(--dourado-elegante);
}

.bento-content {
    flex: 1;
}

.bento-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.bento-card p {
    opacity: 0.9;
    line-height: 1.5;
    font-size: 0.9rem;
}

.bento-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(201,169,97,0.15), transparent 50%);
    opacity: 0;
    transition: opacity 0.3s;
}

.bento-card:hover::before {
    opacity: 1;
}

.bento-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--dourado-elegante);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.bento-icon-wrapper {
    width: 70px;
    height: 70px;
    background: rgba(201,169,97,0.15);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s;
}

.bento-card:hover .bento-icon-wrapper {
    background: rgba(201,169,97,0.25);
    transform: scale(1.1) rotate(5deg);
}

.bento-icon-wrapper i {
    font-size: 2rem;
    color: var(--dourado-elegante);
}

.bento-content {
    flex: 1;
}

.bento-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: var(--dourado-elegante);
    color: var(--cinza-escuro);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.bento-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.bento-hero h3 {
    font-size: 1.8rem;
}

.bento-card p {
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.bento-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bento-features li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.6rem 0;
    font-size: 0.95rem;
    opacity: 0.9;
}

.bento-features i {
    color: var(--dourado-elegante);
    font-size: 0.9rem;
}

.bento-glow {
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, var(--dourado-elegante), var(--verde-suave));
    border-radius: 20px;
    opacity: 0;
    filter: blur(20px);
    transition: opacity 0.3s;
    z-index: -1;
}

.bento-card:hover .bento-glow {
    opacity: 0.3;
}

/* ========== BENEFITS ========== */
.benefits {
    background: white;
}

.benefits h2 {
    color: var(--verde-premium);
}

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

.benefit-item {
    padding: 2rem 1rem;
    text-align: center;
    transition: transform 0.3s;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-item i {
    font-size: 2.5rem;
    color: var(--dourado-elegante);
    margin-bottom: 1rem;
    display: block;
}

.benefit-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
}

.benefit-source {
    max-width: 700px;
    margin: 0 auto;
    padding: 2rem;
    background: var(--bege-claro);
    border-radius: 8px;
    font-size: 0.95rem;
    text-align: center;
}

.benefit-source a {
    color: var(--verde-premium);
    text-decoration: none;
    font-weight: 600;
}

/* ========== SOCIAL PROOF ========== */
.social-proof {
    background: var(--verde-escuro);
    color: var(--bege-claro);
}

.social-proof h2 {
    color: var(--bege-claro);
}

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

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    color: var(--dourado-elegante);
    line-height: 1;
}

.stat-suffix {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--dourado-elegante);
}

.stat-label {
    display: block;
    font-size: 1.1rem;
    margin-top: 1rem;
    opacity: 0.9;
}

/* ========== PROCESS ========== */
.process {
    background: var(--bege-claro);
}

.process h2 {
    color: var(--verde-premium);
}

.process-timeline {
    position: relative;
}

.timeline-line {
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 2px;
    background: linear-gradient(to right, var(--dourado-elegante), var(--verde-suave));
    z-index: 0;
}

@media (max-width: 768px) {
    .timeline-line {
        display: none;
    }
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.process-step {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--dourado-elegante);
    color: var(--cinza-escuro);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    box-shadow: 0 5px 15px rgba(201,169,97,0.3);
}

.process-step h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--verde-premium);
}

/* ========== FORM ========== */
.form-section {
    background: white;
}

.form-section h2 {
    color: var(--verde-premium);
}

.diagnostic-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.diagnostic-form input,
.diagnostic-form textarea,
.diagnostic-form select {
    padding: 1rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Lato', sans-serif;
    transition: all 0.3s;
    background: white;
}

.diagnostic-form input:focus,
.diagnostic-form textarea:focus,
.diagnostic-form select:focus {
    outline: none;
    border-color: var(--dourado-elegante);
    box-shadow: 0 0 0 3px rgba(201,169,97,0.1);
}

/* ========== CERTIFICATIONS ========== */
.certifications {
    background: var(--bege-claro);
}

.certifications h2 {
    color: var(--verde-premium);
}

.cert-intro {
    text-align: center;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

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

.cert-item {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.cert-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.cert-item i {
    font-size: 2.5rem;
    color: var(--dourado-elegante);
    margin-bottom: 1.5rem;
    display: block;
}

.cert-item h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--verde-premium);
}

/* ========== AWS CASES ========== */
.aws-cases {
    background: white;
}

.aws-cases h2 {
    color: var(--verde-premium);
}

.cases-intro {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.case-item {
    background: var(--bege-claro);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.case-item:hover {
    background: white;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.case-item i {
    font-size: 3rem;
    color: var(--dourado-elegante);
    margin-bottom: 1rem;
    display: block;
}

.case-item h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    color: var(--verde-premium);
}

/* ========== FINAL CTA ========== */
.final-cta {
    background: var(--verde-escuro);
    color: var(--bege-claro);
}

.final-cta h2 {
    color: var(--bege-claro);
    font-size: clamp(2rem, 4vw, 2.8rem);
}

.final-cta p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    opacity: 0.9;
    text-align: center;
}

/* ========== FOOTER ========== */
.footer {
    background: linear-gradient(135deg, var(--verde-escuro) 0%, var(--cinza-escuro) 100%);
    color: var(--bege-claro);
    padding: 4rem 20px 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand p {
    margin-top: 1.5rem;
    opacity: 0.8;
    line-height: 1.6;
}

.footer-logo {
    height: 40px;
}

.footer h4 {
    color: var(--dourado-elegante);
    margin-bottom: 1.5rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
}

.footer-contact p {
    margin-bottom: 1rem;
    opacity: 0.9;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.footer-contact i {
    color: var(--dourado-elegante);
}

.footer-contact a {
    color: var(--bege-claro);
    text-decoration: none;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
    font-size: 1.2rem;
    border: 1px solid rgba(255,255,255,0.1);
}

.social-links a:hover {
    background: var(--dourado-elegante);
    color: var(--cinza-escuro);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    opacity: 0.7;
    font-size: 0.95rem;
}

/* ========== WHATSAPP FLOAT ========== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s;
    animation: pulse 2s infinite;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7); }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .logo {
        height: 45px;
    }

    .floating-logo {
        top: 12px;
    }
    
    section {
        padding: 60px 16px;
    }
    
    .hero {
        padding: 100px 16px 60px;
        min-height: auto;
    }

    .hero h1 {
        font-size: 1.6rem;
    }

    .hero h1 br {
        display: none;
    }

    .hero-content {
        max-width: 100%;
    }

    .btn-primary, .btn-form {
        padding: 0.85rem 2rem;
        font-size: 0.95rem;
        width: 100%;
        text-align: center;
    }
    
    .bento-grid,
    .problem-grid,
    .benefits-grid,
    .process-grid,
    .cert-grid,
    .cases-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .bento-card {
        padding: 1.5rem;
        -webkit-backdrop-filter: blur(10px);
    }

    .bento-icon-wrapper {
        width: 55px;
        height: 55px;
    }

    .diagnostic-form input,
    .diagnostic-form textarea,
    .diagnostic-form select {
        font-size: 16px;
    }

    .cases-intro,
    .cert-intro {
        font-size: 0.95rem;
    }

    .final-cta p {
        font-size: 1rem;
    }

    .final-cta {
        text-align: center;
    }

    .case-item {
        padding: 1.8rem;
    }

    .benefit-source {
        padding: 1.2rem;
        font-size: 0.85rem;
    }

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

    .process-step {
        padding: 1.8rem;
    }

    .cert-item {
        padding: 1.8rem;
    }

    .problem-text {
        font-size: 1rem;
    }

    .solution-header {
        margin-bottom: 2.5rem;
    }
    
    .footer {
        padding: 2.5rem 16px 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        margin-bottom: 2rem;
        padding-bottom: 2rem;
    }

    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-brand p {
        margin-top: 1rem;
        font-size: 0.9rem;
    }

    .footer-logo {
        height: 30px;
    }

    .footer h4 {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }
    
    .footer-contact p {
        justify-content: center;
        font-size: 0.95rem;
    }

    .footer-contact a {
        color: var(--bege-claro);
        text-decoration: none;
    }
    
    .social-links {
        justify-content: center;
    }

    .social-links a {
        width: 48px;
        height: 48px;
        font-size: 1.3rem;
    }

    .footer-bottom {
        padding-top: 1.5rem;
        font-size: 0.8rem;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.4rem;
    }

    section h2 {
        font-size: 1.4rem;
        margin-bottom: 2rem;
    }

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

    .benefits-grid {
        gap: 1rem;
    }

    .benefit-item {
        padding: 1.2rem 0.8rem;
    }
}

/* ========== ACCESSIBILITY ========== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
