* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
}

:root {
    --primary-color: #F27127;
    --primary-dark: #28659B;
    --accent-color: #ffd54f;
    --text-dark: #2c3e50;
    --text-light: #ffffff;
    --text-muted: #607d8b;
    --background-light: #f8f9fa;
    --background-white: #ffffff;
    --background-soft-blue: #eef6fb;
    --border-soft: rgba(40, 101, 155, 0.14);
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.14);
    --shadow-glow-orange: 0 8px 30px rgba(242, 113, 39, 0.25);
    --transition-smooth: all 0.3s ease;
    --radius-card: 18px;
}

html { scroll-behavior: smooth; }

html {
    scrollbar-width: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
    width: 0;
    height: 0;
}

body {
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background-white);
    overflow-x: hidden;
    -ms-overflow-style: none;
}

.fade-in-section {
    opacity: 1;
    transform: none;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.fade-in-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.servicos-grid .servico-card:nth-child(1) { transition-delay: 0.1s; }
.servicos-grid .servico-card:nth-child(2) { transition-delay: 0.2s; }
.servicos-grid .servico-card:nth-child(3) { transition-delay: 0.3s; }
.servicos-grid .servico-card:nth-child(4) { transition-delay: 0.4s; }

.galeria-container .galeria-item:nth-child(1) { transition-delay: 0.1s; }
.galeria-container .galeria-item:nth-child(2) { transition-delay: 0.2s; }
.galeria-container .galeria-item:nth-child(3) { transition-delay: 0.3s; }
.galeria-container .galeria-item:nth-child(4) { transition-delay: 0.4s; }

.steps-container .step:nth-child(1) { transition-delay: 0.1s; }
.steps-container .step:nth-child(2) { transition-delay: 0.2s; }
.steps-container .step:nth-child(3) { transition-delay: 0.3s; }
.steps-container .step:nth-child(4) { transition-delay: 0.4s; }

.diferenciais-grid .diferencial-card:nth-child(1) { transition-delay: 0.1s; }
.diferenciais-grid .diferencial-card:nth-child(2) { transition-delay: 0.2s; }
.diferenciais-grid .diferencial-card:nth-child(3) { transition-delay: 0.3s; }

.depoimentos-grid .depoimento-card:nth-child(1) { transition-delay: 0.1s; }
.depoimentos-grid .depoimento-card:nth-child(2) { transition-delay: 0.2s; }
.depoimentos-grid .depoimento-card:nth-child(3) { transition-delay: 0.3s; }

.economia-stats .economia-stat:nth-child(1) { transition-delay: 0.1s; }
.economia-stats .economia-stat:nth-child(2) { transition-delay: 0.2s; }
.economia-stats .economia-stat:nth-child(3) { transition-delay: 0.3s; }
.economia-stats .economia-stat:nth-child(4) { transition-delay: 0.4s; }

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.2rem;
    padding: 0.85rem 5%;
    background: rgba(255, 255, 255, 0.9);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(40, 101, 155, 0.1);
    box-shadow: 0 12px 34px rgba(18, 59, 99, 0.08);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transition: all 0.35s ease;
}

.navbar.scrolled {
    padding-top: 0.62rem;
    padding-bottom: 0.62rem;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 12px 40px rgba(18, 59, 99, 0.14);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    min-width: fit-content;
}

.logo-img {
    width: 46px;
    height: 46px;
    object-fit: contain;
    display: block;
    user-select: none;
    filter: none;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    white-space: nowrap;
}

