* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif ;
}

html {
    scroll-padding-top: 215px;
}

:root {
    --orange: #ED760E;
    --orange-dark: #c45e08;
    --purple-dark: #6B07B0;
    --white: #FFFFFF;
    --dark: #0B0014;
    --border: 0.1rem solid rgba(255, 255, 255, 0.3);
    --navbar: hsl(187, 72%, 93%);
}

body {
    background-color: #c3dad3;
    color: #eee;
    font-size: 12px;
}

/* ── HEADER ── */
header {
    position:fixed;
    top: 0;
    width: 100%;
    height: 95px;
    backdrop-filter: blur(5px);
    display:flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 60px;
    z-index: 99;
    background: rgba(174, 210, 245, 0.8);
}

.logo-img {
    height: 165px;
    padding: 0  14px;
   
    
    
}

header nav {
    display: flex;
    gap: 65px;
}

header nav a {
    color: blue;
    text-decoration: none;
    font-size: 20px;
    font-weight: 540;
    cursor: pointer;
    text-transform: none;
}

/* ── HAMBURGER ── */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 100;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 3px;
    background: #0a1f3c;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

header nav a:hover {
    color: var(--orange);
    border-bottom: 0.4rem solid var(--purple-dark);
}

/* ── LANGUAGE SWITCHER ── */
.lang-switcher {
    position: relative;
    margin-left: 10px;
}
.lang-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255, 0.8);
    border: 1px solid rgba(255,255,255,0.2);
    color:#6B07B0;
    padding: 8px 13px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1.2em;
    font-weight: 600;
    transition: background 0.2s, border-color 0.2s;
    white-space: nowrap;
}
.lang-btn:hover { background: rgba(99, 101, 236, 0.293); border-color: var(--orange); }
.lang-dropdown {
    display: none;
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    background: #0d1f3c;
    border: 1px solid #1e3a5f;
    border-radius: 10px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
    overflow: hidden;
    z-index: 9999;
    min-width: 145px;
    animation: fadeDown 0.2s ease;
}
.lang-dropdown.open { display: block; }
@keyframes fadeDown {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}
.lang-item {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 10px 16px;
    background: none;
    border: none;
    color: #ccd6f6;
    font-size: 0.88em;
    font-weight: 500;
    cursor: pointer;
    text-align:left;
    transition: background 0.2s, color 0.2s;
}
.lang-item:hover, .lang-item.active {
    background: rgba(237,118,14,0.13);
    color: var(--orange);
}
.lang-divider {
    height: 1px;
    background: rgba(255,255,255,0.08);
    margin: 3px 0;
}
.lang-divider-label {
    font-size: 0.68em;
    color: rgba(255,255,255,0.28);
    padding: 6px 16px 2px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    display: block;
}
.flag-cat {
    display: inline-flex;
    width: 22px;
    height: 15px;
    border-radius: 2px;
    overflow: hidden;
    flex-shrink: 0;
    background: repeating-linear-gradient(
        to bottom,
        #FCDD09 0px, #FCDD09 3px,
        #DA121A 3px, #DA121A 6px
    );
}
/* Hide Google Translate toolbar */
.goog-te-banner-frame, .skiptranslate { display: none !important; }
body { top: 0 !important; }

.btn-whatsapp {
    display: flex;
    align-items: center;
    gap: 7px;
    background: #25D366;
    color: #fff !important;
    padding: 9px 18px;
    border-radius: 6px;
    font-size: 14px !important;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: background 0.3s, transform 0.2s;
    border-bottom: none !important;
    white-space: nowrap;
}

.btn-whatsapp:hover {
    background: #1ebe57;
    transform: translateY(-2px);
    border-bottom: none !important;
}

/* ── CONTAINER / HERO ── */
.hero-carousel {
    position: relative;
    height: 90vh;
    width: 100vw;
    overflow: hidden;
}

/* ── SLIDES ── */
.list-item {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 2.8s ease;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.list-item.active {
    opacity: 1;
    pointer-events: all;
    z-index: 1;
}

.list-item img {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(1.08) contrast(1.05);
}

/* Clareia canto superior direito */
.list-item::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    background: radial-gradient(ellipse at 65% 35%, rgba(255,255,255,0.25) 0%, transparent 55%);
    pointer-events: none;
}

/* Overlay direcional — escurece a esquerda, abre à direita */
.list-item::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(
        100deg,
        rgba(3, 10, 20, 0.60) 0%,
        rgba(3, 10, 20, 0.30) 55%,
        transparent 100%
    );
}

