@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap");


/* =========================================
   VARIÁVEIS GERAIS
========================================= */

:root {
    --background: #edf1f3;
    --surface: #ffffff;
    --surface-soft: #f5f7f8;

    --text: #17202a;
    --text-muted: #68737d;

    --border: #e1e7ea;

    --primary: #557f83;
    --primary-dark: #355d61;
    --primary-soft: #e5eff0;

    --success: #31a66a;

    --shadow-main:
        0 30px 80px rgba(24, 42, 50, 0.14);

    --shadow-card:
        0 10px 28px rgba(24, 42, 50, 0.08);

    --radius-xl: 34px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 14px;

    --site-width: 460px;
}


/* =========================================
   RESET
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    min-width: 320px;
    min-height: 100vh;

    padding: 18px 12px;

    font-family:
        "Inter",
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    color: var(--text);

    background:
        radial-gradient(circle at top left,
            rgba(85, 127, 131, 0.14),
            transparent 500px),
        var(--background);

    -webkit-font-smoothing: antialiased;
}

body.no-scroll {
    overflow: hidden;
}

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

a {
    color: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button {
    font: inherit;
}


/* =========================================
   ESTRUTURA PRINCIPAL
========================================= */

.mini-site {
    width: min(100%, var(--site-width));

    margin: 0 auto;

    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: var(--radius-xl);

    background: var(--surface);

    box-shadow: var(--shadow-main);
}


/* =========================================
   CABEÇALHO
========================================= */

.profile {
    position: relative;

    padding: 30px 24px 25px;

    text-align: center;
}

.share-button {
    position: absolute;
    top: 18px;
    right: 18px;

    width: 43px;
    height: 43px;

    display: grid;
    place-items: center;

    border: 1px solid var(--border);
    border-radius: 50%;

    color: var(--text-muted);
    background: var(--surface);

    cursor: pointer;

    transition:
        transform 180ms ease,
        color 180ms ease,
        border-color 180ms ease;
}

.share-button:hover {
    color: var(--primary-dark);
    border-color: rgba(85, 127, 131, 0.45);
    transform: translateY(-2px);
}