.logo-lima { color: #1f5f99; }
.logo-siqueira { color: #f4b400; }

.menu {
    margin-left: auto;
}

.menu ul {
    display: flex;
    list-style: none;
    gap: 0.25rem;
    align-items: center;
    padding: 0.35rem;
    background: rgba(40, 101, 155, 0.055);
    border: 1px solid rgba(40, 101, 155, 0.08);
    border-radius: 999px;
}

.menu ul li a {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 700;
    font-size: 0.86rem;
    padding: 0.62rem 0.92rem;
    border-radius: 999px;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.menu ul li a:hover,
.menu ul li a.is-active {
    color: var(--primary-dark);
    background: #fff;
    box-shadow: 0 8px 22px rgba(40, 101, 155, 0.12);
}

.menu ul li a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0.22rem;
    width: 0;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: translateX(-50%);
    transition: width 0.25s ease;
}

.menu ul li a:hover::after,
.menu ul li a.is-active::after {
    width: 34%;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 116px;
    color: #fff;
    background: linear-gradient(135deg, #25D366, #19b958);
    border-radius: 999px;
    padding: 0.78rem 1.15rem;
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 800;
    box-shadow: 0 12px 26px rgba(37, 211, 102, 0.24);
    transition: var(--transition-smooth);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(37, 211, 102, 0.34);
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 46px;
    height: 46px;
    background: rgba(40, 101, 155, 0.08);
    border: 1px solid rgba(40, 101, 155, 0.12);
    border-radius: 14px;
    padding: 0;
    cursor: pointer;
    z-index: 1100;
    flex-shrink: 0;
    align-items: center;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
}

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

.menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 900;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.menu-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
}

.hero {
    position: relative;
    z-index: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 140px 8% 80px;
    overflow: hidden;
    background: #123b63 url("SRC/imagens/solarresidencial.webp") center/cover no-repeat;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    display: block;
    opacity: 0;
    transition: opacity 1.2s ease;
}

.hero-video.is-loaded {
    opacity: 1;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        110deg,
        rgba(7, 31, 58, 0.88) 0%,
        rgba(10, 49, 89, 0.72) 44%,
        rgba(8, 30, 70, 0.42) 100%
    );
    z-index: 0;
    animation: overlay-breathe 10s ease-in-out infinite;
}

@keyframes overlay-breathe {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.88; }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 760px;
    color: var(--text-light);
    text-align: left;
}

.hero-eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--accent-color);
    background: rgba(255, 213, 79, 0.14);
    border: 1px solid rgba(255, 213, 79, 0.24);
    border-radius: 999px;
    padding: 0.42rem 0.8rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
}

.hero-content h1 {
    font-size: 3.35rem;
    font-weight: 800;
    line-height: 1.08;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.55), 0 4px 40px rgba(0, 0, 0, 0.3);
}

.hero-content h1 .word {
    display: inline-block;
    will-change: transform, opacity;
}

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

.hero-content > p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    line-height: 1.75;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-block;
    background-color: #25D366;
    color: white;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
    transition: var(--transition-smooth);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.55);
    background-color: #20c25c;
}

.secondary-button {
    display: inline-block;
    color: var(--text-light);
    padding: 0.95rem 1.6rem;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: var(--transition-smooth);
}

.secondary-button:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.cta-micro {
    display: block;
    margin-top: 1rem;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 0.02em;
}

.trust-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    width: min(1120px, 90%);
    margin: -46px auto 0;
    position: relative;
    z-index: 5;
}

.trust-strip div {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--border-soft);
    border-radius: 18px;
    padding: 1.25rem 1.4rem;
    box-shadow: var(--shadow-medium);
}

.trust-strip strong {
    display: block;
    color: var(--primary-dark);
    font-size: 0.98rem;
    margin-bottom: 0.25rem;
}

.trust-strip span {
    display: block;
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.5;
}

.diferenciais {
    padding: 105px 5%;
    background:
        radial-gradient(circle at 18% 20%, rgba(255, 213, 79, 0.16), transparent 28%),
        linear-gradient(180deg, #f6f9fc 0%, #ffffff 100%);
    text-align: center;
}

.diferenciais-header {
    max-width: 760px;
    margin: 0 auto 3.4rem;
}

.diferenciais h2 {
    font-size: 2.35rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.diferenciais h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.diferenciais-header p {
    color: var(--text-muted);
    font-size: 1.02rem;
    line-height: 1.8;
    margin-top: 1.5rem;
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.4rem;
    max-width: 1120px;
    margin: 0 auto;
}

.diferencial-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 18px;
    box-shadow: 0 18px 42px rgba(18, 59, 99, 0.08);
    transition: var(--transition-smooth);
    border: 1px solid rgba(40, 101, 155, 0.12);
    text-align: left;
    position: relative;
    overflow: hidden;
}

.diferencial-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.diferencial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 54px rgba(18, 59, 99, 0.14);
    border-color: rgba(242, 113, 39, 0.22);
}