.slide-portrait img {
    object-fit: cover;
    object-position: center top;
}

.slide-6 img {
    object-fit: cover;
    object-position: right center;
}

.slide-3 img {
    object-position: center 70%;
}

/* ── CONTEÚDO DO SLIDE ── */
.list-item .content {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 8%;
    max-width: 600px;
    z-index: 3;
    animation: slideIn 0.9s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateY(calc(-50% + 30px)); }
    to   { opacity: 1; transform: translateY(-50%); }
}

/* Badge eyebrow */
.hero-badge {
    display: none;
    background: rgba(237, 118, 14, 0.12);
    border: 1px solid rgba(237, 118, 14, 0.5);
    color: var(--orange);
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 0.72em;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 20px;
}

/* Título */
.list-item .title {
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; 
    font-size: 5.2em;
    font-weight: 800;
    line-height: 1.05;
    color: #fff;
    text-shadow: 0 4px 24px rgba(0,0,0,0.35);
    margin-bottom: 18px;
}

.title-hl {
    color: #1354e5;
    font-style: italic;
}

/* Descrição */
.list-item .description {
    font-size: 2.05em;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.85;
    max-width: 460px;
    font-weight: 550;
    margin-bottom: 36px;
    text-shadow: none;
}

/* Botões */
.list-item .buttons {
    display: flex;
    gap: 14px;
    align-items: center;
    flex-wrap: wrap;
}

.btn-hero-primary {
    display: inline-block;
    padding: 15px 38px;
    background: #0098de;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 0.82em;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
    box-shadow: 0 6px 28px rgba(237, 118, 14, 0.45);
    text-decoration: none;
}

.btn-hero-primary:hover {
    background: var(--orange-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(237, 118, 14, 0.55);
}

.btn-hero-secondary {
    display: inline-block;
    padding: 14px 36px;
    background: #54a2f0;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.45);
    border-radius: 4px;
    font-size: 0.82em;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    backdrop-filter: blur(4px);
    text-decoration: none;
}

.btn-hero-secondary:hover {
    border-color: var(--orange);
    color: var(--orange);
    background: rgba(237, 118, 14, 0.08);
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.62em;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
    animation: scrollPulse 1.8s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(1); }
    50%       { opacity: 1;   transform: scaleY(1.15); }
}

/* ── SETAS ── */
.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #fff;
    font-size: 3rem;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    cursor: pointer;
    line-height: 1;
    transition: background 0.3s;
}

.arrow:hover {
    background: var(--orange);
    border-color: var(--orange);
}

.arrow-prev { left: 20px; }
.arrow-next { right: 20px; }

/* ── PONTOS INDICADORES ── */
.dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.dot.active {
    background: var(--orange);
    transform: scale(1.35);
}

/* ── THUMBNAILS ── */
.thumb {
    position: absolute;
    bottom: 50px;
    right: 60px;
    display: flex;
    gap: 14px;
    z-index: 10;
}

.thumb-item {
    width: 130px;
    height: 190px;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.45;
    border: 2px solid transparent;
    transition: opacity 0.4s, transform 0.4s, border-color 0.4s;
}

.thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumb-item.active-thumb {
    opacity: 1;
    transform: scale(1.07);
    border-color: var(--orange);
}

.thumb-label {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 8px 10px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
}

.thumb-label h3 {
    font-size: 0.75rem;
    color: var(--orange);
}

.thumb-label p {
    font-size: 0.62rem;
    color: #ccc;
}

/* ── TABLET (769px – 1100px) ── */
@media (min-width: 769px) and (max-width: 1100px) {
    header { padding: 0 20px; }

    .logo-img { height: 120px; padding: 0 8px; }

    header nav { gap: 22px; }

    header nav a,
    .nav-dropdown-toggle { font-size: 14px !important; }

    .btn-whatsapp { padding: 7px 10px; font-size: 11px !important; }

    .btn-contato { padding: 7px 10px; font-size: 11px !important; }

    .lang-btn { padding: 6px 9px; font-size: 1em; }

    /* Hero content: largura total para separar texto (esq) e botões (dir) */
    .list-item .content {
        top: auto;
        bottom: 120px;
        left: 5%;
        right: 5%;
        max-width: none;
        transform: none;
        display: flex;
        flex-wrap: wrap;
        align-items: flex-end;
        justify-content: space-between;
    }

    .list-item .title,
    .list-item .description,
    .hero-badge {
        flex: 0 0 55%;
        max-width: 55%;
    }

    .list-item .buttons {
        position: static;
        flex-direction: row;
        gap: 12px;
        align-self: flex-end;
    }
}

