/* Desentupidora Hydro Norte - bundle css (normalize + layout + mobile + seo) */

/* ==================== Normalize (reduzido) ==================== */
html { line-height: 1.15; -webkit-text-size-adjust: 100%; }
body { margin: 0; }
main { display: block; }
h1 { font-size: 2em; margin: .67em 0; }
hr { box-sizing: content-box; height: 0; overflow: visible; }
a { background-color: transparent; }
b, strong { font-weight: bolder; }
img { border-style: none; }
button, input, optgroup, select, textarea { font-family: inherit; font-size: 100%; line-height: 1.15; margin: 0; }
button, input { overflow: visible; }
button, select { text-transform: none; }
button, [type="button"], [type="reset"], [type="submit"] { -webkit-appearance: button; }
button::-moz-focus-inner { border: 0; padding: 0; }
[hidden] { display: none; }

/* ==================== Variáveis e base ==================== */
:root {
    --primary: #0055a5;
    --primary-dark: #003d7a;
    --secondary: #00a859;
    --accent: #ff6600;
    --dark: #333;
    --light: #f5f5f5;
    --gray: #666;
    --white: #fff;
    --whatsapp: #25d366;
    --border: #e1e1e1;
    --shadow: 0 3px 10px rgba(0, 0, 0, .1);
    --font: Arial, Helvetica, sans-serif;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font);
    color: var(--dark);
    line-height: 1.6;
    background: var(--white);
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4, h5, h6 {
    margin: 0 0 1rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark);
}

a { text-decoration: none; color: var(--primary); transition: color .3s; }
a:hover { color: var(--secondary); }
p { margin: 0 0 1rem; }
ul { list-style: none; padding: 0; margin: 0; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 15px; }

.section-title {
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 2rem;
    color: var(--primary);
    position: relative;
    padding-bottom: 15px;
    text-transform: uppercase;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background: var(--secondary);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

/* ==================== Botões ==================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    font-weight: 500;
    text-align: center;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all .3s;
    text-transform: uppercase;
    min-height: 48px;
}

.btn-sm { padding: 6px 12px; font-size: .875rem; min-height: 36px; }
.btn-lg { padding: 12px 24px; font-size: 1.1rem; }
.btn-primary { background: var(--primary); color: var(--white); }
.btn-primary:hover { background: var(--primary-dark); color: var(--white); }
.btn-whatsapp { background: var(--whatsapp); color: var(--white); }
.btn-whatsapp:hover { background: #1fba58; color: var(--white); }

/* ==================== Ícones SVG ==================== */
.ico {
    width: 1em;
    height: 1em;
    display: inline-block;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    vertical-align: -.125em;
    flex-shrink: 0;
}
.btn .ico { width: 1.1em; height: 1.1em; }

/* ==================== Header ==================== */
header { width: 100%; background: var(--light); box-shadow: var(--shadow); }

.top-bar {
    background: var(--primary);
    color: var(--white);
    padding: 10px 0;
    font-size: .9rem;
    min-height: 44px;
}

.top-bar .container { display: flex; justify-content: space-between; align-items: center; }
.info-list { display: flex; }
.info-list li { margin-right: 20px; display: flex; align-items: center; gap: 5px; }

.main-header { padding: 20px 0; display: flex; justify-content: space-between; align-items: center; }

.logo img { max-height: 60px; max-width: 242px; width: auto; height: auto; object-fit: contain; }

.contact-box, .phone-box { display: flex; align-items: center; }

.phone-link { display: flex; align-items: center; color: var(--dark); }
.phone-link .ico {
    background: var(--primary);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    padding: 10px;
    margin-right: 10px;
}
.phone-link div { display: flex; flex-direction: column; }
.phone-link span { font-size: .8rem; color: var(--gray); }
.phone-link strong { font-size: 1.2rem; color: var(--primary); }

.hours-box {
    margin-left: 20px;
    background: var(--secondary);
    padding: 8px 15px;
    border-radius: 20px;
    color: var(--white);
    font-weight: 500;
    font-size: .8rem;
}
.hours-box p { margin: 0; }

.action-buttons { display: flex; flex-direction: column; gap: 10px; }

.main-nav { background: var(--primary); padding: 10px 0; }
.nav-menu { display: flex; justify-content: space-between; }
.nav-menu li a {
    color: var(--white);
    padding: 10px 15px;
    display: block;
    position: relative;
    text-transform: uppercase;
    font-weight: 500;
}
.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--white);
    transition: width .3s;
}
.nav-menu li a:hover::after, .nav-menu li a.active::after { width: 100%; }

