:root {
    --bg: #f4f7fb;
    --surface: #ffffff;
    --surface-muted: #e9eef6;
    --text: #15304f;
    --text-soft: #55657c;
    --brand: #173b6d;
    --brand-strong: #0f284a;
    --accent: #d38105;
    --accent-soft: #fff3df;
    --line: rgba(21, 48, 79, 0.12);
    --shadow: 0 24px 60px rgba(18, 42, 74, 0.12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(211, 129, 5, 0.12), transparent 24%),
        linear-gradient(180deg, #f7f9fc 0%, #edf3f9 100%);
}

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

a {
    color: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(18px);
    background: rgba(244, 247, 251, 0.9);
    border-bottom: 1px solid rgba(21, 48, 79, 0.08);
}

.main-nav {
    width: min(1160px, calc(100% - 32px));
    margin: 0 auto;
    padding: 16px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.logo img {
    height: 52px;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 22px;
    margin: 0;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
}

.nav-highlight {
    color: var(--accent);
}

.hero-section,
.container,
.trust-bar {
    width: min(1160px, calc(100% - 32px));
    margin: 0 auto;
}

.hero-section {
    min-height: calc(100vh - 86px);
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    align-items: center;
    gap: 48px;
    padding: 64px 0 72px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 18px;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-weight: 700;
    color: var(--accent);
}

.eyebrow::before {
    content: "";
    width: 42px;
    height: 1px;
    background: currentColor;
}

.hero-copy h1,
.section-heading h2,
.value-copy h2,
.contact-copy h2 {
    margin: 0;
    color: var(--brand-strong);
    line-height: 1.08;
}

.hero-copy h1 {
    font-size: clamp(2.8rem, 4vw, 4.9rem);
    max-width: 11ch;
}

.hero-text,
.section-heading p,
.value-copy p,
.contact-copy p,
.trust-item p,
.service-card p,
.value-list p,
.contact-details p {
    color: var(--text-soft);
}

.hero-text {
    max-width: 58ch;
    margin: 22px 0 0;
    font-size: 1.1rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 32px 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent), #f09a17);
    color: #ffffff;
    box-shadow: 0 16px 32px rgba(211, 129, 5, 0.24);
}

.btn-secondary {
    background: rgba(23, 59, 109, 0.08);
    color: var(--brand);
}

.hero-metrics {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.hero-metrics li,
.service-card,
.value-list article,
.trust-item,
.contact-panel,
.carousel,
.evolution-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.hero-metrics li {
    padding: 18px;
    border-radius: 22px;
}

.hero-metrics strong,
.trust-label,
.value-list h3,
.service-card h3 {
    display: block;
    color: var(--brand-strong);
}

.hero-metrics span {
    display: block;
    margin-top: 6px;
    color: var(--text-soft);
    font-size: 0.95rem;
}

.hero-visual {
    position: relative;
    min-height: 540px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-card {
    border-radius: 28px;
    overflow: hidden;
}

.hero-card-main {
    width: min(100%, 470px);
    background: linear-gradient(180deg, #edf3f9 0%, #dfe9f5 100%);
    padding: 18px;
    transform: rotate(-3deg);
}

.hero-card-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.hero-card-floating {
    position: absolute;
    right: 0;
    bottom: 44px;
    max-width: 250px;
    padding: 22px;
    background: linear-gradient(135deg, var(--brand), var(--brand-strong));
    color: #ffffff;
    box-shadow: 0 20px 44px rgba(15, 40, 74, 0.28);
}

.hero-card-floating p {
    margin: 0;
}

.trust-bar,
.container {
    padding-bottom: 88px;
}

.trust-bar {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.trust-item,
.service-card,
.value-list article {
    border-radius: 24px;
    padding: 28px;
}

.trust-label {
    margin-bottom: 10px;
    font-size: 1.05rem;
}

.section-heading,
.value-copy {
    max-width: 760px;
    margin-bottom: 28px;
}

.section-heading h2,
.value-copy h2,
.contact-copy h2 {
    font-size: clamp(2rem, 3vw, 3.2rem);
}

.services-grid,
.value-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.service-icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    margin-bottom: 22px;
    background: var(--accent-soft);
    color: var(--accent);
    font-size: 1.35rem;
}

.service-card h3,
.value-list h3 {
    margin: 0 0 12px;
    font-size: 1.25rem;
}

.value-section {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 28px;
    align-items: start;
}

.value-list article {
    min-height: 100%;
}

.gallery-section .carousel {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    padding: 22px;
}

.carousel-inner {
    position: relative;
}

.slide {
    display: none;
    width: 100%;
    border-radius: 20px;
    min-height: 260px;
    object-fit: cover;
    aspect-ratio: 16 / 10;
}

.slide.active {
    display: block;
}

.prev,
.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    border: none;
    border-radius: 50%;
    background: rgba(15, 40, 74, 0.7);
    color: #ffffff;
    cursor: pointer;
    font-size: 1.2rem;
}

.prev {
    left: 22px;
}

.next {
    right: 22px;
}

.contact-section {
    padding-bottom: 96px;
}

.contact-panel {
    border-radius: 32px;
    padding: 36px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
    gap: 24px;
    background:
        linear-gradient(135deg, rgba(23, 59, 109, 0.98), rgba(15, 40, 74, 0.96)),
        linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.04));
    color: #ffffff;
}

.contact-panel .eyebrow,
.contact-panel .contact-copy p,
.contact-panel .contact-details p {
    color: rgba(255, 255, 255, 0.82);
}

.contact-panel .eyebrow::before {
    background: rgba(255, 255, 255, 0.5);
}

.contact-copy h2 {
    color: #ffffff;
}

.contact-details {
    padding: 24px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

footer {
    background: #102846;
    color: #ffffff;
    text-align: center;
    padding: 28px 16px;
}

.footer-content {
    margin-bottom: 12px;
}

.footer-content p,
footer p {
    margin: 8px 0;
}

.whatsapp-btn {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 62px;
    height: 62px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: #25d366;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.9rem;
    box-shadow: 0 18px 34px rgba(37, 211, 102, 0.3);
    z-index: 1000;
}

.evolution-section {
    padding: 60px 20px;
    max-width: 800px;
}

.evolution-card {
    padding: 40px;
    border-radius: 28px;
    text-align: left;
}

.evolution-card h1 {
    color: var(--brand);
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 10px;
}

.subtitle {
    font-size: 1.1rem;
    color: var(--text-soft);
    margin-bottom: 20px;
}

.evolution-card h2 {
    color: var(--brand);
    margin-top: 30px;
}

blockquote {
    font-style: italic;
    font-size: 1.2rem;
    color: var(--brand);
    border-left: 5px solid var(--brand);
    padding-left: 20px;
    margin: 30px 0;
}

.evolution-list {
    list-style: none;
    padding: 0;
}

.evolution-list li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.evolution-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #25d366;
    font-weight: bold;
}

.highlight-box {
    background: #eef6ff;
    padding: 20px;
    border-radius: 8px;
    border-left: 5px solid var(--brand);
    margin: 30px 0;
}

.btn-back {
    display: inline-block;
    margin-top: 30px;
    padding: 12px 25px;
    background: var(--brand);
    color: white;
    text-decoration: none;
    border-radius: 999px;
    transition: background 0.3s;
}

.btn-back:hover {
    background: var(--brand-strong);
}

@media (max-width: 980px) {
    .main-nav,
    .hero-section,
    .value-section,
    .contact-panel {
        grid-template-columns: 1fr;
    }

    .main-nav {
        display: block;
    }

    .nav-links {
        flex-wrap: wrap;
        margin-top: 16px;
        gap: 14px;
    }

    .hero-section {
        min-height: auto;
        padding-top: 44px;
    }

    .hero-copy h1 {
        max-width: 14ch;
    }

    .hero-metrics,
    .trust-bar,
    .services-grid,
    .value-list {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        min-height: auto;
    }

    .hero-card-main {
        transform: none;
    }

    .hero-card-floating {
        position: static;
        margin-top: 18px;
        max-width: none;
    }
}

@media (max-width: 640px) {
    .logo img {
        height: 46px;
    }

    .hero-section,
    .trust-bar,
    .container {
        width: min(100% - 24px, 1160px);
    }

    .hero-copy h1 {
        font-size: 2.5rem;
    }

    .service-card,
    .trust-item,
    .value-list article,
    .contact-panel,
    .evolution-card {
        border-radius: 22px;
    }

    .gallery-section .carousel,
    .contact-panel,
    .evolution-card {
        padding: 22px;
    }

    .prev,
    .next {
        width: 46px;
        height: 46px;
    }
}