/* ── RESPONSIVO MOBILE ── */
@media (max-width: 768px) {
    header { padding: 0 30px; }

    .hamburger { display: flex; }

    .logo-img { height: 120px; padding: 0 8px; }

    header nav {
        display: none;
        position: absolute;
        top: 95px;
        left: 0;
        width: 100%;
        flex-direction: column;
        background: rgba(144, 196, 255, 0.93);
        padding: 16px 24px 24px;
        gap: 0;
        z-index: 98;
        backdrop-filter: blur(10px);
        max-height: calc(100vh - 95px);
        overflow-y: auto;
    }

    header nav.open { display: flex; }

    header nav > a,
    .nav-dropdown-toggle {
        padding: 13px 0;
        font-size: 16px !important;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        display: block;
        width: 100%;
    }

    .nav-dropdown { width: 100%; }

    .nav-dropdown-menu {
        position: static;
        transform: none;
        box-shadow: none;
        background: rgba(255,255,255,0.05);
        border-radius: 6px;
        margin-top: 4px;
        margin-bottom: 4px;
        visibility: visible;
        opacity:1;
        pointer-events: all;
    }

    .nav-dropdown-menu a {
        color: #ccc;
    }

    .nav-contato { margin-top: 10px; width: 100%; }

    .btn-contato { width: 100%; padding: 9px; font-size: 0.85em; }

    .btn-whatsapp { padding: 8px 14px; font-size: 12px !important; margin-top: 10px; }

    /* Lang switcher — sobe para o topo do menu mobile */
    header nav .lang-switcher {
        order: -1;
        margin-top: 0;
        margin-bottom: 14px;
        padding-bottom: 14px;
        border-bottom: 1px solid rgba(255,255,255,0.15);
        width: 100%;
    }

    /* Dropdown abre fixo na tela para não ser cortado pelo overflow do nav */
    header nav .lang-switcher .lang-dropdown {
        position: fixed;
        top: 105px;
        right: 16px;
        left: auto;
        bottom: auto;
    }

    .hero-carousel { margin-top: 95px; height: calc(90vh - 95px); }

    .list-item .content {
        top: 25%;
        left: 5%;
        width: 90%;
    }

    .list-item .title { font-size: 2.8em; }
    .list-item .description { font-size: 0.95em; }

    .btn-hero-primary { padding: 10px 20px; font-size: 0.72em; }
    .btn-hero-secondary { padding: 9px 18px; font-size: 0.72em; }

    .list-item .buttons {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .slide-1 img {
        transform: scale(1.10) !important;
        transform-origin: center 70% !important;
    }

    .slide-6 img {
        object-fit: cover;
        transform: none;
        object-position: right 20%;
    }

    .thumb {
        right: 10px;
        gap: 8px;
    }

    .thumb-item {
        width: 80px;
        height: 120px;
    }

    .arrow { width: 42px; height: 42px; font-size: 2rem; }
    .arrow-prev { left: 8px; }
    .arrow-next { right: 8px; }
}

/* ── SECCIÓN DE VERDE A LIMPIA ── */
.green-to-clean {
    background: linear-gradient(135deg, #e8f5e9 0%, #e0f7fa 100%);
    padding: 70px 20px;
}

.gtc-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.gtc-title {
    font-size: 2.4em;
    color: #1a6b3c;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.gtc-intro {
    font-size: 1.05em;
    color: #444;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.8;
}

.gtc-cards {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.gtc-card {
    background: #fff;
    border-radius: 14px;
    padding: 35px 30px;
    flex: 1;
    min-width: 280px;
    max-width: 480px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    text-align: left;
}

.gtc-card h3 {
    font-size: 1.25em;
    color: #1a6b3c;
    margin-bottom: 15px;
    border-bottom: 2px solid #a5d6a7;
    padding-bottom: 8px;
}

.gtc-card p,
.gtc-card ul {
    font-size: 0.97em;
    color: #555;
    line-height: 1.8;
}

.gtc-card ul {
    padding-left: 18px;
}

.gtc-card ul li {
    margin-bottom: 8px;
}

.gtc-imgs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin: 32px 0 24px;
}

.gtc-img-item {
    width: 220px;
    height: 280px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    flex-shrink: 0;
}

.gtc-img-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}

.gtc-img-item img:hover { transform: scale(1.05); }

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

.gtc-btn {
    display: inline-block;
    background: #1a6b3c;
    color: #fff;
    padding: 14px 40px;
    border-radius: 30px;
    font-size: 1em;
    font-weight: bold;
    text-decoration: none;
    letter-spacing: 1px;
    transition: background 0.3s ease;
}

.gtc-btn:hover {
    background: #145030;
}

@media (max-width: 768px) {
    .gtc-title { font-size: 1.8em; }
    .gtc-cards { flex-direction: column; align-items: center; }
    .gtc-card { max-width: 100%; }
}

/* ── DROPDOWN SERVIÇOS ── */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    text-decoration: none;
    color: blue;
    font-size: 20px;
    font-weight: 600;
    text-transform: none;
    cursor: pointer;
}