/* Mobile header */
.mobile-header {
    display: none;
    flex-direction: column;
    padding: 0;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, .1);
}
.mobile-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--primary);
    color: var(--white);
    padding: 8px 15px;
    gap: 12px;
}
.mobile-top .mobile-phone,
.mobile-top .ico { color: var(--white); }
.mobile-phone { font-weight: 600; display: inline-flex; align-items: center; gap: 6px; text-decoration: none; }
.menu-toggle {
    border: none;
    background: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    flex-direction: column;
    width: 44px;
    height: 44px;
    justify-content: center;
    align-items: center;
    flex: 0 0 auto;
}
.menu-toggle span {
    display: block;
    height: 3px;
    width: 25px;
    background: var(--white);
    margin: 3px 0;
    border-radius: 2px;
    transition: .3s;
}
.mobile-logo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    gap: 12px;
}
.mobile-logo a:first-child { flex: 0 0 auto; display: inline-block; }
.mobile-logo img { width: 120px; height: 119px; display: block; object-fit: contain; }

/* ==================== Hero ==================== */
.hero-banner { overflow: hidden; position: relative; width: 100%; background: #f8f9fa; contain: layout; }
.hero-link { display: block; line-height: 0; }
.hero-picture { display: block; width: 100%; aspect-ratio: 1200/456; }
.hero-picture img { width: 100% !important; height: 100% !important; display: block !important; object-fit: contain !important; }
@media (max-width: 768px) { .hero-picture { aspect-ratio: 480/576; } }

/* Hero title */
.hero-title-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 40px 0;
    text-align: center;
    color: var(--white);
    min-height: 240px;
}
.main-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, .3);
}
.hero-subtitle { font-size: 1.2rem; color: var(--white); opacity: .95; margin: 0; }

/* Scroll-to-top */
.scroll-to-top {
    position: fixed;
    bottom: 90px;
    right: 20px;
    z-index: 998;
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    cursor: pointer;
    font-size: 1.2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .2);
    display: none;
    align-items: center;
    justify-content: center;
}
.scroll-to-top.is-visible { display: flex; }

/* ==================== Seções de serviço ==================== */
.services-menu { padding: 60px 0; background: var(--light); }

.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; }

.service-box {
    text-align: center;
    background: var(--white);
    padding: 20px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: all .3s;
}
.service-box:hover { transform: translateY(-8px); box-shadow: 0 15px 25px rgba(0, 0, 0, .2); }
.service-box a { display: block; color: var(--dark); }
.service-box h3 { margin: 0; font-size: 1.1rem; font-weight: 500; }

.icon-wrapper {
    width: 80px;
    height: 80px;
    background: var(--light);
    border-radius: 50%;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 2rem;
    transition: all .3s;
}
.service-box:hover .icon-wrapper { background: var(--primary); color: var(--white); }

.service-image { aspect-ratio: 641/450; overflow: hidden; border-top-left-radius: 8px; border-top-right-radius: 8px; }
.service-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.service-card:hover .service-image img { transform: scale(1.05); }

.service-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, .1);
    transition: all .3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.service-card:hover { transform: translateY(-8px); box-shadow: 0 15px 25px rgba(0, 0, 0, .2); }

.service-content { padding: 25px; flex-grow: 1; display: flex; flex-direction: column; }
.service-content p { margin-bottom: 20px; flex-grow: 1; }
.service-content h3 { color: var(--primary); margin-bottom: 15px; font-size: 1.3rem; }

.services-detail { padding: 60px 0; }
.services-detail .services-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 30px; }

.title-section { background: var(--primary); color: var(--white); padding: 20px 0; margin: 30px 0; }
.title-section h2 { color: var(--white); text-align: center; margin: 0; font-size: 2rem; }

/* ==================== Sobre ==================== */
.about-section { padding: 60px 0; background: var(--light); }
.about-content { display: flex; align-items: center; gap: 40px; }
.about-text { flex: 1; }
.about-text h2 { color: var(--primary); margin-bottom: 20px; font-size: 1.8rem; }
.about-text h4 { color: var(--secondary); margin-bottom: 20px; }
.about-image { flex: 1; }
.about-image img { border-radius: 10px; box-shadow: 0 10px 25px rgba(0, 0, 0, .15); width: 100%; max-height: 600px; object-fit: cover; }

