/* assets/css/style.css - sistema visual principal */
:root {
    --primary: #001f3f;
    --primary-soft: #06345f;
    --accent: #ff6200;
    --accent-dark: #e05600;
    --ink: #152033;
    --muted: #667085;
    --surface: #ffffff;
    --line: #e7edf4;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Inter', 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--ink);
    background: #f6f8fb;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

img, video, iframe {
    max-width: 100%;
}

h1, h2, h3, h4 {
    line-height: 1.05;
    letter-spacing: 0;
}

.site-shell {
    width: min(1180px, calc(100% - 32px));
    margin-inline: auto;
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    color: var(--accent);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.section-eyebrow::before {
    content: '';
    width: 28px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
}

.btn-primary,
.btn-secondary,
.btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .65rem;
    min-height: 48px;
    padding: .85rem 1.25rem;
    border-radius: 12px;
    font-weight: 800;
    transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease;
}

.btn-primary {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 14px 30px rgb(255 98 0 / .22);
}

.btn-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 14px 30px rgb(0 31 63 / .16);
}

.btn-secondary:hover {
    background: var(--primary-soft);
    transform: translateY(-2px);
}

.btn-ghost {
    color: var(--primary);
    border: 1px solid var(--line);
    background: #fff;
}

.btn-ghost:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.professional-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: 0 18px 45px rgb(15 23 42 / .06);
}

.project-card {
    display: block;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: 0 18px 45px rgb(15 23 42 / .07);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.project-card:hover {
    transform: translateY(-6px);
    border-color: rgb(255 98 0 / .28);
    box-shadow: 0 26px 60px rgb(15 23 42 / .12);
}

.project-card img {
    transition: transform .55s ease;
}

.project-card:hover img {
    transform: scale(1.06);
}

.icon-box {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: var(--accent);
    background: rgb(255 98 0 / .1);
}

.form-control {
    width: 100%;
    border: 1px solid #d9e1ea;
    border-radius: 12px;
    background: #fff;
    padding: .95rem 1rem;
    color: var(--ink);
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.form-control:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgb(255 98 0 / .12);
}

.status-pill {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    border-radius: 999px;
    padding: .4rem .75rem;
    font-size: .75rem;
    font-weight: 800;
    line-height: 1;
}

.map-frame {
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid var(--line);
    background: #eef2f7;
    box-shadow: inset 0 0 0 1px rgb(255 255 255 / .7);
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s ease, transform .7s ease;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.hero-swiper .swiper-pagination-bullet {
    width: 24px;
    height: 4px;
    border-radius: 999px;
    background: rgba(255,255,255,.75);
    opacity: 1;
}

.hero-swiper .swiper-pagination-bullet-active {
    background: var(--accent);
}

.gallery-swiper .swiper-button-next,
.gallery-swiper .swiper-button-prev {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    color: var(--primary);
    background: rgba(255,255,255,.92);
    box-shadow: 0 10px 24px rgb(15 23 42 / .16);
}

.gallery-swiper .swiper-button-next::after,
.gallery-swiper .swiper-button-prev::after {
    font-size: 1rem;
    font-weight: 900;
}

@media (max-width: 768px) {
    .site-shell {
        width: min(100% - 24px, 1180px);
    }

    .hero-swiper .swiper-button-next,
    .hero-swiper .swiper-button-prev {
        display: none;
    }

    .project-card:hover {
        transform: none;
    }

    .whatsapp-float-label {
        display: none;
    }






}