.nav-dropdown-toggle:hover {
    color: var(--orange);
    border-bottom: 0.4rem solid var(--purple-dark);
}

.nav-dropdown-menu {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(6px);
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    min-width: 180px;
    z-index: 1000;
    overflow: hidden;
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
    padding-top: 10px;
}

/* ponte invisível que cobre o gap entre toggle e menu */
.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    width: 100%;
    height: 10px;
}

.nav-dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: #1a6b3c;
    font-size: 0.9em;
    font-weight: 600;
    text-transform: none;
    white-space: nowrap;
    transition: background 0.2s, color 0.2s;
}

.nav-dropdown-menu a:hover {
    background: #e8f5e9;
    color: var(--orange);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
    visibility: visible;
    opacity: 1;
    pointer-events: all;
    transform: translateX(-50%) translateY(0);
}

/* ── SEÇÃO TESTEMUNHAL ── */
.testemunhal {
    background: #0169A2;
    padding: 80px 20px;
}

.test-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.test-title {
    font-size: 2.2em;
    color: #fff;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.test-subtitle {
    color: #a0b4cc;
    font-size: 1.5em;
    margin-bottom: 50px;
}

.test-carousel {
    position: relative;
}

.test-track {
    position: relative;
    min-height: 240px;
}

.test-card {
    display: none;
    background: #112240;
    border-radius: 16px;
    padding: 40px;
    text-align: left;
    border: 1px solid #1e3a5f;
    animation: fadeInTest 0.5s ease;
}

.test-card.active {
    display: block;
}

@keyframes fadeInTest {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

.test-stars {
    color: #f5c518;
    font-size: 1.3em;
    margin-bottom: 16px;
    letter-spacing: 3px;
}

.test-text {
    color: #ccd6f6;
    font-size: 1em;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 24px;
}

.test-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.test-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #1a6b3c;
    color: #fff;
    font-weight: bold;
    font-size: 0.9em;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.test-author strong {
    display: block;
    color: #fff;
    font-size: 0.95em;
}

.test-author span {
    color: #8892b0;
    font-size: 0.82em;
}

.test-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(26, 107, 60, 0.8);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    font-size: 1.8rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    z-index: 10;
}

.test-arrow:hover { background: #1a6b3c; }
.test-prev { left: -22px; }
.test-next { right: -22px; }

.test-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 28px;
}

.test-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #1e3a5f;
    cursor: pointer;
    transition: background 0.3s;
}

.test-dot.active {
    background: #1a6b3c;
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .test-title { font-size: 1.6em; }
    .test-card { padding: 28px 20px; }
    .test-prev { left: -10px; }
    .test-next { right: -10px; }
}

/* ── SEÇÃO GALERIA ── */
.galeria-section {
    background: #e0f7fa;
}

.galeria-titulo {
    font-size: 2.2em;
    color: #0a1628;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.galeria-subtitulo {
    color: #5a7a99;
    font-size: 1em;
}

.galeria-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    aspect-ratio: 4/3;
    cursor: pointer;
}

.galeria-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}

.galeria-card:hover img {
    transform: scale(1.08);
}

.galeria-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,22,40,0.85) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.35s ease;
    display: flex;
    align-items: flex-end;
    padding: 18px;
}

.galeria-card:hover .galeria-overlay {
    opacity: 1;
}