.about-section .action-buttons { display: flex; flex-direction: row; gap: 15px; margin-top: 25px; flex-wrap: wrap; }
.about-section .action-buttons .btn { flex: 1; min-width: 200px; }

/* ==================== Info / call-to-action ==================== */
.info-bar { background: var(--primary); color: var(--white); padding: 15px 0; text-align: center; }
.info-bar p { margin: 0; }

.service-info { background: var(--secondary); color: var(--white); padding: 15px 0; text-align: center; font-weight: 500; font-size: 1.2rem; }
.service-info p { margin: 0; }

.call-to-action-section {
    padding: 80px 0;
    background: var(--primary);
    color: var(--white);
    text-align: center;
}
.call-to-action-section h2 { color: var(--white); font-size: 2.5rem; margin-bottom: 15px; }
.call-to-action-section h3 { color: var(--white); font-size: 1.8rem; margin-bottom: 30px; font-weight: 400; }
.call-to-action-section .btn { font-size: 1.2rem; padding: 15px 30px; }

/* ==================== Cidades / atendimento ==================== */
.cities-section { padding: 60px 0; background: var(--light); }
.cities-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 30px; }
.city {
    background: var(--white);
    padding: 15px;
    text-align: center;
    border-radius: 4px;
    box-shadow: var(--shadow);
    font-weight: 500;
    transition: all .3s;
}
.city:hover { background: var(--primary); color: var(--white); transform: translateY(-8px); }

.attendance-section { padding: 60px 0; background: var(--white); }
.attendance-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin-top: 30px; }
.attendance-box {
    text-align: center;
    background: var(--light);
    padding: 30px 20px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: all .3s;
}
.attendance-box:hover { transform: translateY(-8px); background: var(--primary); color: var(--white); box-shadow: 0 15px 25px rgba(0, 0, 0, .2); }
.attendance-box:hover .icon-wrapper { background: var(--white); color: var(--primary); }
.attendance-box h3 { margin-top: 15px; margin-bottom: 0; font-size: 1.2rem; }

/* ==================== Vantagens / benefícios ==================== */
.advantages-section { padding: 80px 0; background: var(--light); }
.advantages-section .subtitle { text-align: center; font-size: 1.6rem; margin-bottom: 40px; color: var(--secondary); }
.advantages-text { max-width: 900px; margin: 0 auto 40px; }
.advantages-text p { margin-bottom: 20px; font-size: 1.1rem; line-height: 1.7; }

.advantages-list {
    max-width: 800px;
    margin: 0 auto 50px;
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}
.advantages-list li { margin-bottom: 15px; font-size: 1.1rem; display: flex; align-items: center; gap: 10px; }
.advantages-list li .ico { color: var(--secondary); font-size: 1.3rem; }

.benefits-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin-top: 40px; }
.benefit-box {
    text-align: center;
    background: var(--white);
    padding: 30px 20px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: all .3s;
}
.benefit-box:hover { transform: translateY(-8px); box-shadow: 0 15px 25px rgba(0, 0, 0, .2); }
.benefit-box .icon-wrapper { background: var(--primary); color: var(--white); }
.benefit-box h3 { margin-bottom: 15px; color: var(--primary); }
.benefit-box p { color: var(--gray); margin-bottom: 0; }

/* ==================== Pagamento ==================== */
.payment-section { padding: 60px 0; }
.payment-content { display: flex; align-items: center; gap: 30px; }
.payment-image { flex: 1; border-radius: 8px; box-shadow: 0 5px 15px rgba(0, 0, 0, .1); }
.payment-info { flex: 1; }
.payment-info h3 { color: var(--primary); margin-bottom: 15px; font-size: 1.5rem; }
.payment-methods { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 30px; }
.payment-method { display: flex; align-items: center; gap: 10px; font-weight: 500; }
.payment-method .ico { color: var(--primary); font-size: 1.5rem; }

/* ==================== Contato ==================== */
.contact-section { padding: 60px 0; background: var(--light); }
.contact-content { display: flex; gap: 30px; }
.contact-info { flex: 1; display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.contact-item { display: flex; align-items: flex-start; gap: 15px; }
.contact-item > .ico {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    padding: 10px;
    margin-top: 5px;
    flex-shrink: 0;
}
.contact-item h3 { margin-bottom: 5px; font-size: 1.1rem; }
.contact-item p { margin: 0; }

.contact-cta {
    flex: 1;
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .1);
    text-align: center;
}
.contact-cta h3 { color: var(--primary); margin-bottom: 15px; font-size: 1.5rem; }
.contact-cta p { margin-bottom: 20px; }
.contact-cta .btn { margin-bottom: 15px; width: 100%; }

