/* ================================================================
   AMÉRICAS SCORE — STYLESHEET
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

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

:root {
    --primary:     #C8102E;
    --primary-dark:#8B0000;
    --dark:        #1a1a2e;
    --dark-2:      #2d1b1b;
    --gray:        #6c757d;
    --gray-light:  #f5f6f8;
    --white:       #ffffff;
    --shadow-sm:   0 4px 15px rgba(0,0,0,.07);
    --shadow-md:   0 8px 30px rgba(0,0,0,.1);
    --shadow-lg:   0 15px 50px rgba(0,0,0,.13);
    --tr:          all .3s ease;
}

body { font-family: 'Inter', sans-serif; color: #333; line-height: 1.7; font-size: 15px; }
a { text-decoration: none; }
img { max-width: 100%; height: auto; }
ul { list-style: none; padding: 0; margin: 0; }

/* ── Top Bar ───────────────────────────────────────── */
.top-bar { background: var(--dark); padding: 9px 0; font-size: 13px; }
.top-bar a, .top-bar span { color: rgba(255,255,255,.72); text-decoration: none; transition: var(--tr); display: inline-flex; align-items: center; gap: 6px; }
.top-bar a:hover { color: var(--primary); }
.top-bar .divider { color: rgba(255,255,255,.2); margin: 0 6px; }
.social-top a { display: inline-flex; align-items: center; justify-content: center; width: 28px; height: 28px; background: rgba(255,255,255,.08); border-radius: 50%; font-size: 12px; color: rgba(255,255,255,.65) !important; transition: var(--tr); }
.social-top a:hover { background: var(--primary); color: #fff !important; }
.americas-tag { color: var(--primary) !important; font-weight: 700; font-size: 12px; letter-spacing: .5px; }
.americas-tag i { color: var(--primary); }
.btn-login-top { display: inline-flex; align-items: center; gap: 6px; background: var(--primary); color: #fff !important; font-weight: 700; font-size: 12px; padding: 5px 14px; border-radius: 4px; transition: var(--tr); white-space: nowrap; }
.btn-login-top:hover { background: var(--primary-dark); color: #fff !important; }

/* ── Navbar ────────────────────────────────────────── */
.navbar { background: #fff !important; box-shadow: 0 2px 20px rgba(0,0,0,.07); padding: 14px 0; }
.navbar-brand img { height: 52px; width: auto; }
.nav-link { font-weight: 600; font-size: .92rem; color: var(--dark) !important; padding: 8px 14px !important; transition: var(--tr); border-radius: 6px; }
.nav-link:hover, .nav-link.active { color: var(--primary) !important; background: rgba(200,16,46,.06); }
.btn-nav-cta { background: var(--primary) !important; color: #fff !important; border-radius: 6px; padding: 9px 22px !important; font-weight: 700 !important; box-shadow: 0 4px 14px rgba(200,16,46,.3); }
.btn-nav-cta:hover { background: var(--primary-dark) !important; color: #fff !important; box-shadow: 0 6px 20px rgba(200,16,46,.4); transform: translateY(-1px); }
.btn-nav-login { border: 2px solid var(--primary) !important; color: var(--primary) !important; border-radius: 6px; padding: 7px 18px !important; font-weight: 700 !important; font-size: .85rem !important; transition: var(--tr); }
.btn-nav-login:hover { background: var(--primary) !important; color: #fff !important; }

/* ── Hero Banner Owl Carousel ──────────────────────── */
.hero-banner { position: relative; }
.hero-banner .hero-owl { display: block; }

/* Antes do Owl iniciar: mostrar só 1º slide, evita empilhamento feio */
.hero-owl:not(.owl-loaded) { overflow: hidden; max-height: 620px; }
.hero-owl:not(.owl-loaded) .banner-slide + .banner-slide { display: none; }

.banner-slide {
    height: 620px; position: relative; display: flex; align-items: center; overflow: hidden;
    background-size: cover; background-position: center; background-color: var(--dark);
}

/* Ken Burns via ::before — GPU (transform), não afeta texto nem overlay */
.banner-slide::before {
    content: '';
    position: absolute; inset: -8%;
    background-image: inherit;
    background-size: cover;
    background-position: center;
    will-change: transform;
    animation: banner-kb 20s ease-in-out infinite alternate;
}
@keyframes banner-kb {
    0%   { transform: scale(1.0)  translate(0, 0); }
    50%  { transform: scale(1.06) translate(-1.5%, 0.5%); }
    100% { transform: scale(1.03) translate(1%, -0.8%); }
}

/* Fade crossfade entre slides (sem Animate.css) */
.hero-owl.owl-loaded .owl-item             { opacity: 0; transition: opacity .75s ease; }
.hero-owl.owl-loaded .owl-item.active      { opacity: 1; }

/* Overlay sólido escuro — garante legibilidade em qualquer imagem */
.banner-overlay {
    position: absolute; inset: 0; z-index: 1;
    background: rgba(5, 7, 20, 0.80);
}
/* Toque de cor da marca */
.banner-overlay::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(125deg, rgba(200,16,46,.12) 0%, transparent 50%, rgba(0,0,0,.18) 100%);
}
/* Linha vermelha decorativa na base */
.banner-overlay::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(to right, var(--primary) 0%, rgba(200,16,46,.25) 55%, transparent 100%);
}
.banner-inner { position: relative; z-index: 2; padding: 60px 0; }
.banner-tag { display: inline-flex; align-items: center; gap: 8px; background: rgba(200,16,46,.92); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; padding: 7px 18px; border-radius: 50px; margin-bottom: 16px;  }
.banner-inner h1 { font-size: 3rem; font-weight: 900; color: #fff; line-height: 1.15; margin-bottom: 14px; text-shadow: 0 2px 6px rgba(0,0,0,.95), 0 6px 40px rgba(0,0,0,.7); }
.banner-inner h1 em { color: var(--primary); font-style: normal; }
.banner-inner p { font-size: 1.05rem; color: rgba(255,255,255,.92); max-width: 560px; margin-bottom: 24px; text-shadow: 0 1px 4px rgba(0,0,0,.9), 0 3px 18px rgba(0,0,0,.6); }
.banner-btns { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 24px; }
.btn-banner-primary { display: inline-flex; align-items: center; gap: 10px; background: var(--primary); color: #fff; font-weight: 700; padding: 15px 32px; border-radius: 6px; font-size: .93rem; transition: var(--tr);   }
.btn-banner-primary:hover { background: var(--primary-dark); color: #fff; transform: translateY(-3px);   }
.btn-banner-wpp { display: inline-flex; align-items: center; gap: 10px; background: #25D366; color: #fff; font-weight: 700; padding: 15px 32px; border-radius: 6px; font-size: .93rem; transition: var(--tr);  }
.btn-banner-wpp:hover { background: #1da851; color: #fff; transform: translateY(-3px); }
.btn-banner-outline { display: inline-flex; align-items: center; gap: 10px; background: transparent; border: 2px solid rgba(255,255,255,.6); color: #fff; font-weight: 600; padding: 13px 30px; border-radius: 6px; font-size: .93rem; transition: var(--tr); }
.btn-banner-outline:hover { background: rgba(255,255,255,.12); border-color: #fff; color: #fff; }
.banner-features { display: flex; flex-wrap: wrap; gap: 22px; }
.banner-feat { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,.8); font-size: .84rem; }
.banner-feat i { color: var(--primary); font-size: .95rem; }

/* ── Américas Wordplay ─────────────────────────────── */
.americas-wordplay { display: inline-flex; align-items: center; gap: 0; margin-bottom: 14px; margin-top: -4px; }
.aw-letter { font-size: 2.6rem; font-weight: 900; color: var(--primary); line-height: 1;   }
.aw-text { font-size: .73rem; color: rgba(255,255,255,.5); letter-spacing: .4px; padding-left: 2px; line-height: 1.4; }
.aw-text em { color: var(--primary); font-style: normal; font-weight: 700; }
 

/* Owl Carousel controles */
.hero-banner .owl-nav { position: absolute; top: 50%; left: 0; right: 0; transform: translateY(-50%); pointer-events: none; height: 0; overflow: visible; }
.hero-banner .owl-nav button { position: absolute; top: 0; transform: translateY(-50%); width: 52px; height: 52px; background: rgba(200,16,46,.75) !important; border-radius: 50% !important; border: none !important; color: #fff !important; font-size: 1rem !important; display: flex !important; align-items: center; justify-content: center; transition: var(--tr); z-index: 5; pointer-events: all; }
.hero-banner .owl-nav button:hover { background: var(--primary) !important; transform: translateY(-50%) scale(1.1); }
.hero-banner .owl-nav .owl-prev { left: 20px; }
.hero-banner .owl-nav .owl-next { right: 20px; }
.hero-banner .owl-dots { position: absolute !important; bottom: 22px; left: 50%; transform: translateX(-50%); display: flex !important; gap: 8px; z-index: 5; margin: 0 !important; padding: 0 !important; }
.hero-banner .owl-dot { line-height: 0; }
.hero-banner .owl-dot span { display: block; width: 10px; height: 10px; background: rgba(255,255,255,.4) !important; border-radius: 50%; transition: var(--tr); margin: 0 !important; }
.hero-banner .owl-dot.active span { background: var(--primary) !important; width: 32px; border-radius: 5px; }

/* ── Page Header (páginas internas) ────────────────── */
.page-header { position: relative; background-size: cover; background-position: center; min-height: 300px; display: flex; align-items: center; }
.page-header::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(26,26,46,.91) 0%, rgba(139,0,0,.72) 100%); }
.ph-content { position: relative; z-index: 2; text-align: center; }
.page-header h1 { color: #fff; font-weight: 800; font-size: 2.4rem; margin-bottom: 14px; }
.page-header .breadcrumb { justify-content: center; background: transparent; padding: 0; margin: 0; }
.page-header .breadcrumb-item { color: rgba(255,255,255,.65); font-size: .88rem; }
.page-header .breadcrumb-item a { color: rgba(255,255,255,.65); text-decoration: none; transition: var(--tr); }
.page-header .breadcrumb-item a:hover { color: var(--primary); }
.page-header .breadcrumb-item.active { color: var(--primary); }
.page-header .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.3); }

/* ── Section Helpers ───────────────────────────────── */
.sec-tag { display: inline-flex; align-items: center; gap: 8px; color: var(--primary); font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 10px; }
.sec-tag::before { content: ''; width: 28px; height: 2px; background: var(--primary); border-radius: 1px; }
.sec-title { font-weight: 800; color: var(--dark); font-size: 2.15rem; line-height: 1.25; }
.sec-title span, .sec-title em { color: var(--primary); font-style: normal; }
.sec-sub { color: var(--gray); font-size: .95rem; max-width: 620px; }

/* ── Botões Globais ────────────────────────────────── */
.btn-primary-site { display: inline-flex; align-items: center; gap: 10px; background: var(--primary); color: #fff; font-weight: 700; padding: 14px 32px; border-radius: 8px; font-size: .93rem; transition: var(--tr); box-shadow: 0 5px 18px rgba(200,16,46,.35); }
.btn-primary-site:hover { background: var(--primary-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(200,16,46,.45); }
.btn-outline-site { display: inline-flex; align-items: center; gap: 10px; border: 2px solid var(--primary); color: var(--primary); font-weight: 700; padding: 12px 30px; border-radius: 8px; font-size: .93rem; transition: var(--tr); }
.btn-outline-site:hover { background: var(--primary); color: #fff; }
.btn-wpp-site { display: inline-flex; align-items: center; gap: 10px; background: #25D366; color: #fff; font-weight: 700; padding: 14px 32px; border-radius: 8px; font-size: .93rem; transition: var(--tr); }
.btn-wpp-site:hover { background: #1da851; color: #fff; transform: translateY(-2px); }

/* ── Service Cards (home) ──────────────────────────── */
.services-section { padding: 90px 0; background: #fff; }
.service-card { border: none; border-radius: 16px; padding: 40px 28px; text-align: center; box-shadow: var(--shadow-sm); transition: var(--tr); height: 100%; position: relative; overflow: hidden; }
.service-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 4px; background: linear-gradient(to right, var(--primary), var(--primary-dark)); transform: scaleX(0); transition: var(--tr); }
.service-card:hover { transform: translateY(-10px); box-shadow: 0 20px 50px rgba(200,16,46,.14); }
.service-card:hover::after { transform: scaleX(1); }
.service-icon { width: 78px; height: 78px; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); border-radius: 20px; display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; transition: var(--tr); }
.service-card:hover .service-icon { border-radius: 50%; }
.service-icon i { font-size: 1.9rem; color: #fff; }
.service-card h4 { font-weight: 700; color: var(--dark); margin-bottom: 12px; font-size: 1.08rem; }
.service-card p { color: #666; font-size: .9rem; line-height: 1.7; }
.service-card .link-more { display: inline-flex; align-items: center; gap: 6px; color: var(--primary); font-weight: 700; font-size: .85rem; margin-top: 16px; transition: var(--tr); }
.service-card .link-more:hover { gap: 10px; }

/* ── About Section ─────────────────────────────────── */
.about-section { padding: 90px 0; background: var(--gray-light); }
.about-img-wrap { position: relative; }
.about-img-wrap img { border-radius: 18px; box-shadow: var(--shadow-lg); width: 100%; object-fit: cover; max-height: 480px; }
.about-badge { position: absolute; bottom: -18px; left: -15px; background: var(--primary); border-radius: 14px; padding: 18px 22px; text-align: center; box-shadow: 0 10px 30px rgba(200,16,46,.4); }
.about-badge .num { font-size: 2.3rem; font-weight: 900; color: #fff; line-height: 1; display: block; }
.about-badge .lbl { font-size: 11px; color: rgba(255,255,255,.85); margin-top: 4px; font-weight: 500; }
.check-list li { display: flex; align-items: flex-start; gap: 12px; padding: 9px 0; color: #555; font-size: .9rem; border-bottom: 1px solid #eee; }
.check-list li:last-child { border: none; }
.check-list li i { color: var(--primary); margin-top: 3px; flex-shrink: 0; }

/* ── Stats ─────────────────────────────────────────── */
.stats-section { background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%); padding: 70px 0; }
.stat-item { text-align: center; padding: 20px 10px; }
.stat-number { font-size: 3.2rem; font-weight: 900; color: var(--primary); display: block; line-height: 1; }
.stat-label { font-size: .88rem; color: rgba(255,255,255,.65); margin-top: 8px; display: block; }
.stat-divider { border-left: 1px solid rgba(255,255,255,.07); }

/* ── Why Choose ────────────────────────────────────── */
.why-section { padding: 90px 0; background: #fff; }
.why-card { display: flex; gap: 18px; margin-bottom: 26px; }
.why-icon { flex-shrink: 0; width: 56px; height: 56px; background: rgba(200,16,46,.08); border-radius: 14px; display: flex; align-items: center; justify-content: center; transition: var(--tr); }
.why-card:hover .why-icon { background: var(--primary); }
.why-card:hover .why-icon i { color: #fff; }
.why-icon i { color: var(--primary); font-size: 1.35rem; transition: var(--tr); }
.why-text h5 { font-weight: 700; color: var(--dark); margin-bottom: 5px; font-size: .98rem; }
.why-text p { color: #666; font-size: .87rem; margin: 0; }

/* ── CTA ───────────────────────────────────────────── */
.cta-section { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); padding: 80px 0; text-align: center; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; top: -60%; right: -5%; width: 420px; height: 420px; border-radius: 50%; background: rgba(255,255,255,.04); pointer-events: none; }
.cta-section::after { content: ''; position: absolute; bottom: -60%; left: -5%; width: 350px; height: 350px; border-radius: 50%; background: rgba(255,255,255,.03); pointer-events: none; }
.cta-section h2 { color: #fff; font-weight: 800; font-size: 2.2rem; position: relative; z-index: 1; }
.cta-section p { color: rgba(255,255,255,.88); font-size: 1.05rem; max-width: 580px; margin: 16px auto 0; position: relative; z-index: 1; }
.cta-btns { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; margin-top: 35px; position: relative; z-index: 1; }
.btn-cta-white { display: inline-flex; align-items: center; gap: 10px; background: #fff; color: var(--primary); font-weight: 800; padding: 15px 36px; border-radius: 8px; font-size: .95rem; transition: var(--tr); box-shadow: 0 6px 20px rgba(0,0,0,.15); }
.btn-cta-white:hover { background: var(--dark); color: #fff; transform: translateY(-3px); }
.btn-cta-wpp { display: inline-flex; align-items: center; gap: 10px; background: #25D366; color: #fff; font-weight: 700; padding: 15px 36px; border-radius: 8px; font-size: .95rem; transition: var(--tr); box-shadow: 0 6px 20px rgba(37,211,102,.35); }
.btn-cta-wpp:hover { background: #1da851; color: #fff; transform: translateY(-3px); }
.btn-cta-outline { display: inline-flex; align-items: center; gap: 10px; border: 2px solid rgba(255,255,255,.65); color: #fff; font-weight: 700; padding: 13px 34px; border-radius: 8px; font-size: .95rem; transition: var(--tr); }
.btn-cta-outline:hover { background: rgba(255,255,255,.12); }

/* ── Depoimentos ───────────────────────────────────── */
.testimonials-section { padding: 90px 0; background: var(--gray-light); }
.testimonial-card { background: #fff; border-radius: 16px; padding: 35px; box-shadow: var(--shadow-sm); height: 100%; transition: var(--tr); }
.testimonial-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.quote-icon { color: var(--primary); font-size: 3rem; line-height: 1; opacity: .35; margin-bottom: 12px; }
.stars { color: #f59e0b; font-size: .88rem; margin-bottom: 14px; }
.testimonial-card p { color: #555; line-height: 1.8; font-size: .92rem; font-style: italic; margin-bottom: 22px; }
.t-author { display: flex; align-items: center; gap: 14px; border-top: 1px solid #f0f0f0; padding-top: 18px; }
.t-avatar { width: 46px; height: 46px; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: .95rem; flex-shrink: 0; }
.t-info strong { color: var(--dark); font-size: .92rem; display: block; }
.t-info span { color: var(--gray); font-size: .8rem; }

/* ── Contact Section ───────────────────────────────── */
.contact-section { padding: 90px 0; }
.ci-card { background: var(--gray-light); border-radius: 16px; padding: 35px 28px; text-align: center; height: 100%; transition: var(--tr); }
.ci-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.ci-icon { width: 70px; height: 70px; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.ci-icon i { font-size: 1.75rem; color: #fff; }
.ci-card h5 { font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.ci-card p, .ci-card a { color: #666; font-size: .9rem; display: block; }
.ci-card a:hover { color: var(--primary); }
.wpp-card { background: linear-gradient(135deg, #25D366, #1da851); border-radius: 16px; padding: 35px 28px; text-align: center; height: 100%; transition: var(--tr); }
.wpp-card:hover { transform: translateY(-6px); box-shadow: 0 15px 40px rgba(37,211,102,.3); }
.wpp-card .ci-icon { background: rgba(255,255,255,.2); }
.wpp-card h5 { color: #fff; font-weight: 700; margin-bottom: 8px; }
.wpp-card p { color: rgba(255,255,255,.9); font-size: .9rem; }
.wpp-card .btn-wpp-lg { display: inline-flex; align-items: center; gap: 10px; background: #fff; color: #25D366; font-weight: 800; padding: 12px 28px; border-radius: 8px; font-size: .95rem; margin-top: 16px; transition: var(--tr); }
.wpp-card .btn-wpp-lg:hover { background: var(--dark); color: #fff; }
.horario-card { background: var(--dark); border-radius: 16px; padding: 35px 28px; text-align: center; height: 100%; }
.horario-card .ci-icon { background: rgba(200,16,46,.3); }
.horario-card h5 { color: #fff; }
.horario-card p { color: rgba(255,255,255,.7); }
.form-label { font-weight: 600; color: var(--dark); font-size: .88rem; }
.form-control, .form-select { border: 2px solid #e5e5e5; border-radius: 10px; padding: 13px 16px; font-size: .92rem; transition: var(--tr); }
.form-control:focus, .form-select:focus { border-color: var(--primary); box-shadow: 0 0 0 .2rem rgba(200,16,46,.1); }
.btn-submit { background: var(--primary); color: #fff; border: none; padding: 15px 40px; font-weight: 700; border-radius: 10px; font-size: 1rem; width: 100%; transition: var(--tr); }
.btn-submit:hover { background: var(--primary-dark); transform: translateY(-2px); }

/* ── About Page ────────────────────────────────────── */
.about-full-section { padding: 90px 0; }
.mvv-card { border-radius: 16px; padding: 36px 28px; text-align: center; height: 100%; transition: var(--tr); }
.mvv-card:hover { transform: translateY(-6px); }
.mvv-icon { width: 68px; height: 68px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.mvv-icon i { font-size: 1.8rem; }
.mvv-card h5 { font-weight: 700; margin-bottom: 12px; font-size: 1.05rem; }
.metric-card { border-radius: 16px; padding: 28px; text-align: center; }
.metric-num { font-size: 2.2rem; font-weight: 900; display: block; }

/* ── Services Page ─────────────────────────────────── */
.services-full-section { padding: 90px 0; }
.sdc { border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-sm); height: 100%; transition: var(--tr); }
.sdc:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(200,16,46,.14); }
.sdc-head { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); padding: 30px 28px; }
.sdc-head i { font-size: 2.4rem; color: #fff; margin-bottom: 14px; display: block; }
.sdc-head h4 { color: #fff; font-weight: 700; margin: 0; font-size: 1.1rem; }
.sdc-body { padding: 26px 28px; background: #fff; }
.sdc-body p { color: #666; font-size: .9rem; margin-bottom: 16px; line-height: 1.7; }
.sdc-body li { padding: 7px 0; color: #555; font-size: .88rem; display: flex; align-items: center; gap: 10px; border-bottom: 1px solid #f5f5f5; }
.sdc-body li:last-child { border: none; }
.sdc-body li i { color: var(--primary); font-size: .75rem; }
.steps-section { padding: 80px 0; background: var(--gray-light); }
.step-card { text-align: center; padding: 40px 20px; }
.step-num { width: 68px; height: 68px; background: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.7rem; font-weight: 900; margin: 0 auto 22px; box-shadow: 0 8px 25px rgba(200,16,46,.35); }
.step-arrow { display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 1.6rem; opacity: .4; padding-top: 30px; }

/* ── Feature Image Highlight ───────────────────────── */
.img-feature { border-radius: 18px; box-shadow: var(--shadow-lg); width: 100%; object-fit: cover; }
.img-feature-sm { border-radius: 14px; box-shadow: var(--shadow-md); width: 100%; object-fit: cover; }

/* ── Footer ────────────────────────────────────────── */
footer { background: var(--dark); color: rgba(255,255,255,.68); padding: 70px 0 0; }
.footer-logo-wrap { display: inline-block; background: rgba(255,255,255,.09); padding: 10px 18px; border-radius: 10px; margin-bottom: 20px; transition: var(--tr); }
.footer-logo-wrap:hover { background: rgba(255,255,255,.14); }
footer .footer-logo { height: 46px; width: auto; display: block; }
footer p { font-size: .88rem; line-height: 1.8; }
footer h5 { color: #fff; font-weight: 700; margin-bottom: 22px; padding-bottom: 12px; position: relative; font-size: .98rem; }
footer h5::after { content: ''; position: absolute; bottom: 0; left: 0; width: 34px; height: 3px; background: var(--primary); border-radius: 2px; }
.footer-links a { color: rgba(255,255,255,.62); text-decoration: none; display: flex; align-items: center; gap: 8px; margin-bottom: 10px; font-size: .87rem; transition: var(--tr); }
.footer-links a:hover { color: var(--primary); padding-left: 5px; }
.footer-links a i { font-size: .6rem; color: var(--primary); flex-shrink: 0; }
.fci { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; }
.fci-icon { width: 36px; height: 36px; background: rgba(200,16,46,.15); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.fci-icon i { color: var(--primary); font-size: .88rem; }
.fci-text { font-size: .85rem; color: rgba(255,255,255,.62); }
.fci-text a { color: rgba(255,255,255,.62); text-decoration: none; display: block; transition: var(--tr); }
.fci-text a:hover { color: var(--primary); }
.social-footer { display: flex; gap: 10px; margin-top: 20px; }
.social-footer a { width: 38px; height: 38px; background: rgba(255,255,255,.08); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.65); font-size: .88rem; transition: var(--tr); text-decoration: none; }
.social-footer a:hover { background: var(--primary); color: #fff; transform: translateY(-3px); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.07); padding: 22px 0; margin-top: 50px; }
.footer-bottom p { margin: 0; color: rgba(255,255,255,.38); font-size: .8rem; }
.footer-bottom a { color: rgba(255,255,255,.5); text-decoration: none; transition: var(--tr); }
.footer-bottom a:hover { color: var(--primary); }
.americas-footer-tag { color: var(--primary) !important; font-style: italic; font-size: .78rem !important; opacity: .8; }
.americas-footer-tag i { margin-right: 4px; }

/* ── WhatsApp Flutuante ────────────────────────────── */
.float-whatsapp { position: fixed; bottom: 30px; right: 30px; z-index: 1000; display: flex; align-items: center; }
.float-wpp-label { position: absolute; right: 72px; background: var(--dark); color: #fff; font-size: 12px; font-weight: 600; padding: 6px 14px; border-radius: 20px; white-space: nowrap; box-shadow: 0 4px 15px rgba(0,0,0,.2); opacity: 0; pointer-events: none; transition: var(--tr); }
.float-whatsapp:hover .float-wpp-label { opacity: 1; right: 78px; }
.float-wpp-btn { width: 62px; height: 62px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; text-decoration: none; box-shadow: 0 5px 25px rgba(37,211,102,.5); animation: wpp-pulse 2.5s infinite; transition: var(--tr); flex-shrink: 0; }
.float-wpp-btn:hover { transform: scale(1.12); animation: none; box-shadow: 0 8px 30px rgba(37,211,102,.6); }
.float-wpp-btn i { font-size: 2rem; color: #fff; }
@keyframes wpp-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(37,211,102,.7); }
    70%  { box-shadow: 0 0 0 18px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ── Scroll Top ────────────────────────────────────── */
.scroll-top { position: fixed; bottom: 104px; right: 32px; width: 46px; height: 46px; background: var(--primary); color: #fff; border: none; border-radius: 50%; display: none; align-items: center; justify-content: center; cursor: pointer; box-shadow: 0 5px 18px rgba(200,16,46,.4); z-index: 999; transition: var(--tr); font-size: .88rem; }
.scroll-top.show { display: flex; }
.scroll-top:hover { background: var(--primary-dark); transform: translateY(-3px); }

/* ── Alert Sucesso/Erro ────────────────────────────── */
.alert-success-site { background: #d1fadf; border: 1px solid #6fde9a; color: #1a7f37; border-radius: 10px; padding: 14px 20px; margin-bottom: 24px; display: flex; align-items: center; gap: 12px; font-weight: 600; }
.alert-error-site { background: #fde8e8; border: 1px solid #f7a1a1; color: #c00; border-radius: 10px; padding: 14px 20px; margin-bottom: 24px; display: flex; align-items: center; gap: 12px; font-weight: 600; }

/* ── Scroll Reveal ─────────────────────────────────── */
.reveal, .reveal-left {
    transition: opacity .65s ease, transform .65s ease;
}
.reveal      { opacity: 0; transform: translateY(26px); }
.reveal-left { opacity: 0; transform: translateX(-32px); }
.reveal.in-view, .reveal-left.in-view { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .10s; }
.reveal-d2 { transition-delay: .20s; }
.reveal-d3 { transition-delay: .30s; }
.reveal-d4 { transition-delay: .40s; }

/* ── Responsivo ────────────────────────────────────── */
@media (max-width: 991.98px) {
    .banner-inner h1 { font-size: 2.2rem; }
    .banner-slide { height: 520px; }
    .sec-title { font-size: 1.85rem; }
    .cta-section h2 { font-size: 1.85rem; }
}
@media (max-width: 767.98px) {
    .banner-inner h1 { font-size: 1.75rem; }
    .banner-slide { height: 460px; }
    .banner-inner { padding: 50px 0; }
    .americas-wordplay { display: none; }
    .hero-banner .owl-nav button { width: 40px; height: 40px; font-size: .85rem !important; }
    .hero-banner .owl-nav .owl-prev { left: 10px; }
    .hero-banner .owl-nav .owl-next { right: 10px; }
    .page-header { min-height: 220px; }
    .page-header h1 { font-size: 1.75rem; }
    .sec-title { font-size: 1.6rem; }
    .about-badge { left: 0; bottom: -14px; }
    .stats-section .col-6 { border-left: none !important; }
    .float-wpp-label { display: none; }
}