.galeria-overlay span {
    color: #fff;
    font-size: 0.95em;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* ── BOTÃO CONTATO ── */
.nav-contato {
    position: relative;
}

.btn-contato {
    background:#1354e5;
    color: #fff;
    border: none;
    border-radius: 20px;
    padding: 8px 22px;
    font-size: 1.0em;
    font-weight: bold;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background 0.25s;
        
}

.btn-contato:hover {
    background: #e8903a;
}

.contato-popup {
    display: none;
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    padding: 14px 22px;
    white-space: nowrap;
    z-index: 1000;
    align-items: center;
    gap: 10px;
}

.contato-popup.open {
    display: flex;
}

.contato-popup a {
    color: #0d2b6e;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    letter-spacing: 1px;
}

.contato-popup a:hover {
    text-decoration: underline;
}

/* ── SEÇÃO LIMPEZA SEMANAL ── */
.limpeza-section {
    background: linear-gradient(rgba(5, 20, 50, 0.65), rgba(5, 20, 50, 0.65)),
                url('./img/fundopiscina.png') center/cover no-repeat fixed;
    padding: 80px 20px;
}

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

.limpeza-header-row {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 50px;
}

.limpeza-header-imgs {
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex-shrink: 0;
    width: 140px;
}

.limpeza-header-imgs img {
    width: 100%;
    height: 175px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.45);
    transition: transform 0.3s ease;
}

.limpeza-header-imgs img:hover {
    transform: scale(1.03);
}

.limpeza-bottom-imgs {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-top: 36px;
    margin-bottom: 10px;
}

.limpeza-bottom-imgs img {
    flex: 1;
    max-width: 540px;
    height: 220px;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.45);
    transition: transform 0.3s ease;
}

.limpeza-bottom-imgs img:hover {
    transform: scale(1.02);
}

.limpeza-header {
    text-align: center;
    flex: 1;
}