/* ==================== Footer ==================== */
footer { background: var(--dark); color: var(--white); }
.footer-main { padding: 60px 0 30px; }
.footer-columns { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.footer-logo { margin-bottom: 15px; }
.footer-column h3 { color: var(--white); margin-bottom: 20px; position: relative; padding-bottom: 10px; }
.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--secondary);
}
.footer-menu li { margin-bottom: 10px; }
.footer-menu li a { color: #ccc; transition: all .3s; }
.footer-menu li a:hover { color: var(--white); padding-left: 5px; }

.footer-contact li { margin-bottom: 15px; display: flex; align-items: center; gap: 10px; }
.footer-contact li .ico { color: var(--secondary); }
.footer-contact li a { color: #ccc; }

.social-links { display: flex; gap: 10px; margin-top: 20px; }
.social-link {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, .1);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all .3s;
}
.social-link:hover { background: var(--secondary); color: var(--white); }

.footer-bottom { background: #222; padding: 15px 0; text-align: center; }
.footer-bottom p { margin: 0; font-size: .9rem; }

/* ==================== Botões flutuantes ==================== */
.phone-float, .whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    z-index: 1000;
    transition: all .3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, .3);
    animation: float 3s ease-in-out infinite;
    will-change: transform;
}
.phone-float { bottom: 100px; right: 20px; background: var(--primary); }
.phone-float:hover { background: var(--primary-dark); transform: scale(1.1); color: var(--white); }
.whatsapp-float { bottom: 20px; right: 20px; background: var(--whatsapp); }
.whatsapp-float:hover { background: #1fba58; transform: scale(1.1); color: var(--white); }

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

/* ==================== Depoimentos ==================== */
.testimonials-section { padding: 80px 0; background: var(--white); }
.testimonials-intro { text-align: center; font-size: 1.2rem; margin-bottom: 40px; color: var(--gray); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-bottom: 50px; }
.testimonial-card {
    background: var(--light);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, .1);
    transition: all .3s;
}
.testimonial-card:hover { transform: translateY(-8px); box-shadow: 0 15px 25px rgba(0, 0, 0, .2); }
.testimonial-content { padding: 30px; display: flex; flex-direction: column; }
.testimonial-stars { color: #fc0; font-size: 1.2rem; margin-bottom: 15px; }
.testimonial-content p { flex-grow: 1; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; flex-direction: column; }
.testimonial-author strong { color: var(--primary); margin-bottom: 5px; }
.testimonial-author span { font-size: .9rem; color: var(--gray); }

.testimonials-footer { text-align: center; padding: 30px; background: var(--light); border-radius: 8px; margin-top: 20px; }
.testimonials-footer p { font-size: 1.2rem; margin-bottom: 20px; }
.contact-info-box { background: var(--primary); color: var(--white); padding: 20px; border-radius: 8px; display: inline-block; }
.contact-info-box h3 { color: var(--white); margin-bottom: 15px; font-size: 1.4rem; }
.contact-numbers { display: flex; justify-content: center; gap: 20px; }
.contact-numbers a { color: var(--white); font-size: 1.1rem; display: flex; align-items: center; gap: 10px; }

/* ==================== Quick links / Certificações ==================== */
.quick-links-section { padding: 60px 0; background: var(--light); }
.quick-links-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.quick-links-box {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
}
.quick-links-box h3 {
    color: var(--primary);
    font-size: 1.4rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--secondary);
    text-align: center;
}
.quick-links-list li { margin-bottom: 12px; }
.quick-links-list li a { color: var(--dark); transition: all .3s; display: flex; align-items: center; }
.quick-links-list li a::before { content: '›'; margin-right: 10px; color: var(--secondary); font-weight: 700; }
.quick-links-list li a:hover { color: var(--primary); padding-left: 5px; }

.security-badges { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 20px; justify-content: center; align-items: center; flex-grow: 1; }
.security-badge {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 120px;
    height: 120px;
    padding: 10px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .1);
}
.security-badge img { max-width: 100%; max-height: 100%; object-fit: contain; }