.diferencial-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(242, 113, 39, 0.14), rgba(255, 213, 79, 0.22));
    border: 1px solid rgba(242, 113, 39, 0.18);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 1.4rem;
    transition: var(--transition-smooth);
}

.diferencial-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--primary-color);
}

.diferencial-card:hover .diferencial-icon {
    transform: translateY(-3px) rotate(-4deg);
    box-shadow: 0 12px 26px rgba(242, 113, 39, 0.18);
}

.diferencial-card h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 0.75rem;
}

.diferencial-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.diferencial-card strong {
    display: inline-flex;
    margin-top: 1.25rem;
    color: var(--primary-dark);
    background: rgba(40, 101, 155, 0.07);
    border-radius: 999px;
    padding: 0.45rem 0.8rem;
    font-size: 0.78rem;
    font-weight: 800;
}

.sobre {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3.5rem;
    padding: 100px 5%;
    background:
        linear-gradient(135deg, rgba(40, 101, 155, 0.06) 0%, rgba(255, 255, 255, 0) 42%),
        var(--background-white);
    position: relative;
}

.container-sobre {
    flex: 0 1 760px;
    max-width: 760px;
}

.container-sobre h2 {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.container-sobre h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.container-sobre p {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 1rem;
}

.douglasimagem img {
    width: 320px;
    height: 410px;
    object-fit: cover;
    object-position: center 34%;
    border-radius: 22px 22px 0 0;
    box-shadow: none;
    border: 0;
    position: relative;
    z-index: 2;
}

.douglasimagem {
    position: relative;
    display: flex;
    flex-direction: column;
    width: fit-content;
    padding: 0.8rem;
    border-radius: 28px;
    background: linear-gradient(180deg, #ffffff 0%, #f4f8fb 100%);
    border: 1px solid rgba(40, 101, 155, 0.12);
    box-shadow: 0 26px 60px rgba(18, 59, 99, 0.14);
    flex: 0 0 auto;
}

.douglasimagem::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(40, 101, 155, 0.12), rgba(242, 113, 39, 0.08));
    opacity: 0.6;
    pointer-events: none;
}

.douglas-card {
    position: relative;
    z-index: 2;
    width: 320px;
    background: #fff;
    border: 1px solid rgba(40, 101, 155, 0.1);
    border-top: 0;
    border-radius: 0 0 22px 22px;
    padding: 1rem 1.1rem;
    box-shadow: none;
}

.douglas-card strong {
    display: block;
    color: var(--primary-dark);
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.douglas-card span {
    display: block;
    color: var(--text-muted);
    font-size: 0.82rem;
    line-height: 1.35;
}

.sobre-metricas {
    display: flex;
    gap: 2rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.sobre-pontos {
    display: grid;
    grid-template-columns: repeat(2, minmax(180px, 1fr));
    gap: 0.8rem;
    margin: 1.8rem 0 0;
}

.sobre-pontos span {
    color: var(--primary-dark);
    background: #fff;
    border: 1px solid rgba(40, 101, 155, 0.12);
    border-left: 4px solid rgba(242, 113, 39, 0.75);
    border-radius: 12px;
    padding: 0.82rem 0.95rem;
    font-size: 0.88rem;
    font-weight: 700;
    line-height: 1.45;
    box-shadow: 0 10px 24px rgba(18, 59, 99, 0.06);
}

.sobre-pontos span::before {
    content: "";
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-right: 0.45rem;
    border-radius: 50%;
    background: var(--primary-color);
    vertical-align: middle;
}

.sobre-pontos span::after {
    content: "";
    color: var(--primary-color);
}

.metrica-item {
    flex: 1;
    min-width: 90px;
    background: rgba(255, 255, 255, 0.82);
    border-radius: 16px;
    padding: 1.35rem 1rem;
    text-align: center;
    border: 1px solid rgba(40, 101, 155, 0.12);
    transition: var(--transition-smooth);
    box-shadow: 0 12px 30px rgba(18, 59, 99, 0.06);
}

.metrica-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-soft);
}