.limpeza-badge {
    display: inline-block;
    background: rgba(26,107,60,0.2);
    color: #4ade80;
    border: 1px solid #1a6b3c;
    border-radius: 20px;
    padding: 5px 18px;
    font-size: 0.82em;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.limpeza-titulo {
    font-size: 3em;
    color: var(--orange);
    margin-bottom: 14px;
    font-weight: 700;
}

.limpeza-subtitulo {
    color: var(--navbar);
    font-size: 1.6em;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.limpeza-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    align-items: start;
}

/* ── CARD DE PLANO ── */
.plano-card {
    background:#54a2f0;
    border-radius: 16px;
    border: 1px solid #1e3a5f;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plano-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}

.plano-card.destaque {
    border-color: #1a6b3c;
    transform: scale(1.04);
    box-shadow: 0 12px 36px rgba(26,107,60,0.3);
}

.plano-card.destaque:hover {
    transform: scale(1.04) translateY(-6px);
}

.plano-badge-destaque {
    background: #1a6b3c;
    color: #6B07B0;
    text-align: center;
    font-size: 0.78em;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 6px;
    text-transform: uppercase;
}

/* Topos coloridos */
.plano-topo {
    padding: 28px 24px 22px;
    text-align: center;
}

.plano-topo.basico     { background: linear-gradient(135deg, #1e3a5f, #0a2540); }
.plano-topo.residencial{ background: linear-gradient(135deg, #1a4a2e, #0d2e1c); }
.plano-topo.comercial  { background: linear-gradient(135deg, #2a1a4a, #180d2e); }
.plano-topo.premium    { background: linear-gradient(135deg, #4a3010, #2a1a06); }

.plano-icone {
    display: block;
    margin-bottom: 12px;
}

.plano-icone img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.25));
}

.plano-topo h3 {
    color: #FFF;
    font-size: 1.15em;
    font-weight: 700;
    margin-bottom: 6px;
}

.plano-ideal {
    color:#feb1b0;
    font-size: 0.95em;
}

/* Corpo do card */
.plano-corpo {
    padding: 24px;
}

.plano-corpo ul {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
}

.plano-corpo ul li {
    color: #fff;
    font-size: 0.95em;
    padding: 7px 0;
    border-bottom: 1px solid #1e3a5f;
    line-height: 1.4;
}

.plano-corpo ul li.inativo {
    color: #3a4a60;
}

/* Botões */
.plano-btn {
    display: block;
    text-align: center;
    padding: 12px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9em;
    letter-spacing: 1px;
    text-decoration: none;
    transition: opacity 0.2s;
}

.plano-btn:hover { opacity: 0.85; }

.basico-btn     { background: #1e3a5f; color: #fff; }
.residencial-btn{ background: #1a6b3c; color: #fff; }
.comercial-btn  { background: #4a2a80; color: #fff; }
.premium-btn    { background: linear-gradient(90deg, #c97d20, #e8a832); color: #fff; }

/* Responsivo */
@media (max-width: 1200px) {
    .limpeza-grid { grid-template-columns: repeat(3, 1fr); }
    .limpeza-header-imgs { display: none; }
    .limpeza-header-row { justify-content: center; }
    .plano-card.destaque { transform: none; }
    .plano-card.destaque:hover { transform: translateY(-6px); }
}

@media (max-width: 768px) {
    .limpeza-grid { grid-template-columns: repeat(2, 1fr); }
    .limpeza-bottom-imgs { flex-direction: column; align-items: center; }
    .limpeza-bottom-imgs img { max-width: 100%; }
}

@media (max-width: 500px) {
    .limpeza-grid { grid-template-columns: 1fr; }
    .limpeza-titulo { font-size: 1.7em; }
}

/* ── FOTOS LIMPEZA SEMANAL ── */
.limpeza-fotos {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-top: 50px;
    flex-wrap: wrap;
}

.limpeza-foto-card {
    flex: 1;
    min-width: 280px;
    max-width: 540px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 28px rgba(0,0,0,0.35);
    border: 2px solid #1e3a5f;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.limpeza-foto-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.5);
}

.limpeza-foto-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.limpeza-foto-card:hover img {
    transform: scale(1.04);
}

@media (max-width: 768px) {
    .limpeza-fotos { flex-direction: column; align-items: center; }
    .limpeza-foto-card { max-width: 100%; }
}

/* ── FRASE INSTITUCIONAL ── */
.quem-somos-titulo {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--blue, #22B8D1);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.quem-somos-titulo::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--orange, #f77f00);
    border-radius: 2px;
    margin: 8px auto 0;
}

.frase-institucional {
    background: #e0f7fa;
    padding: 28px 40px;
    text-align: center;
    border-bottom: none;
}

.frase-institucional p {
    font-style: italic;
    max-width: 820px;
    margin: 0 auto;
    font-size: 1.5em;
    color: #3a4a5c;
    line-height: 1.85;
    font-style: italic;
    font-weight: 350;
}

.frase-institucional strong {
    color: var(--orange);
    font-style: normal;
    font-weight: 700;
}

.frase-institucional a {
    color: var(--orange);
    font-weight: 700;
    font-size: 1.7em;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s;
    letter-spacing: 0.03em;
}

.frase-institucional a:hover {
    color: var(--orange-dark);
}

/* ── LOGOS CARROSSEL ── */
.logos-strip {
    background: #f4f8fb;
    padding: 30px 0;
    overflow: hidden;
    border-top: 1px solid rgba(0,0,0,0.08);
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.logos-track-wrapper {
    overflow: hidden;
    position: relative;
}

.logos-track-wrapper::before,
.logos-track-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.logos-track-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #f0f4f8, transparent);
}

.logos-track-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #f0f4f8, transparent);
}

.logos-track {
    display: flex;
    align-items: center;
    gap: 60px;
    width: max-content;
    animation: scrollLogos 28s linear infinite;
}

.logos-track:hover { animation-play-state: paused; }

.logos-track img {
    height: 60px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    opacity: 1;
    transition: transform 0.3s, opacity 0.3s;
    flex-shrink: 0;
}

.logos-track img:hover {
    transform: scale(1.12);
    opacity: 0.85;
}

@keyframes scrollLogos {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ── FOOTER ── */
.footer-cta-bar {
    background:  #01a0b9;
    padding: 22px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.footer-cta-bar p {
    color: #fff;
    font-size: 1.5em;
    margin: 0;
    letter-spacing: 0.3px;
}

.footer-cta-bar strong {
    font-weight: 700;
}

.footer-cta-btn {
    background: #fff;
    color: var(--orange);
    padding: 10px 28px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 1em;
    white-space: nowrap;
    transition: background 0.2s, transform 0.2s;
}

.footer-cta-btn:hover {
    background: #112FB3;
    transform: translateY(-2px);
}

.site-footer {
    background: #477a9d;
    color:#8892b0;
    font-size: 1.30em;
}


.footer-top {
  
}

.footer-logo {
    height: 80px;
    margin-bottom: 16px;
    filter: brightness(1.1);
}

.footer-brand p {
    font-size: 0.9em;
    line-height: 1.8;
    color: #fff;
    max-width: 280px;
}

.footer-qr {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-top: 20px;
    margin-bottom: 4px;
}

.footer-qr-img {
    width: 130px;
    height: 130px;
    border-radius: 10px;
    border: 2px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.07);
    padding: 6px;
}

.footer-qr-label {
    font-size: 0.82em;
    color: rgba(255,255,255,0.7);
    line-height: 1.5;
    margin: 0;
}

.footer-qr-label strong {
    color: #25D366;
}

.footer-social {
    display: flex;
    gap: 14px;
    margin-top: 22px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    color: #fff;
    transition: background 0.3s, color 0.3s, border-color 0.3s;
}

.footer-social a:hover {
    background: var(--orange);
    border-color: var(--orange);
    color: #fff;
}

.footer-social svg {
    width: 18px;
    height: 18px;
}

.footer-col h4 {
    color: #fff;
    font-size: 1em;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 2px;
    background: var(--orange);
    border-radius: 2px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col ul li a {
    color: #FFF;
    font-size: 0.92em;
    transition: color 0.2s, padding-left 0.2s;
}

.footer-col ul li a:hover {
    color: var(--orange);
    padding-left: 6px;
}

.footer-contatos ul li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contatos svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: var(--orange);
}

.footer-contatos a,
.footer-contatos span {
    color: #fff;
    font-size: 0.92em;
    transition: color 0.2s;
}

.footer-contatos a:hover {
    color: var(--orange);.
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.07);
    text-align: center;
    padding: 20px 40px;
    font-size: 0.82em;
    color: #4a5568;
}

@media (max-width: 900px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
}

@media (max-width: 500px) {
    .footer-top {
        grid-template-columns: 1fr;
        padding: 40px 24px 32px;
    }

}

/* ── LIGHTBOX ── */
#lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.88);
    justify-content: center;
    align-items: center;
}

#lightbox.ativo {
    display: flex;
}

#lightbox img {
    max-width: 90vw;
    max-height: 88vh;
    border-radius: 10px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.6);
    object-fit: contain;
}

#lightbox-fechar {
    position: fixed;
    top: 20px;
    right: 28px;
    background: none;
    border: none;
    color: #fff;
    font-size: 2.8rem;
    cursor: pointer;
    line-height: 1;
    z-index: 10000;
    transition: color 0.2s;
}

#lightbox-fechar:hover {
    color: var(--orange);
}

/* ── ONDA CALÇADA PORTUGUESA ── */
.wave-calcada {
    display: block;
    line-height: 0;
    margin: 0;
    padding: 0;
    background: #0d2240;
}

.wave-calcada svg {
    display: block;
    width: 100%;
    height: 140px;
}

/* ── ONDAS DIVISORAS ── */
.wave-divider {
    display: block;
    line-height: 0;
    margin: 0;
    padding: 0;
}

.wave-divider svg {
    display: block;
    width: 100%;
    height: 500px;
}

/* ── FOOTER WAVES ── */
.footer-waves {
    position: relative;
    height: 90px;
    overflow: hidden;
    background:#5661ea;
}

.wave-svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 100%;
}

.w1 {
    fill: rgba(34, 184, 209, 0.5);
    animation: wave-flow 6s linear infinite;
}

.w2 {
    fill: rgba(34, 184, 209, 0.25);
    animation: wave-flow 9s linear infinite reverse;
}

.w3 {
    fill: rgba(34, 184, 209, 0.12);
    animation: wave-flow 13s linear infinite;
}

@keyframes wave-flow {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════════════
   FORMULÁRIO DE CONTACTO
   ═══════════════════════════════════════════════════════ */
.cf-section {
    background: linear-gradient(160deg, #0d3b5e 20%, #92b0ca 75%, #0a1f3c 500%);
    padding: 80px 20px 100px;
    position: relative;
    overflow: hidden;
}

.cf-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--orange), #f59e0b, var(--orange));
    opacity: 0.7;
}

.cf-container {
    max-width: 1100px;
    margin: 0 auto;
}

/* ─ Cabeçalho ─ */
.cf-heading {
    text-align: center;
    margin-bottom: 52px;
}

.cf-badge {
    display: inline-block;
    background: rgba(237,118,14,0.15);
    color: var(--orange);
    border: 1px solid rgba(237,118,14,0.35);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.78em;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.cf-heading h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.8em;
    color: #fff;
    margin-bottom: 14px;
    line-height: 1.15;
}

.cf-heading p {
    color: rgba(17, 3, 65, 0.632);
    font-size: 1.50em;
    max-width: 560px;
    margin: 0 auto;
}

/* ─ Layout duas colunas ─ */
.cf-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 36px;
    align-items: start;
}

/* ─ Card do formulário ─ */
.cf-form-wrap {
    background: rgba(255,255,255,0.06);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.13);
    border-radius: 20px;
    padding: 44px 40px;
}

.cf-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.cf-field {
    margin-bottom: 22px;
}

.cf-field label {
    display: block;
    color: rgba(255,255,255,0.82);
    font-size: 0.85em;
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.cf-field label abbr {
    color: var(--orange);
    text-decoration: none;
    margin-left: 2px;
}

.cf-field input,
.cf-field textarea {
    width: 100%;
    background: rgba(255,255,255,0.07);
    border: 1.5px solid rgba(255,255,255,0.16);
    border-radius: 10px;
    padding: 13px 16px;
    color: #fff;
    font-size: 1.5em;
    font-family: inherit;
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
    outline: none;
    box-sizing: border-box;
}

.cf-field input::placeholder,
.cf-field textarea::placeholder {
    color: rgba(255,255,255,0.28);
}

.cf-field input:focus,
.cf-field textarea:focus {
    border-color: var(--orange);
    background: rgba(255,255,255,0.11);
    box-shadow: 0 0 0 3px rgba(237,118,14,0.18);
}

.cf-field textarea {
    resize: vertical;
    min-height: 130px;
}

/* ─ Botão enviar ─ */
.cf-submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background:#ea9144 ;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 16px 32px;
    font-size: 1em;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    margin-top: 6px;
    letter-spacing: 0.03em;
}

.cf-submit:hover {
    background: #26cbbc;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(237,118,14,0.35);
}

.cf-submit:disabled {
    opacity: 0.55;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* ─ Mensagem de sucesso ─ */
.cf-success {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 50px 20px;
    gap: 16px;
}

.cf-success h3 {
    color: #fff;
    font-size: 1.5em;
    margin: 0;
}

.cf-success p {
    color: rgba(255,255,255,0.65);
    font-size: 0.95em;
    max-width: 360px;
    line-height: 1.6;
}

.cf-reset-btn {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.75);
    padding: 9px 22px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.88em;
    font-family: inherit;
    transition: background 0.2s;
    margin-top: 6px;
}

.cf-reset-btn:hover {
    background: rgba(255,255,255,0.18);
}

/* ─ Painel de informações ─ */
.cf-info-panel {
    background: rgba(255,255,255,0.06);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.13);
    border-radius: 20px;
    padding: 36px 28px;
}

.cf-info-panel h3 {
    color: #fff;
    font-size: 1.05em;
    font-weight: 700;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.12);
    letter-spacing: 0.02em;
}
r
.cf-info-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 22px;
}