.hero-box { background: var(--primary); color: var(--white); align-items: center; justify-content: center; text-align: center; }
.hero-box h3 { color: var(--white); border-bottom-color: rgba(255, 255, 255, .3); }
.hero-contact { display: flex; flex-direction: column; align-items: center; width: 100%; }
.hero-contact h4 { font-size: 1.1rem; margin-bottom: 5px; color: var(--white); }
.atendimento-phone { font-size: 1.4rem; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.hours-badge {
    background: var(--secondary);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 500;
    margin-bottom: 20px;
    min-width: 100px;
    text-align: center;
}
.hero-buttons { display: flex; flex-direction: column; gap: 10px; width: 100%; }
.hero-buttons .btn { white-space: nowrap; font-size: .9rem; padding: 10px 15px; }

.image-box { padding: 0; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.side-image-container { height: 100%; width: 100%; overflow: hidden; border-radius: 8px; display: flex; }
.side-image { width: 100%; height: 100%; object-fit: contain; border-radius: 8px; transition: transform .5s; max-height: 350px; }
.image-box:hover .side-image { transform: scale(1.05); }

/* ==================== Chegamos rápido ==================== */
.chegamos-rapido-section { padding: 60px 0; background: #111; position: relative; margin: 50px 0; }
.chegamos-rapido-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, .9) 40%, rgba(0, 0, 0, .5) 100%);
    z-index: 1;
}
.chegamos-rapido-container { display: flex; align-items: center; justify-content: space-between; position: relative; z-index: 2; }
.chegamos-rapido-text { flex: 1; color: #fff; padding: 30px; max-width: 600px; }
.chegamos-rapido-text h2 { color: #0cf; font-size: 2rem; margin-bottom: 20px; }
.chegamos-rapido-text h3 { color: #fff; font-size: 1.5rem; margin-bottom: 30px; text-transform: uppercase; }

.chegamos-phone, .chegamos-whatsapp { margin-bottom: 15px; }
.chegamos-phone a, .chegamos-whatsapp a { display: flex; align-items: center; color: #fff; font-size: 1.4rem; gap: 15px; transition: all .3s; }
.chegamos-phone a:hover, .chegamos-whatsapp a:hover { transform: translateY(-3px); }
.chegamos-phone .ico, .chegamos-whatsapp .ico {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    padding: 10px;
    font-size: 1.2rem;
}
.chegamos-phone .ico { background: var(--primary); }
.chegamos-whatsapp .ico { background: var(--whatsapp); }

.chegamos-rapido-image { flex: 1; display: flex; align-items: center; justify-content: center; height: 350px; overflow: hidden; }
.chegamos-rapido-image img { max-height: 100%; max-width: 100%; object-fit: contain; }

/* ==================== Breadcrumbs ==================== */
.breadcrumbs {
    background: var(--light);
    padding: 15px 0;
    margin-top: 30px;
    border-top: 1px solid var(--border);
}
.breadcrumbs ul { display: flex; flex-wrap: wrap; max-width: 1200px; margin: 0 auto; padding: 0 15px; }
.breadcrumbs li { display: flex; align-items: center; color: var(--gray); font-size: .9rem; }
.breadcrumbs li:not(:last-child)::after { content: '>'; margin: 0 8px; color: var(--gray); }
.breadcrumbs a { color: var(--primary); }
.breadcrumbs a:hover { text-decoration: underline; }

/* ==================== Animações de scroll ==================== */
@media (prefers-reduced-motion: no-preference) {
    .animate-on-scroll {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity .6s ease, transform .6s ease;
    }
    .animate-on-scroll.is-visible {
        opacity: 1;
        transform: none;
    }
}

/* ==================== Mobile menu (criado via JS) ==================== */
.mobile-menu {
    padding-top: 60px;
    position: fixed;
    inset: 0;
    background: var(--primary);
    z-index: 999;
    transform: translateX(-100%);
    transition: transform .3s ease;
    overflow-y: auto;
}
.mobile-menu.active { transform: translateX(0); }
.mobile-menu a {
    padding: 15px 20px;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
}
.mobile-menu-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 48px;
    height: 48px;
    color: #fff;
    background: rgba(0, 0, 0, .2);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}
.mobile-contact { padding: 20px; display: flex; flex-direction: column; gap: 10px; }

/* ==================== SEO content (inline previsto no crítico, aqui reforço) ==================== */
.seo-content, .seo-services, .seo-advantages { padding: 40px 0; background: #f5f8fa; margin-bottom: 30px; }
.seo-content h2, .seo-services h2, .seo-advantages h2 { color: var(--primary); font-size: 28px; margin-bottom: 20px; text-align: center; }
.seo-content h3, .seo-services h3, .seo-advantages h3 { color: var(--primary); font-size: 22px; margin-bottom: 15px; margin-top: 25px; }
.seo-service-item {
    padding: 20px;
    margin-bottom: 25px;
    border-radius: 5px;
    background: #fff;
    box-shadow: var(--shadow);
    transition: transform .3s;
}
.seo-service-item:hover { transform: translateY(-5px); }
.seo-advantage-list { padding-left: 0; }
.seo-advantage-list li { position: relative; padding: 10px 0 10px 30px; border-bottom: 1px solid #eaeaea; }
.seo-advantage-list li::before { content: '✓'; position: absolute; left: 0; top: 10px; color: var(--primary); font-weight: 700; }

/* ==================== Breakpoints ==================== */
@media (max-width: 1200px) { .container { max-width: 960px; } }

@media (max-width: 992px) {
    .container { max-width: 720px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .main-header { flex-direction: column; align-items: center; text-align: center; }
    .logo { margin-bottom: 20px; }
    .contact-box, .action-buttons { margin-top: 20px; }
    .footer-columns { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .attendance-grid, .benefits-grid { grid-template-columns: repeat(2, 1fr); }
    .chegamos-rapido-container { flex-direction: column; }
    .chegamos-rapido-text { text-align: center; margin-bottom: 30px; }
    .chegamos-phone a, .chegamos-whatsapp a { justify-content: center; }
}

@media (max-width: 768px) {
    .container { max-width: 540px; padding: 0 15px; }
    .main-nav, .top-bar, .main-header { display: none; }
    .mobile-header { display: flex; position: sticky; top: 0; z-index: 900; }
    .about-content, .payment-content, .contact-content { flex-direction: column; }
    .about-text, .about-image, .payment-image, .payment-info { width: 100%; }
    .about-image { order: -1; margin: 0 auto 30px; max-width: 500px; }
    .about-text { text-align: center; }
    .about-image img { max-height: 300px; }

    .testimonials-grid { grid-template-columns: 1fr; }
    .contact-numbers { flex-direction: column; gap: 10px; }
    .contact-info { grid-template-columns: 1fr; }

    .services-grid, .services-detail .services-grid { grid-template-columns: 1fr; gap: 20px; }
    .service-card { max-width: 500px; margin: 0 auto 30px; }
    .service-image { aspect-ratio: 1/1; }

    .cities-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .attendance-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
    .benefits-grid { grid-template-columns: 1fr; gap: 20px; }
    .quick-links-grid { grid-template-columns: 1fr; gap: 30px; }
    .footer-columns { grid-template-columns: 1fr; gap: 30px; }

    .about-section .action-buttons { flex-direction: column; }
    .about-section .action-buttons .btn { width: 100%; }

    .phone-float, .whatsapp-float { width: 55px; height: 55px; font-size: 1.3rem; }

    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.2rem; }
    .section-title { margin-bottom: 1.5rem; }

    .main-title { font-size: 1.8rem; line-height: 1.3; }
    .hero-subtitle { font-size: 1rem; }
    .hero-title-section { padding: 30px 0; min-height: 280px; }

    .seo-content h2, .seo-services h2, .seo-advantages h2 { font-size: 24px; }
    .seo-content h3, .seo-services h3, .seo-advantages h3 { font-size: 20px; }
    .seo-service-item { padding: 15px; }

    .call-to-action-section { padding: 30px 15px; }
    .call-to-action-section h2 { font-size: 1.4rem; margin-bottom: 10px; }
    .call-to-action-section h3 { font-size: 1.2rem; margin-bottom: 20px; }

    img[loading="lazy"] { transition: opacity .2s; opacity: 1; }
    input, select, textarea { font-size: 16px; padding: 12px 15px; margin-bottom: 15px; }
}

@media (max-width: 576px) {
    .top-bar .container { flex-direction: column; }
    .info-list { flex-direction: column; align-items: center; margin-bottom: 10px; }
    .info-list li { margin-bottom: 5px; }
    .cities-grid, .payment-methods, .attendance-grid { grid-template-columns: 1fr; }
    .title-section h2 { font-size: 1.5rem; }
    .section-title { font-size: 1.5rem; }
    .main-title { font-size: 1.5rem; }
    .hero-subtitle { font-size: .9rem; }
}