.share-button svg {
    width: 19px;
    height: 19px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.company-logo {
    width: 90px;
    height: 90px;

    margin: 0 auto 17px;

    overflow: hidden;

    border: 1px solid var(--border);
    border-radius: 27px;

    background: var(--surface-soft);

    box-shadow:
        0 8px 25px rgba(32, 50, 58, 0.08);
}

.company-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-label,
.section-label {
    display: block;

    margin-bottom: 5px;

    color: var(--primary);

    font-size: 0.71rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.profile h1 {
    font-size: clamp(1.8rem, 8vw, 2.25rem);
    line-height: 1.1;
}

.profile-description {
    max-width: 360px;

    margin: 12px auto 0;

    color: var(--text-muted);

    font-size: 0.94rem;
    line-height: 1.65;
}

.availability {
    width: max-content;

    margin: 17px auto 0;
    padding: 8px 13px;

    display: flex;
    align-items: center;
    gap: 8px;

    border-radius: 999px;

    color: #2d6c4c;
    background: #edf8f2;

    font-size: 0.75rem;
    font-weight: 700;
}

.availability-dot {
    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: var(--success);

    box-shadow:
        0 0 0 4px rgba(49, 166, 106, 0.14);
}


/* =========================================
   SLIDERS
========================================= */

.slider {
    position: relative;
}

.slider-viewport {
    overflow: hidden;
}

.slider-track {
    display: flex;

    transition:
        transform 420ms cubic-bezier(0.22, 0.61, 0.36, 1);

    will-change: transform;
}

.hero-slide,
.service-card {
    min-width: 100%;
}


/* =========================================
   SLIDER PRINCIPAL
========================================= */

.hero-slider {
    margin: 0 18px 8px;
}

.hero-slider .slider-viewport {
    border-radius: var(--radius-lg);
}

.hero-slide {
    position: relative;

    height: 250px;

    overflow: hidden;

    background: var(--surface-soft);
}

.hero-slide img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: auto 0 0;

    padding: 55px 20px 20px;

    color: #ffffff;

    text-align: left;

    background:
        linear-gradient(transparent,
            rgba(12, 23, 27, 0.84));
}

.hero-overlay span {
    display: block;

    margin-bottom: 5px;

    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;

    opacity: 0.85;
}

.hero-overlay strong {
    display: block;

    max-width: 300px;

    font-size: 1.25rem;
    line-height: 1.28;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    z-index: 3;

    width: 39px;
    height: 39px;

    display: grid;
    place-items: center;

    border: 0;
    border-radius: 50%;

    color: #ffffff;
    background: rgba(18, 31, 36, 0.62);

    backdrop-filter: blur(8px);

    cursor: pointer;

    transform: translateY(-50%);
}

.slider-arrow-previous {
    left: 10px;
}

.slider-arrow-next {
    right: 10px;
}

.slider-arrow svg {
    width: 18px;
    height: 18px;

    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.slider-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
}

.hero-dots {
    position: absolute;
    left: 50%;
    bottom: 13px;
    z-index: 4;

    transform: translateX(-50%);
}

.slider-dot {
    width: 7px;
    height: 7px;

    padding: 0;

    border: 0;
    border-radius: 999px;

    background: rgba(255, 255, 255, 0.55);

    cursor: pointer;

    transition:
        width 180ms ease,
        background 180ms ease;
}

.slider-dot.is-active {
    width: 23px;
    background: #ffffff;
}


/* =========================================
   SEÇÕES
========================================= */

.content-section {
    padding: 30px 18px 0;
}

.section-heading {
    margin-bottom: 18px;

    display: flex;
    align-items: center;
    gap: 12px;
}

.section-heading-line {
    width: 4px;
    height: 35px;

    flex-shrink: 0;

    border-radius: 999px;

    background: var(--primary);
}

.section-heading h2 {
    font-size: 1.28rem;
    line-height: 1.2;
}


/* =========================================
   LINKS RÁPIDOS
========================================= */

.quick-links {
    display: grid;
    gap: 10px;
}

.quick-link {
    min-height: 75px;

    padding: 12px 14px;

    display: grid;

    grid-template-columns:
        48px minmax(0, 1fr) 24px;

    align-items: center;
    gap: 12px;

    border: 1px solid var(--border);
    border-radius: var(--radius-md);

    color: var(--text);
    background: var(--surface);

    box-shadow:
        0 5px 18px rgba(31, 49, 57, 0.045);

    text-decoration: none;

    transition:
        transform 180ms ease,
        border-color 180ms ease,
        box-shadow 180ms ease;
}

.quick-link:hover {
    border-color: rgba(85, 127, 131, 0.4);

    box-shadow: var(--shadow-card);

    transform: translateY(-2px);
}

.quick-link-icon {
    width: 46px;
    height: 46px;

    display: grid;
    place-items: center;

    border-radius: 15px;

    color: var(--primary-dark);
    background: var(--primary-soft);
}

.quick-link-icon svg {
    width: 23px;
    height: 23px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.quick-link-content {
    min-width: 0;
}

.quick-link-content strong,
.quick-link-content small {
    display: block;
}

.quick-link-content strong {
    margin-bottom: 4px;

    font-size: 0.95rem;
}

.quick-link-content small {
    overflow: hidden;

    color: var(--text-muted);

    font-size: 0.75rem;
    line-height: 1.35;

    text-overflow: ellipsis;
    white-space: nowrap;
}

.quick-link-arrow {
    display: grid;
    place-items: center;

    color: #8b969e;
}

.quick-link-arrow svg {
    width: 18px;
    height: 18px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* =========================================
   GALERIA
========================================= */

.gallery-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    grid-auto-rows: 128px;

    gap: 9px;
}

.gallery-item {
    min-width: 0;

    overflow: hidden;

    padding: 0;

    border: 0;
    border-radius: var(--radius-sm);

    background: var(--surface-soft);

    cursor: zoom-in;
}

.gallery-item-large {
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 320ms ease;
}

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


/* =========================================
   SERVIÇOS
========================================= */

.services-section {
    padding-bottom: 5px;
}

.services-slider .slider-viewport {
    border-radius: var(--radius-lg);
}

.service-card {
    overflow: hidden;

    border: 1px solid var(--border);
    border-radius: var(--radius-lg);

    background: var(--surface);
}

.service-card>img {
    width: 100%;
    height: 195px;

    object-fit: cover;

    background: var(--surface-soft);
}

.service-content {
    padding: 19px;
}

.service-tag {
    display: inline-flex;

    margin-bottom: 10px;
    padding: 5px 9px;

    border-radius: 999px;

    color: var(--primary-dark);
    background: var(--primary-soft);

    font-size: 0.67rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.service-content h3 {
    margin-bottom: 8px;

    font-size: 1.22rem;
}

.service-content p {
    margin-bottom: 17px;

    color: var(--text-muted);

    font-size: 0.85rem;
    line-height: 1.55;
}

.service-button {
    min-height: 43px;

    padding: 0 16px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    color: #ffffff;
    background: var(--primary-dark);

    font-size: 0.78rem;
    font-weight: 700;

    text-decoration: none;

    transition:
        background 180ms ease,
        transform 180ms ease;
}

.service-button:hover {
    background: var(--primary);
    transform: translateY(-1px);
}

.service-controls {
    margin-top: 15px;

    display: grid;

    grid-template-columns:
        40px 1fr 40px;

    align-items: center;
    gap: 12px;
}

.service-controls>button {
    width: 40px;
    height: 40px;

    display: grid;
    place-items: center;

    border: 1px solid var(--border);
    border-radius: 50%;

    color: var(--primary-dark);
    background: var(--surface);

    cursor: pointer;

    transition:
        color 180ms ease,
        background 180ms ease,
        border-color 180ms ease;
}

.service-controls>button:hover {
    color: #ffffff;
    border-color: var(--primary);
    background: var(--primary);
}

.service-controls svg {
    width: 18px;
    height: 18px;

    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-dots .slider-dot {
    background: #cad2d7;
}

.service-dots .slider-dot.is-active {
    background: var(--primary);
}


/* =========================================
   CARD DE CONTATO
========================================= */

.contact-card {
    margin: 33px 18px 0;
    padding: 21px;

    display: grid;

    grid-template-columns:
        53px minmax(0, 1fr);

    gap: 14px;

    border-radius: var(--radius-lg);

    color: #ffffff;

    background:
        radial-gradient(circle at 100% 0,
            rgba(255, 255, 255, 0.17),
            transparent 200px),
        var(--primary-dark);
}

.contact-icon {
    width: 53px;
    height: 53px;

    display: grid;
    place-items: center;

    border-radius: 17px;

    color: #ffffff;
    background: rgba(255, 255, 255, 0.13);
}

.contact-icon svg {
    width: 25px;
    height: 25px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-content>span {
    display: block;

    margin-bottom: 4px;

    color: rgba(255, 255, 255, 0.7);

    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.contact-content h2 {
    margin-bottom: 5px;

    font-size: 1.3rem;
}

.contact-content p {
    color: rgba(255, 255, 255, 0.72);

    font-size: 0.79rem;
    line-height: 1.45;
}

.contact-button {
    grid-column: 1 / -1;

    min-height: 49px;

    margin-top: 5px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    border-radius: 14px;

    color: var(--primary-dark);
    background: #ffffff;

    font-size: 0.85rem;
    font-weight: 800;

    text-decoration: none;

    transition:
        transform 180ms ease,
        box-shadow 180ms ease;
}

.contact-button:hover {
    transform: translateY(-2px);

    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.18);
}

.contact-button svg {
    width: 18px;
    height: 18px;

    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* =========================================
   RODAPÉ
========================================= */

.footer {
    padding: 29px 18px 31px;

    text-align: center;
}

.social-links {
    margin-bottom: 18px;

    display: flex;
    justify-content: center;
    gap: 10px;
}

.social-links a {
    width: 43px;
    height: 43px;

    display: grid;
    place-items: center;

    border: 1px solid var(--border);
    border-radius: 50%;

    color: var(--primary-dark);
    background: var(--surface);

    transition:
        transform 180ms ease,
        color 180ms ease,
        border-color 180ms ease,
        background 180ms ease;
}

.social-links a:hover {
    color: #ffffff;
    border-color: var(--primary);
    background: var(--primary);

    transform: translateY(-2px);
}

.social-links svg {
    width: 20px;
    height: 20px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.footer p {
    color: var(--text);

    font-size: 0.77rem;
    font-weight: 700;
}

.footer small {
    display: block;

    margin-top: 4px;

    color: var(--text-muted);

    font-size: 0.69rem;
}


/* =========================================
   LIGHTBOX
========================================= */

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 1000;

    padding: 22px;

    display: grid;
    place-items: center;

    visibility: hidden;
    opacity: 0;

    background: rgba(8, 15, 18, 0.9);

    backdrop-filter: blur(10px);

    transition:
        visibility 180ms ease,
        opacity 180ms ease;
}

.lightbox.is-open {
    visibility: visible;
    opacity: 1;
}

.lightbox img {
    max-width: min(950px, 100%);
    max-height: 84vh;

    border-radius: 18px;

    box-shadow:
        0 30px 90px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: max(18px, env(safe-area-inset-top));
    right: 18px;

    width: 44px;
    height: 44px;

    display: grid;
    place-items: center;

    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;

    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);

    cursor: pointer;
}

.lightbox-close svg {
    width: 22px;
    height: 22px;

    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
}


/* =========================================
   TOAST / AVISO
========================================= */

.toast {
    position: fixed;
    left: 50%;
    bottom: 24px;
    z-index: 2000;

    max-width: calc(100% - 32px);

    padding: 11px 16px;

    visibility: hidden;
    opacity: 0;

    border-radius: 999px;

    color: #ffffff;
    background: #17202a;

    box-shadow: var(--shadow-card);

    font-size: 0.79rem;
    text-align: center;

    transform: translate(-50%, 12px);

    transition:
        visibility 180ms ease,
        opacity 180ms ease,
        transform 180ms ease;
}

.toast.is-visible {
    visibility: visible;
    opacity: 1;

    transform: translate(-50%, 0);
}


/* =========================================
   RESPONSIVIDADE
========================================= */

@media (min-width: 620px) {

    body {
        padding-top: 30px;
        padding-bottom: 30px;
    }

}


@media (max-width: 380px) {

    body {
        padding-left: 8px;
        padding-right: 8px;
    }

    .profile {
        padding-left: 18px;
        padding-right: 18px;
    }

    .profile-description {
        font-size: 0.87rem;
    }

    .hero-slider,
    .contact-card {
        margin-left: 14px;
        margin-right: 14px;
    }

    .content-section {
        padding-left: 14px;
        padding-right: 14px;
    }

    .quick-link {
        grid-template-columns:
            43px minmax(0, 1fr) 18px;

        padding-left: 11px;
        padding-right: 11px;
    }

    .quick-link-icon {
        width: 42px;
        height: 42px;
    }

    .quick-link-content strong {
        font-size: 0.89rem;
    }

    .quick-link-content small {
        font-size: 0.7rem;
    }

}


@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

}