.cf-info-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    background: rgba(33, 14, 237, 0.34);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
}

.cf-info-item strong {
    display: block;
    color: rgba(255,255,255,0.5);
    font-size: 0.75em;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.cf-info-item a,
.cf-info-item span {
    color: rgba(255,255,255,0.85);
    font-size: 0.93em;
    text-decoration: none;
    transition: color 0.2s;
    display: block;
}

.cf-info-item a:hover {
    color: var(--orange);
}

.cf-whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    width: 100%;
    background: #25D366;
    color: #fff !important;
    border-radius: 10px;
    padding: 14px;
    text-decoration: none !important;
    font-weight: 700;
    font-size: 0.92em;
    transition: background 0.2s, transform 0.15s;
    margin-top: 30px;
    box-sizing: border-box;
}

.cf-whatsapp-btn:hover {
    background: #1ebe57;
    transform: translateY(-2px);
    color: #fff !important;
}

/* ─ Responsivo ─ */
@media (max-width: 860px) {
    .cf-layout {
        grid-template-columns: 1fr;
    }
    .cf-info-panel {
        order: -1;
    }
    .cf-heading h2 {
        font-size: 2em;
    }
}

@media (max-width: 560px) {
    .cf-row-2 {
        grid-template-columns: 1fr;
    }
    .cf-form-wrap {
        padding: 28px 20px;
    }
    .cf-section {
        padding: 60px 16px 80px;
    }
}