.metrica-valor {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
}

.metrica-num {
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), #f4b400);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.metrica-plus {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
}

.metrica-item p {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-top: 0.4rem;
    margin-bottom: 0;
    line-height: 1.4;
}

.servicos {
    padding: 92px 5%;
    background: linear-gradient(180deg, #ffffff 0%, var(--background-soft-blue) 50%, #ffffff 100%);
}

.servicos-header {
    text-align: center;
    margin-bottom: 3rem;
}

.servicos-header h2 {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.servicos-header h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.servicos-header p {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 720px;
    margin: 1.5rem auto 0;
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(280px, 1fr));
    gap: 1.4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.servico-card {
    background-color: var(--background-white);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
    border: 1px solid var(--border-soft);
    position: relative;
    display: grid;
    grid-template-columns: 36% 1fr;
    min-height: 300px;
    isolation: isolate;
}

.servico-card::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: inherit;
    opacity: 0;
    background: linear-gradient(135deg, rgba(242, 113, 39, 0.08), rgba(40, 101, 155, 0.08));
    transition: opacity 0.3s ease;
}

.servico-card:hover {
    box-shadow: 0 18px 46px rgba(18, 59, 99, 0.14);
    border-color: rgba(242, 113, 39, 0.24);
}

.servico-card:hover::after {
    opacity: 1;
}

.servico-image {
    position: relative;
    height: 100%;
    min-height: 300px;
    overflow: hidden;
    border-radius: 0;
}

.servico-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform-origin: center;
    transform: none;
    transition: filter 0.35s ease;
}

.servico-card:hover .servico-image img {
    filter: saturate(1.08) contrast(1.04) brightness(0.96);
}

.servico-content {
    padding: 1.45rem 1.55rem;
    display: flex;
    flex-direction: column;
}

.servico-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 3;
    color: #fff;
    background: var(--primary-color);
    border-radius: 999px;
    padding: 0.4rem 0.75rem;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
}

.servico-tag-blue { background: var(--primary-dark); }
.servico-tag-dark { background: #27384a; }
.servico-tag-green { background: #1b8f55; }

.servico-icon-wrap {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), #f4961a);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.8rem;
    transition: var(--transition-smooth);
}

.servico-icon-wrap svg {
    width: 21px;
    height: 21px;
    stroke: white;
}

.servico-card:hover .servico-icon-wrap {
    transform: rotate(-6deg);
    box-shadow: 0 10px 24px rgba(242, 113, 39, 0.22);
}

.servico-card:hover .servico-content h3 {
    color: var(--primary-color);
}

.servico-card:hover .servico-link {
    box-shadow: 0 16px 30px rgba(37, 211, 102, 0.34);
    background: linear-gradient(135deg, #20c25c, #119f48);
}

.servico-content h3 {
    font-size: 1.12rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.6rem;
}

.servico-content > p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin-bottom: 0.75rem;
}

.servico-details {
    display: grid;
    gap: 0;
    margin: 0.1rem 0 0.8rem;
}

.servico-details div {
    display: grid;
    grid-template-columns: 84px 1fr;
    gap: 0.6rem;
    align-items: start;
    padding: 0.52rem 0;
    border-top: 1px solid rgba(40, 101, 155, 0.1);
}

.servico-details strong {
    color: var(--primary-dark);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.servico-details span {
    color: var(--text-muted);
    font-size: 0.84rem;
    line-height: 1.35;
}

.servico-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 0.38rem;
    margin-bottom: 0.85rem;
}

.servico-benefits span {
    font-size: 0.76rem;
    font-weight: 500;
    color: var(--primary-dark);
    background: rgba(40, 101, 155, 0.09);
    padding: 0.24rem 0.6rem;
    border-radius: 20px;
}

.servico-benefits span::before {
    content: '✓ ';
    color: var(--primary-color);
    font-weight: 700;
}

.servico-link {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    color: #fff;
    background: linear-gradient(135deg, #25D366, #19b958);
    border: none;
    border-radius: 999px;
    padding: 0.78rem 1rem;
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 800;
    box-shadow: 0 12px 26px rgba(37, 211, 102, 0.24);
    transition: var(--transition-smooth);
}

.servico-link::after {
    content: " →";
    margin-left: 0.35rem;
    transition: transform 0.25s ease;
}

.servico-link:hover {
    color: #fff;
    background: linear-gradient(135deg, #20c25c, #119f48);
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(37, 211, 102, 0.32);
}

.servico-link:hover::after {
    transform: translateX(3px);
}

.diagnostico {
    display: grid;
    grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.3fr);
    gap: 2rem;
    align-items: stretch;
    padding: 95px 5%;
    background: #0f385f;
    color: var(--text-light);
}

.diagnostico-content {
    max-width: 520px;
    align-self: center;
}

.diagnostico-content h2 {
    font-size: 2.35rem;
    line-height: 1.15;
    margin-bottom: 1rem;
}

.diagnostico-content p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 1rem;
    line-height: 1.8;
}

.diagnostico-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.diagnostico-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 18px;
    padding: 1.5rem;
    min-height: 240px;
    transition: var(--transition-smooth);
}

.diagnostico-card:hover {
    background: rgba(255, 255, 255, 0.16);
    transform: translateY(-5px);
}

.diagnostico-card strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    color: #173d62;
    background: var(--accent-color);
    border-radius: 12px;
    margin-bottom: 1.2rem;
}

.diagnostico-card h3 {
    font-size: 1.05rem;
    margin-bottom: 0.65rem;
}

.diagnostico-card p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.9rem;
    line-height: 1.65;
}

.diagnostico-kicker {
    background: transparent;
    border: 0;
    padding: 0;
}

.galeria-servicos {
    padding: 110px 5%;
    background:
        linear-gradient(180deg, #ffffff 0%, #f4f8fb 52%, #ffffff 100%);
    text-align: center;
}

.galeria-header {
    max-width: 760px;
    margin: 0 auto 3rem;
}

.galeria-header p {
    color: var(--text-muted);
    font-size: 1.02rem;
    line-height: 1.8;
}

.galeria-servicos h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.4rem;
    position: relative;
    display: inline-block;
}

.galeria-servicos h3::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.galeria-container {
    display: grid;
    grid-template-columns: 1.35fr 1fr 1fr;
    gap: 1.15rem;
    max-width: 1200px;
    margin: 0 auto;
}

.galeria-item {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    min-height: 310px;
    box-shadow: 0 18px 44px rgba(18, 59, 99, 0.1);
    border: 1px solid rgba(40, 101, 155, 0.12);
    background: #102f4f;
    transform: none !important;
}

.galeria-featured {
    grid-row: span 2;
    min-height: 645px;
}

.galeria-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.95) contrast(1.03);
    transition: filter 0.5s ease;
}

.galeria-item:hover img {
    filter: saturate(1.05) contrast(1.04) brightness(0.82);
    transform: none;
}

.galeria-item .overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top, rgba(8, 30, 52, 0.84) 0%, rgba(8, 30, 52, 0.46) 42%, rgba(8, 30, 52, 0.08) 100%);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 1.35rem;
    opacity: 1;
    transition: opacity 0.4s ease;
    text-align: left;
}

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

.galeria-item .overlay span {
    display: inline-flex;
    align-self: flex-start;
    color: #fff;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    padding: 0.34rem 0.72rem;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.75rem;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.galeria-item .overlay p {
    color: #fff;
    font-size: 1.02rem;
    font-weight: 700;
    text-align: left;
    padding: 0;
    max-width: 420px;
    line-height: 1.5;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.28);
}

.depoimentos {
    padding: 96px 5%;
    background:
        linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
    text-align: center;
}

.depoimentos-header {
    max-width: 760px;
    margin: 0 auto 3.3rem;
}

.depoimentos-header p {
    color: var(--text-muted);
    font-size: 1.02rem;
    line-height: 1.8;
}

.depoimentos h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.4rem;
    position: relative;
    display: inline-block;
}

.depoimentos h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

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

.depoimento-card {
    background: #fff;
    border-radius: 18px;
    padding: 1.8rem;
    box-shadow: 0 18px 42px rgba(18, 59, 99, 0.08);
    text-align: left;
    transition: var(--transition-smooth);
    border: 1px solid rgba(40, 101, 155, 0.12);
    position: relative;
    overflow: hidden;
}

.depoimento-card::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.depoimento-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-glow-orange);
    border-color: rgba(242, 113, 39, 0.15);
}

.depoimento-stars {
    color: var(--accent-color);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    letter-spacing: 3px;
}

.depoimento-topo {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    margin-bottom: 1.2rem;
}

.depoimento-topo span {
    width: fit-content;
    color: var(--primary-dark);
    background: rgba(40, 101, 155, 0.09);
    border-radius: 999px;
    padding: 0.32rem 0.7rem;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.depoimento-topo strong {
    color: var(--primary-color);
    font-size: 1.35rem;
    line-height: 1.2;
}

.depoimento-texto {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.25rem;
    font-style: normal;
}

.depoimento-autor {
    display: inline-flex;
    align-items: center;
    color: var(--primary-dark);
    background: rgba(40, 101, 155, 0.07);
    border-radius: 999px;
    padding: 0.45rem 0.75rem;
    font-size: 0.78rem;
    font-weight: 800;
    line-height: 1.4;
}

.autor-avatar {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.depoimento-autor strong {
    display: block;
    color: var(--text-dark);
    font-size: 0.95rem;
    font-weight: 600;
}

.depoimento-autor span {
    font-size: inherit;
    color: inherit;
}

.funcionamento {
    padding: 100px 5%;
    background: linear-gradient(135deg, #123b63 0%, #f27127 100%);
    color: var(--text-light);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.funcionamento::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(255, 255, 255, 0.06) 0%, transparent 60%),
                radial-gradient(ellipse at 80% 50%, rgba(0, 0, 0, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.funcionamento-title {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    position: relative;
}

.funcionamento > p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 3.5rem;
    opacity: 0.93;
    position: relative;
}

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

.steps-container::before {
    content: "";
    position: absolute;
    top: 26px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: rgba(255, 255, 255, 0.26);
}

.step {
    background: rgba(255, 255, 255, 0.12);
    padding: 2rem 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition-smooth);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    position: relative;
}

.step:hover {
    background: rgba(255, 255, 255, 0.22);
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.35);
}

.step-number {
    width: 52px;
    height: 52px;
    background: var(--accent-color);
    color: var(--text-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    transition: var(--transition-smooth);
}

.step:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.step h4 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
}

.step p {
    font-size: 0.93rem;
    opacity: 0.9;
    line-height: 1.6;
}

.economia {
    padding: 100px 5%;
    background-color: var(--background-white);
    text-align: center;
}

.economia-title {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
}

.economia-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
    border-radius: 2px;
}

.economia-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto 3.5rem;
}

.economia-stat {
    background: linear-gradient(135deg, var(--background-light) 0%, #eef2f7 100%);
    border-radius: 18px;
    padding: 2rem 1.5rem;
    border: 1px solid rgba(40, 101, 155, 0.1);
    transition: var(--transition-smooth);
}

.economia-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 28px rgba(40, 101, 155, 0.15);
    border-color: rgba(40, 101, 155, 0.25);
}

.economia-stat-num {
    display: block;
    font-size: 2.6rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), #f4b400);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    margin-bottom: 0.6rem;
}

.economia-stat p {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1.4;
    margin: 0;
}

.economia > p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 900px;
    margin: 0 auto 1.5rem;
    line-height: 1.9;
}

.economia p.destaque {
    padding: 2rem;
    background: linear-gradient(135deg, rgba(242, 113, 39, 0.07), rgba(255, 213, 79, 0.13));
    border-radius: 16px;
    border-left: 4px solid var(--accent-color);
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.9;
}

.economia-note {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    max-width: 900px;
    margin: 1.2rem auto 0;
    padding: 1rem 1.2rem;
    background: rgba(40, 101, 155, 0.07);
    border: 1px solid rgba(40, 101, 155, 0.12);
    border-radius: 14px;
    color: var(--text-muted);
    text-align: left;
    font-size: 0.95rem;
    line-height: 1.65;
}

.economia-note strong {
    color: var(--primary-dark);
    white-space: nowrap;
}

.cta-final {
    padding: 90px 5%;
    background: linear-gradient(135deg, var(--primary-dark) 0%, #1a4a73 100%);
    text-align: center;
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.cta-final::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.05) 0%, transparent 65%);
    pointer-events: none;
}

.cta-final h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
}

.cta-final p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
    position: relative;
}

.cta-button-final {
    display: inline-block;
    background-color: #25D366;
    color: white;
    padding: 1.1rem 2.8rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
    transition: var(--transition-smooth);
    position: relative;
}

.cta-button-final:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.55);
    background-color: #20c25c;
}

footer {
    background-color: var(--text-dark);
    color: var(--text-light);
    padding: 3rem 5%;
    text-align: center;
}

footer a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s;
}

footer a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

footer .footer-copy {
    margin-top: 1rem;
    font-size: 0.85rem;
    opacity: 0.65;
}

.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s ease;
    animation: pulse-whatsapp 2.5s infinite;
}

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

.whatsapp-float svg {
    width: 32px;
    height: 32px;
}

@keyframes pulse-whatsapp {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

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

    .hero-video {
        display: none;
    }
}

@media (max-width: 992px) {
    .menu ul {
        gap: 0.1rem;
    }
    .menu ul li a {
        font-size: 0.8rem;
        padding: 0.55rem 0.68rem;
    }
    .nav-cta {
        min-width: auto;
        padding: 0.72rem 0.9rem;
    }
    .sobre {
        flex-direction: column-reverse;
        text-align: center;
    }
    .container-sobre {
        max-width: 760px;
        flex-basis: auto;
    }
    .container-sobre h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .sobre-metricas {
        justify-content: center;
    }
    .hero-content h1 { font-size: 2.2rem; }
    .douglasimagem img { width: 280px; height: 350px; }
    .douglas-card { width: 280px; }
    .servicos-grid { grid-template-columns: 1fr; }
    .diagnostico {
        grid-template-columns: 1fr;
    }
    .diagnostico-content {
        max-width: 720px;
        text-align: center;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: row;
        padding: 0.85rem 5%;
    }

    .nav-cta { display: none; }

    .hamburger { display: flex; }

    .menu {
        position: fixed;
        top: 0;
        right: 0;
        width: min(330px, 86vw);
        height: 100vh;
        background: linear-gradient(180deg, #ffffff 0%, #f4f8fb 100%);
        box-shadow: -14px 0 44px rgba(18, 59, 99, 0.18);
        border-left: 1px solid rgba(40, 101, 155, 0.12);
        z-index: 950;
        transform: translateX(100%);
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .menu.is-open { transform: translateX(0); }

    .menu-overlay { display: block; }

    .menu ul {
        flex-direction: column;
        gap: 0.55rem;
        padding: 2rem;
        width: 100%;
        align-items: stretch;
        background: transparent;
        border: 0;
        border-radius: 0;
    }

    .menu ul li a {
        display: flex;
        font-size: 1rem;
        font-weight: 800;
        padding: 0.95rem 1.2rem;
        border-radius: 14px;
        text-align: left;
        justify-content: flex-start;
        background: #fff;
        border: 1px solid rgba(40, 101, 155, 0.08);
    }
    .hero {
        min-height: auto;
        padding: 128px 5% 82px;
        background-position: center;
    }
    .hero::before {
        background: linear-gradient(180deg, rgba(9, 36, 67, 0.82) 0%, rgba(8, 35, 66, 0.86) 100%);
    }
    .hero-content {
        text-align: left;
        max-width: none;
    }
    .hero-content h1 {
        font-size: 2.05rem;
        line-height: 1.14;
    }
    .hero-content > p {
        font-size: 1rem;
        line-height: 1.65;
    }
    .hero-actions {
        align-items: stretch;
        flex-direction: column;
    }
    .cta-button,
    .secondary-button {
        width: 100%;
        text-align: center;
    }
    .trust-strip {
        grid-template-columns: 1fr;
        margin-top: -34px;
    }
    .servicos-header h2,
    .funcionamento-title,
    .economia-title,
    .galeria-servicos h3,
    .diferenciais h2,
    .depoimentos h2 { font-size: 1.8rem; }
    .servicos,
    .diferenciais,
    .sobre,
    .galeria-servicos,
    .depoimentos,
    .funcionamento,
    .economia {
        padding-top: 72px;
        padding-bottom: 72px;
    }
    .servicos-header {
        margin-bottom: 2.2rem;
    }
    .servico-card {
        display: block;
        min-height: 0;
    }
    .servico-image {
        height: 185px;
        min-height: 185px;
        border-radius: 0;
    }
    .servico-content {
        padding: 1.2rem;
    }
    .servico-details div {
        grid-template-columns: 1fr;
        gap: 0.25rem;
    }
    .diagnostico {
        padding: 78px 5%;
    }
    .diagnostico-grid {
        grid-template-columns: 1fr;
    }
    .diagnostico-card {
        min-height: auto;
    }
    .galeria-container {
        grid-template-columns: 1fr;
        max-width: 680px;
    }
    .galeria-featured,
    .galeria-item {
        min-height: 280px;
        grid-row: auto;
    }
    .steps-container::before {
        display: none;
    }
    .steps-container { grid-template-columns: repeat(2, 1fr); }
    .economia-stats { grid-template-columns: repeat(2, 1fr); }
    .whatsapp-float { bottom: 18px; right: 16px; width: 54px; height: 54px; }
    .whatsapp-float svg { width: 28px; height: 28px; }
}

@media (max-width: 480px) {
    .logo-img { width: 38px; height: 38px; }
    .logo-text { font-size: 1.22rem; }
    .hero-content h1 { font-size: 1.75rem; }
    .hero-eyebrow,
    .section-kicker {
        font-size: 0.68rem;
        letter-spacing: 0.06em;
    }
    .douglasimagem {
        padding: 0.65rem;
    }
    .douglasimagem img { width: 250px; max-width: 100%; height: auto; }
    .douglas-card { width: 250px; max-width: 100%; }
    .sobre-pontos { grid-template-columns: 1fr; }
    .steps-container { grid-template-columns: 1fr; }
    .economia-stats { grid-template-columns: repeat(2, 1fr); }
    .galeria-item { height: auto; min-height: 300px; }
    .galeria-item img { filter: saturate(0.95) contrast(1.03); }
    .galeria-item .overlay { opacity: 1; }
    .galeria-item .overlay p { font-size: 1rem; }
    .cta-button, .cta-button-final, .secondary-button { padding: 0.9rem 1.2rem; font-size: 0.96rem; }
    .sobre-metricas { gap: 1rem; }
    .metrica-num { font-size: 1.8rem; }
    .economia-note {
        display: block;
        padding-right: 4.5rem;
    }
    .economia-note strong {
        display: block;
        margin-bottom: 0.25rem;
    }
}
