/* ==========================================================
   COMPONENTS
========================================================== */

.logo {

    display: flex;

    align-items: center;

    flex-shrink: 0;

}

.logo__image {
    width: 260px;
    height: auto;
    display: block;
}

.menu-toggle {
    display: none;

    width: 46px;
    height: 46px;

    padding: 0;

    border: 1px solid rgba(8, 29, 58, 0.08);
    border-radius: 12px;

    background: var(--color-white);

    cursor: pointer;

    box-shadow: var(--shadow-sm);
}

.menu-toggle__line {
    display: block;

    width: 22px;
    height: 2px;

    margin: 5px auto;

    border-radius: 999px;

    background: var(--color-primary-dark);

    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}

.menu-toggle.is-open .menu-toggle__line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open .menu-toggle__line:nth-child(2) {
    opacity: 0;
}

.menu-toggle.is-open .menu-toggle__line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.menu {
    display: flex;
    gap: 3.2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu a {
    position: relative;
    color: #1D2939;
    font-size: 1.17rem;
    font-weight: var(--fw-bold);
    letter-spacing: .02em;
    text-decoration: none;
    transition: color var(--transition);
}

.menu a::after {
    content: "";

    position: absolute;
    right: 0;
    bottom: -0.45rem;
    left: 0;

    height: 2px;

    background: var(--color-primary);

    transform: scaleX(0);
    transform-origin: center;

    transition: transform var(--transition);
}

.menu a:hover,
.menu a:focus-visible {
    color: var(--color-primary);
}

.menu a:hover::after,
.menu a:focus-visible::after {
    transform: scaleX(1);
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;

    padding: 1rem 2rem;

    border: 1px solid transparent;
    border-radius: var(--radius-lg);

   background: linear-gradient(
    135deg,
    var(--color-primary),
    var(--color-primary-dark)
);

    color: var(--color-white);
    font-weight: var(--fw-semibold);
    text-decoration: none;

    box-shadow:
        0 12px 24px rgba(8, 29, 58, 0.12),
        0 4px 10px rgba(8, 29, 58, 0.08);

    transition:
        transform var(--transition),
        box-shadow var(--transition),
        filter var(--transition);
}

.btn-primary:hover,
.btn-primary:focus-visible {
    color: var(--color-white);

    transform: translateY(-3px);

    box-shadow:
        0 20px 38px rgba(8, 29, 58, 0.18),
        0 8px 16px rgba(8, 29, 58, 0.1);

    filter: brightness(1.06);
}

.btn-primary:active {
    transform: translateY(-1px);
}

.hero__eyebrow {
    display: inline-block;
    margin-bottom: var(--space-4);
    color: var(--color-primary);
    font-size: var(--fs-sm);
    font-weight: var(--fw-bold);
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hero__title {
    width: 100%;
    max-width: 850px;
    margin-bottom: var(--space-5);
    color: var(--color-primary-dark);
    font-size: clamp(2.8rem, 4.5vw, 5rem);
    font-weight: var(--fw-black);
    line-height: 1.02;
}

.hero__description {
    max-width: 620px;
    margin-bottom: var(--space-6);

    color:#1D2939;
    font-size: 1.17rem;
    font-weight: var(--fw-regular);
    line-height: 1.65;
}

.hero__actions {
    display: flex;
    align-items: center;
    gap: var(--space-5);
    flex-wrap: wrap;
}

.hero__secondary-link {
    position: relative;

    display: inline-flex;
    align-items: center;
    gap: 0.65rem;

    padding-bottom: 0.3rem;

    color: var(--color-primary);
    font-weight: var(--fw-semibold);
    text-decoration: none;
}

.hero__secondary-link::after {
    content: "";

    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;

    height: 2px;

    background: var(--color-primary);

    transform: scaleX(0);
    transform-origin: left;

    transition: transform var(--transition);
}

.hero__secondary-arrow {
    display: inline-block;

    font-size: 1.25rem;
    line-height: 1;

    transition: transform var(--transition);
}

.hero__secondary-link:hover::after,
.hero__secondary-link:focus-visible::after {
    transform: scaleX(1);
}

.hero__secondary-link:hover .hero__secondary-arrow,
.hero__secondary-link:focus-visible .hero__secondary-arrow {
    transform: translateX(0.35rem);
}

.hero__shape {
    position: absolute;
    background: linear-gradient(
        145deg,
        var(--color-primary-light),
        var(--color-primary-dark)
    );
}
/* ==========================================================
   HERO PHOTO COMPOSITION
========================================================== */

.hero__visual::before {
    content: "";

    position: absolute;
    top: 6%;
    right: 1%;

    width: 84%;
    height: 82%;

    background: linear-gradient(
        145deg,
        var(--color-primary-light),
        var(--color-primary-dark)
    );

    clip-path: polygon(
        22% 0,
        100% 0,
        78% 100%,
        0 100%
    );

    box-shadow:
        0 30px 60px rgba(8, 29, 58, 0.18);

    opacity: 0.98;
}

.hero__photo-frame {
    position: absolute;
    top: 12%;
    right: 6%;

    z-index: 1;

    width: 72%;
    height: 70%;

    overflow: hidden;

    clip-path: polygon(
        22% 0,
        100% 0,
        78% 100%,
        0 100%
    );

    background: var(--color-primary-dark);

    transform: rotate(-1.2deg);

    filter: drop-shadow(
        0 24px 30px rgba(8, 29, 58, 0.26)
    );

    transition:
        transform 0.55s ease,
        filter 0.55s ease;
}

.hero__photo-frame::before {
    content: "";

    position: absolute;
    inset: 0;

    z-index: 2;

    background: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.22) 0%,
        rgba(255, 255, 255, 0.05) 25%,
        transparent 46%
    );

    pointer-events: none;
}

.hero__photo-frame::after {
    content: "";

    position: absolute;
    inset: 0;

    z-index: 1;

    background: linear-gradient(
        135deg,
        rgba(28, 72, 138, 0.04),
        rgba(8, 29, 58, 0.18)
    );

    pointer-events: none;
}

.hero__photo {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center;

    transform: scale(1.04);

    filter:
        contrast(1.05)
        saturate(0.92);

    transition:
        transform 0.75s ease,
        filter 0.75s ease;
}

.hero__visual:hover .hero__photo-frame {
    transform:
        rotate(-0.5deg)
        translateY(-7px);

    filter: drop-shadow(
        0 34px 38px rgba(8, 29, 58, 0.32)
    );
}

.hero__visual:hover .hero__photo {
    transform: scale(1.1);

    filter:
        contrast(1.07)
        saturate(1);
}


.hero__shape--small {
   display: none;
}

.hero__badge {
    position: absolute;
    right: 1%;
    bottom: 5%;
    z-index: 3;

    display: flex;
    flex-direction: column;

    width: min(260px, 78%);
    padding: 1.75rem;

    border: 1px solid rgba(12, 45, 90, 0.08);
    border-left: 4px solid var(--color-primary-light);
    border-radius: var(--radius-md);

    background: rgba(255, 255, 255, 0.94);

    box-shadow:
    0 24px 50px rgba(8, 29, 58, 0.18),
    0 8px 18px rgba(8, 29, 58, 0.08);

    backdrop-filter: blur(10px);
}

.hero__badge strong {
    color: var(--color-primary-dark);
    font-size: 1.35rem;
    font-weight: var(--fw-bold);
    line-height: 1.2;
}

.hero__badge span {
    margin-top: var(--space-2);
    color: var(--color-text-light);
    font-size: var(--fs-sm);
}

.hero {

    position: relative;

    background:
        linear-gradient(
            135deg,
            rgba(28,72,138,.03) 0%,
            rgba(28,72,138,0) 55%
        );

}

.hero::before{

    content:"";

    position:absolute;

    inset:0;

    background-image:

        linear-gradient(
            120deg,
            transparent 48%,
            rgba(28,72,138,.035) 49%,
            transparent 50%
        );

    background-size:500px 500px;

    pointer-events:none;

}

/* ==========================================================
   SECTION HEADING
========================================================== */

.section-heading {
    max-width: 800px;
    margin-bottom: var(--space-7);
}

.section-heading__eyebrow {
    display: flex;
    align-items: center;
    gap: 1rem;

    margin-bottom: var(--space-4);

    color: var(--color-primary);
    font-size: 23px;
    font-weight: var(--fw-bold);
    letter-spacing: 0.10em;
    text-transform: uppercase;
}

.section-heading__eyebrow::before {
    content: "";

    width: 60px;
    height: 2px;

    background: var(--color-primary);
}

.section-heading__title {
    margin-bottom: var(--space-5);

    color: var(--color-primary-dark);
    font-size: clamp(2.3rem, 4vw, 4rem);
    font-weight: var(--fw-black);
    line-height: 1.08;
}

.section-heading__description {
    max-width: 720px;

    color: #1D2939;
    font-size: 1.15rem;
    font-weight: var(--fw-regular);
    line-height: 1.65;
}

/* ==========================================================
   ABOUT HIGHLIGHTS
========================================================== */

.about-highlight {
    position: relative;

    display: flex;
    flex-direction: column;
    gap: var(--space-2);

    padding: var(--space-5);

    border: 1px solid var(--color-border);
    border-left: 4px solid var(--color-primary);
    border-radius: var(--radius-md);

    background: var(--color-background);

    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.about-highlight:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.about-highlight strong {
    color: var(--color-primary-dark);
    font-size: var(--fs-xl);
    font-weight: var(--fw-black);
}

.about-highlight span {
    color: var(--color-text-light);
    line-height: 1.5;
}

/*==========================================================
ABOUT CARD
==========================================================*/

.about-card{

    padding:40px;

    border-radius:20px;

    background:#fff;

    border:1px solid #edf0f5;

    text-align:center;

    transition:.35s;

    box-shadow:0 10px 30px rgba(0,0,0,.04);

}

.about-card:hover{

    transform:translateY(-8px);

    box-shadow:0 30px 60px rgba(0,0,0,.12);

}

.about-card h3{

    font-size:3rem;

    color:var(--color-primary);

    margin-bottom:12px;

}

.about-card span{

    color:#697487;

    line-height:1.6;

}

.about__link{

    display:inline-flex;

    align-items:center;

    gap:10px;

    color:var(--color-primary);

    font-weight:700;

    text-decoration:none;

}

.about__link:hover{

    gap:18px;

}

.about__story p {
    color: #1D2939;
    font-size: 1.17rem;
    font-weight: var(--fw-regular);
    line-height: 1.65;
}

/* ==========================================================
   LEADER PROFILE
========================================================== */

.leader-profile {
    position: relative;

    display: flex;
    flex-direction: column;
    align-items: center;

    padding: 3rem;

    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);

    background: var(--color-white);

    text-align: center;

    box-shadow: var(--shadow-sm);

    transition:
        transform var(--transition),
        border-color var(--transition),
        box-shadow var(--transition);
}

.leader-profile:hover {
    border-color: rgba(28, 72, 138, 0.22);

    transform: translateY(-6px);

    box-shadow: var(--shadow-md);
}

.leader-profile__photo-wrapper {
    width: 180px;
    height: 180px;

    margin-bottom: var(--space-5);
    padding: 6px;

    overflow: hidden;

    border-radius: 50%;

    background: var(--color-white);

    box-shadow:
        0 16px 35px rgba(8, 29, 58, 0.14),
        0 0 0 1px rgba(28, 72, 138, 0.08);
}

.leader-profile__photo {
    width: 100%;
    height: 100%;

    display: block;

    border-radius: 50%;

    object-fit: cover;
    object-position: center top;

    filter: contrast(1.03) saturate(0.96);

    transition: transform 0.5s ease;
}

.leader-profile:hover .leader-profile__photo {
    transform: scale(1.05);
}

.leader-profile__content {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: center;
}

.leader-profile__role {
    margin-bottom: var(--space-3);

    color: var(--color-primary);
    font-size: var(--fs-sm);
    font-weight: var(--fw-bold);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.leader-profile__name {
    margin-bottom: var(--space-4);

    color: var(--color-primary-dark);
    font-size: var(--fs-2xl);
    font-weight: var(--fw-black);
}

.leader-profile__summary {
    max-width: 500px;
    margin-bottom: var(--space-5);

    color: var(--color-text-light);
    font-size: var(--fs-md);
    line-height: 1.75;
}

.leader-profile__specialties {
    width: 100%;
    max-width: 360px;

    margin: 0 0 var(--space-6);
    padding: 0;

    list-style: none;

    text-align: left;
}

.leader-profile__specialties li {
    position: relative;

    padding: 0.7rem 0 0.7rem 1.5rem;

    border-bottom: 1px solid var(--color-border);

    color: var(--color-text);
}

.leader-profile__specialties li::before {
    content: "";

    position: absolute;
    top: 50%;
    left: 0;

    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: var(--color-primary);

    transform: translateY(-50%);
}

.leader-profile__button {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;

    margin-top: auto;
    padding: 0;

    border: 0;

    color: var(--color-primary);
    background: transparent;

    font: inherit;
    font-weight: var(--fw-bold);

    cursor: pointer;

    transition:
        gap var(--transition),
        color var(--transition);
}

.leader-profile__button:hover,
.leader-profile__button:focus-visible {
    gap: 1rem;
    color: var(--color-primary-light);
}

/* ==========================================================
   PROFILE MODAL
========================================================== */

.profile-modal {
    position: fixed;
    inset: 0;

    z-index: 2000;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 2rem;

    visibility: hidden;
    opacity: 0;

    transition:
        visibility 0.3s ease,
        opacity 0.3s ease;
}

.profile-modal.is-open {
    visibility: visible;
    opacity: 1;
}

.profile-modal__overlay {
    position: absolute;
    inset: 0;

    background: rgba(8, 29, 58, 0.72);

    backdrop-filter: blur(7px);

    cursor: pointer;
}

.profile-modal__dialog {
    position: relative;
    z-index: 1;

    width: min(920px, 100%);
    max-height: calc(100vh - 4rem);

    overflow-y: auto;

    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius-lg);

    background: var(--color-white);

    box-shadow:
        0 35px 90px rgba(8, 29, 58, 0.34),
        0 12px 30px rgba(8, 29, 58, 0.18);

    transform: translateY(24px) scale(0.98);

    transition: transform 0.35s ease;
}

.profile-modal.is-open .profile-modal__dialog {
    transform: translateY(0) scale(1);
}

.profile-modal__close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;

    z-index: 3;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 44px;
    height: 44px;

    border: 1px solid rgba(8, 29, 58, 0.08);
    border-radius: 50%;

    color: var(--color-primary-dark);
    background: rgba(255, 255, 255, 0.92);

    font-size: 1.8rem;
    line-height: 1;

    cursor: pointer;

    box-shadow: var(--shadow-sm);

    transition:
        color var(--transition),
        background-color var(--transition),
        transform var(--transition);
}

.profile-modal__close:hover,
.profile-modal__close:focus-visible {
    color: var(--color-white);
    background: var(--color-primary);

    transform: rotate(90deg);
}

.profile-modal__header {
    position: relative;

    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 2rem;
    align-items: center;

    padding: 3rem;

    overflow: hidden;

    background: linear-gradient(
        135deg,
        var(--color-primary-dark),
        var(--color-primary)
    );
}

.profile-modal__header::after {
    content: "";

    position: absolute;
    top: -100px;
    right: -70px;

    width: 260px;
    height: 260px;

    border: 45px solid rgba(255, 255, 255, 0.06);

    transform: rotate(35deg);
}

.profile-modal__photo-wrapper {
    position: relative;
    z-index: 1;

    width: 170px;
    height: 170px;

    padding: 6px;

    border-radius: 50%;

    background: var(--color-white);

    box-shadow: 0 18px 40px rgba(8, 29, 58, 0.3);
}

.profile-modal__photo {
    width: 100%;
    height: 100%;

    display: block;

    border-radius: 50%;

    object-fit: cover;
    object-position: center top;
}

.profile-modal__identity {
    position: relative;
    z-index: 1;
}

.profile-modal__role {
    display: block;

    margin-bottom: 0.75rem;

    color: rgba(255, 255, 255, 0.74);
    font-size: var(--fs-sm);
    font-weight: var(--fw-bold);
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.profile-modal__name {
    margin-bottom: 0.75rem;

    color: var(--color-white);
    font-size: clamp(2rem, 4vw, 3.4rem);
    font-weight: var(--fw-black);
    line-height: 1.05;
}

.profile-modal__experience {
    margin: 0;

    color: rgba(255, 255, 255, 0.82);
    font-size: var(--fs-lg);
}

.profile-modal__body {
    display: grid;
    gap: 2.5rem;

    padding: 3rem;
}

.profile-modal__section h3 {
    position: relative;

    margin-bottom: 1.25rem;
    padding-bottom: 0.85rem;

    color: var(--color-primary-dark);
    font-size: var(--fs-xl);
    font-weight: var(--fw-black);
}

.profile-modal__section h3::after {
    content: "";

    position: absolute;
    bottom: 0;
    left: 0;

    width: 48px;
    height: 3px;

    border-radius: 999px;

    background: var(--color-primary);
}

.profile-modal__section p {
    margin-bottom: 1rem;

    color: var(--color-text-light);
    line-height: 1.8;
}

.profile-modal__section p:last-child {
    margin-bottom: 0;
}

.profile-modal__list {
    display: grid;
    gap: 1rem;

    margin: 0;
    padding: 0;

    list-style: none;
}

.profile-modal__list li {
    position: relative;

    padding-left: 1.6rem;

    color: var(--color-text-light);
    line-height: 1.7;
}

.profile-modal__list li::before {
    content: "";

    position: absolute;
    top: 0.65rem;
    left: 0;

    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: var(--color-primary);
}

.profile-modal__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.profile-modal__tags span {
    padding: 0.65rem 1rem;

    border: 1px solid rgba(28, 72, 138, 0.12);
    border-radius: 999px;

    color: var(--color-primary-dark);
    background: rgba(28, 72, 138, 0.06);

    font-size: var(--fs-sm);
    font-weight: var(--fw-semibold);
}

body.modal-open {
    overflow: hidden;
}

html.menu-open,
body.menu-open {
    overflow: hidden;
    overscroll-behavior: none;
}

/* ==========================================================
   RESPONSIVE COMPONENTS
========================================================== */
@media (max-width: 1000px) {
    .menu-toggle {
        display: block;
    }

    .menu a::after {
        display: none;
    }
}

@media (max-width: 900px) {
    .hero__visual::before {
        top: 5%;
        right: 3%;

        width: 82%;
        height: 84%;
    }

    .hero__photo-frame {
        top: 9%;
        right: 10%;

        width: 70%;
        height: 72%;
    }

    .hero__shape--small {
        right: 72%;
        bottom: 1%;

        width: 22%;
        height: 30%;
    }

    .hero__badge {
        right: 3%;
        bottom: 1%;
    }
}

@media (max-width: 700px) {
    .profile-modal {
        align-items: flex-end;

        padding: 0;

        overflow-x: hidden;
    }

    .profile-modal__dialog {
        width: 100%;
        max-width: 100%;
        max-height: 92dvh;

        overflow-x: hidden;
        overflow-y: auto;

        border-radius:
            var(--radius-lg)
            var(--radius-lg)
            0
            0;
    }

    .profile-modal__header {
        grid-template-columns: minmax(0, 1fr);

        padding: 3.5rem 1.5rem 2rem;

        text-align: center;
    }

    .profile-modal__identity {
        min-width: 0;
    }

    .profile-modal__name,
    .profile-modal__experience,
    .profile-modal__section p,
    .profile-modal__list li {
        overflow-wrap: anywhere;
    }

    .profile-modal__photo-wrapper {
        width: 135px;
        height: 135px;

        margin-inline: auto;
    }

    .profile-modal__body {
        gap: 2rem;

        width: 100%;
        padding: 2rem 1.5rem;
    }

    .profile-modal__close {
        top: 1rem;
        right: 1rem;

        width: 40px;
        height: 40px;
    }
}

@media (max-width: 600px) {
    .hero__visual::before {
        top: 5%;
        right: -2%;

        width: 94%;
        height: 82%;

        clip-path: polygon(
            15% 0,
            100% 0,
            85% 100%,
            0 100%
        );
    }

    .hero__photo-frame {
        top: 9%;
        right: 5%;

        width: 84%;
        height: 68%;

        clip-path: polygon(
            15% 0,
            100% 0,
            85% 100%,
            0 100%
        );

        transform: rotate(-0.8deg);
    }

    .hero__visual:hover .hero__photo-frame {
        transform:
            rotate(-0.3deg)
            translateY(-4px);
    }

    .hero__shape--small {
        right: auto;
        bottom: 0;
        left: 0;

        width: 24%;
        height: 27%;
    }

    .hero__badge {
        right: 0;
        bottom: 0;

        width: min(230px, 78%);
        padding: 1.2rem;
    }

    .leader-profile {
        padding: 2rem 1.5rem;
    }
    .about-card {
        padding: 1.75rem 1.25rem;
    }

    .about-card h3 {
        margin-bottom: 0.5rem;
        font-size: 2.35rem;
    }

.about-card span {
    color: var(--color-text);
    font-size: 1.17rem;
    font-weight: var(--fw-regular);
    line-height: 1.65;
}
}

body.menu-open {
    overflow: hidden;
}

/* ==========================================================
   SERVICES
========================================================== */

.services {
    background:
        linear-gradient(
            180deg,
            var(--color-white) 0%,
            rgba(28, 72, 138, 0.04) 100%
        );
}

.services__heading {
    max-width: 760px;
    margin-bottom: 3.5rem;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
}

.service-card {
    position: relative;

    display: flex;
    flex-direction: column;

    min-height: 100%;

    padding: 1.4rem;

    overflow: hidden;

    border: 1px solid rgba(28, 72, 138, 0.1);
    border-radius: var(--radius-lg);

    background: var(--color-white);

    box-shadow:
        0 10px 30px rgba(15, 38, 70, 0.06);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.service-card::before {
    content: "";

    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background: var(--color-primary);

    transform: scaleX(0);
    transform-origin: left;

    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);

    border-color: rgba(28, 72, 138, 0.22);

    box-shadow:
        0 18px 45px rgba(15, 38, 70, 0.12);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card__top {
    display: flex;
    align-items: center;
    gap: 0.9rem;

    margin-bottom: 1rem;
    padding-bottom: 1rem;

    border-bottom: 1px solid rgba(28, 72, 138, 0.09);
}

.service-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;

    width: 40px;
    height: 40px;

    border-radius: 11px;

    color: var(--color-primary);
    background: rgba(28, 72, 138, 0.08);

    transition:
        transform 0.3s ease,
        color 0.3s ease,
        background 0.3s ease;
}

.service-card__icon svg {
    width: 21px;
    height: 21px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-card:hover .service-card__icon {
    transform: translateY(-2px);

    color: var(--color-white);
    background: var(--color-primary);
}

.service-card__title {
    margin: 0;

    color: var(--color-primary-dark);

    font-size: 1.08rem;
    font-weight: var(--fw-black);
    line-height: 1.3;
}

.service-card__description {
    margin-bottom: 1rem;

    color: var(--color-text-light);

    font-size: 0.94rem;
    line-height: 1.65;
}

.service-card__details {

    display: grid;

    grid-template-rows: 0fr;

    opacity: 0;

    max-height: 0;

    overflow: hidden;

    transition:
        grid-template-rows .35s ease,
        max-height .35s ease,
        opacity .25s ease,
        margin .35s ease;
}

.service-card__details-inner {
    overflow: hidden;
}

.service-card__details p {
    margin: 0;
    padding-top: 1.25rem;

    border-top: 1px solid rgba(28, 72, 138, 0.1);

    color: var(--color-text-light);

    line-height: 1.75;
}

.service-card.is-expanded .service-card__details {

    grid-template-rows: 1fr;

    max-height: 500px;

    margin-top: .5rem;

    opacity: 1;
}

.service-card__toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;

    width: fit-content;

    margin-top: auto;
    padding: 1.4rem 0 0;

    border: 0;

    color: var(--color-primary);

    background: transparent;

    font: inherit;
    font-weight: var(--fw-bold);

    cursor: pointer;

    transition: color 0.25s ease;
}

.service-card__toggle:hover {
    color: var(--color-primary-dark);
}

.service-card__toggle-icon{

    display:inline-flex;

    transition:
        transform .3s ease;

    font-size:.9rem;

}

.service-card.is-expanded .service-card__toggle-icon {
    transform: rotate(180deg);
}

.services__cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;

    margin-top: 4rem;
    padding: 2.5rem;

    border-radius: var(--radius-lg);

    color: var(--color-white);

    background:
        linear-gradient(
            135deg,
            var(--color-primary-dark),
            var(--color-primary)
        );
}

.services__cta-content {
    max-width: 680px;
}

.services__cta-eyebrow {
    display: block;

    margin-bottom: 0.75rem;

    color: rgba(255, 255, 255, 0.7);

    font-size: var(--fs-sm);
    font-weight: var(--fw-bold);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.services__cta h3 {
    margin-bottom: 0.75rem;

    color: var(--color-white);

    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: var(--fw-black);
    line-height: 1.15;
}

.services__cta p {
    margin: 0;

    color: rgba(255, 255, 255, 0.8);

    line-height: 1.7;
}

.services__cta .btn-primary {
    flex-shrink: 0;

    background: var(--color-white);
    color: var(--color-primary-dark);
}

.services__cta .btn-primary:hover {
    background: rgba(255, 255, 255, 0.88);
}

/* ==========================================================
   SERVICES RESPONSIVE
========================================================== */

@media (max-width: 1000px) {
    .services__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .services__cta {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 700px) {
    .services__heading {
        margin-bottom: 2.5rem;
    }

    .services__grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 1.5rem;
    }

    .services__cta {
        margin-top: 3rem;
        padding: 2rem 1.5rem;
    }

    .services__cta .btn-primary {
        width: 100%;
    }
}

/* =========================================================
   CONTACT
========================================================= */

.contact {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 10% 20%,
            rgba(191, 155, 48, 0.08),
            transparent 28rem
        ),
        var(--color-background);
}

.contact__header {
    max-width: 760px;
    margin-bottom: 3rem;
}

.contact__layout {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.35fr);
    gap: 2rem;
    align-items: start;
}

/* =========================================================
   CONTACT INFORMATION
========================================================= */

.contact__information {
    display: grid;
    gap: 1rem;
}

.contact-card {
    display: flex;
    gap: 1rem;
    padding: 1.35rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    background: var(--color-surface);
    box-shadow: var(--shadow-sm);
    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.contact-card:hover {
    transform: translateY(-3px);
    border-color: rgba(191, 155, 48, 0.4);
    box-shadow: var(--shadow-md);
}

.contact-card__icon {
    display: grid;
    flex: 0 0 3rem;
    width: 3rem;
    height: 3rem;
    place-items: center;
    border-radius: 0.9rem;
    background: rgba(191, 155, 48, 0.12);
    color: var(--color-primary);
}

.contact-card__content {
    min-width: 0;
}

.contact-card__title {
    margin: 0 0 0.45rem;
    color: var(--color-heading);
    font-size: 1.05rem;
    line-height: 1.3;
}

.contact-card__text {
    margin: 0;
    color: #1D2939;
    font-style: normal;
    line-height: 1.65;
}

.contact-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-top: 0.85rem;
    color: var(--color-primary);
    font-weight: 700;
    text-decoration: none;
    transition:
        gap 0.2s ease,
        color 0.2s ease;
}

.contact-card__link:hover {
    gap: 0.7rem;
    color: var(--color-primary-dark);
}

.contact-card__icon svg {
    display: block;
    width: 1.5rem;
    height: 1.5rem;
}

/* =========================================================
   CONTACT FORM WRAPPER
========================================================= */

.contact__form-wrapper {
    padding: 2rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    background: var(--color-surface);
    box-shadow: var(--shadow-md);
}

.contact__form-heading {
    margin-bottom: 1.75rem;
}

.contact__form-eyebrow {
    display: inline-block;
    margin-bottom: 0.55rem;
    color: var(--color-primary);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.contact__form-title {
    margin: 0 0 0.6rem;
    color: var(--color-heading);
    font-size: clamp(1.55rem, 2vw, 2rem);
    line-height: 1.2;
}

.contact__form-description {
    max-width: 620px;
    margin: 0;
    color: #1D2939;
    line-height: 1.65;
}

/* =========================================================
   CONTACT FORM
========================================================= */

.contact-form {
    display: grid;
    gap: 1.15rem;
}

.contact-form__row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.contact-form__group {
    display: grid;
    gap: 0.45rem;
}

.contact-form__group label {
    color: var(--color-heading);
    font-size: 0.92rem;
    font-weight: 700;
}

.contact-form__group label span {
    color: var(--color-primary);
}

.contact-form__group input,
.contact-form__group textarea {
    width: 100%;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background: var(--color-background);
    color: #1D2939;
    font: inherit;
    outline: none;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background-color 0.2s ease;
}

.contact-form__group input {
    min-height: 3.2rem;
    padding: 0 1rem;
}

.contact-form__group textarea {
    min-height: 9rem;
    padding: 0.9rem 1rem;
    resize: vertical;
}

.contact-form__group input::placeholder,
.contact-form__group textarea::placeholder {
    color: var(--color-text-muted);
    opacity: 0.72;
}

.contact-form__group input:hover,
.contact-form__group textarea:hover {
    border-color: rgba(191, 155, 48, 0.4);
}

.contact-form__group input:focus,
.contact-form__group textarea:focus {
    border-color: var(--color-primary);
    background: var(--color-surface);
    box-shadow: 0 0 0 4px rgba(191, 155, 48, 0.12);
}

/* =========================================================
   PRIVACY
========================================================= */

.contact-form__privacy {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
}

.contact-form__privacy input {
    flex: 0 0 auto;
    width: 1.05rem;
    height: 1.05rem;
    margin-top: 0.2rem;
    accent-color: var(--color-primary);
}

.contact-form__privacy label {
    color: var(--color-text-muted);
    font-size: 0.88rem;
    line-height: 1.55;
}

.contact-form__privacy a {
    color: var(--color-primary);
    font-weight: 700;
    text-decoration: none;
}

.contact-form__privacy a:hover {
    text-decoration: underline;
}

/* =========================================================
   FORM FEEDBACK AND BUTTON
========================================================= */

.contact-form__feedback {
    display: none;
    padding: 0.9rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.92rem;
    line-height: 1.5;
}

.contact-form__feedback.is-visible {
    display: block;
}

.contact-form__feedback.is-success {
    border: 1px solid rgba(34, 139, 94, 0.3);
    background: rgba(34, 139, 94, 0.1);
    color: #17663f;
}

.contact-form__feedback.is-error {
    border: 1px solid rgba(184, 52, 52, 0.3);
    background: rgba(184, 52, 52, 0.1);
    color: #8f2929;
}

.contact-form__submit {
    justify-self: start;
    min-width: 12.5rem;
}

.contact-form__submit:disabled {
    cursor: not-allowed;
    opacity: 0.7;
}

/* =========================================================
   CONTACT RESPONSIVE
========================================================= */

@media (max-width: 980px) {
    .contact__layout {
        grid-template-columns: 1fr;
    }

    .contact__information {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .contact-card {
        flex-direction: column;
    }
}

@media (max-width: 760px) {
    .contact__header {
        margin-bottom: 2.25rem;
    }

    .contact__information {
        grid-template-columns: 1fr;
    }

    .contact__form-wrapper {
        padding: 1.4rem;
    }

    .contact-form__row {
        grid-template-columns: 1fr;
    }

    .contact-form__submit {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .contact-card {
        padding: 1.15rem;
    }

    .contact__form-wrapper {
        padding: 1.15rem;
        border-radius: var(--radius-lg);
    }

    .contact-form__group input {
        min-height: 3rem;
    }
}

/* ==========================================================
   FOOTER
========================================================== */

.footer {
    position: relative;
    overflow: hidden;

    padding-top: clamp(4.5rem, 7vw, 6.5rem);

    color: rgba(255, 255, 255, 0.78);

    background:
        radial-gradient(
            circle at 10% 10%,
            rgba(28, 71, 133, 0.45),
            transparent 32rem
        ),
        linear-gradient(
            135deg,
            var(--color-primary-dark),
            #06162d
        );
}

.footer::before {
    content: "";

    position: absolute;
    top: -160px;
    right: -120px;

    width: 420px;
    height: 420px;

    border: 70px solid rgba(255, 255, 255, 0.025);

    transform: rotate(35deg);

    pointer-events: none;
}

.footer__main {
    position: relative;
    z-index: 1;

    display: grid;

    grid-template-columns:
        1.7fr
        1fr
        1.2fr;

    gap: clamp(4rem, 8vw, 8rem);

    padding-bottom: clamp(3.5rem, 6vw, 5rem);
}

.footer__brand {
    max-width: 360px;
}

.footer__eyebrow {
    display: flex;
    align-items: center;
    gap: 0.75rem;

    margin-bottom: 1.25rem;

    color: rgba(255, 255, 255, 0.72);

    font-size: 0.75rem;
    font-weight: var(--fw-bold);
    line-height: 1.6;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer__eyebrow::before {
    display: none;
}

.footer__logo {
    display: inline-flex;

    margin-bottom: 1.75rem;

    border-radius: var(--radius-sm);
}

.footer__logo-image {
    width: min(230px, 100%);
    height: auto;

    display: block;

    padding: 0.65rem 0.85rem;

    border-radius: var(--radius-md);

    background: rgba(255, 255, 255, 0.96);
}

.footer__description {
    margin-bottom: 1.25rem;

    color: rgba(255, 255, 255, 0.72);
    font-size: 1rem;
    line-height: 1.8;
}

.footer__experience {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;

    color: rgba(255, 255, 255, 0.92);

    font-size: var(--fs-sm);
    font-weight: var(--fw-bold);
    letter-spacing: 0.05em;
}

.footer__experience::before {
 display: block;
}

.footer__title {
    position: relative;

    margin-bottom: 1.75rem;
    padding-bottom: 0.85rem;

    color: var(--color-white);

    font-size: 1.05rem;
    font-weight: var(--fw-bold);
}

.footer__title::after {
    content: "";

    position: absolute;
    bottom: 0;
    left: 0;

    width: 36px;
    height: 2px;

    background: var(--color-primary-light);
}

.footer__links {
    display: grid;
    gap: 0.95rem;
}

.footer__links a {
    position: relative;

    display: inline-flex;
    align-items: center;
    gap: 0.6rem;

    color: rgba(255, 255, 255, 0.7);

    font-size: 0.95rem;
    line-height: 1.5;

    transition:
        color var(--transition),
        transform var(--transition);
}

.footer__links a::before {
    content: "";

    width: 5px;
    height: 5px;

    flex-shrink: 0;

    border-radius: 50%;

    background: var(--color-primary-light);

    opacity: 0;

    transform: scale(0);

    transition:
        opacity var(--transition),
        transform var(--transition);
}

.footer__links a:hover,
.footer__links a:focus-visible {
    color: var(--color-white);

    transform: translateX(5px);
}

.footer__links a:hover::before,
.footer__links a:focus-visible::before {
    opacity: 1;

    transform: scale(1);
}

.footer__bottom {
    position: relative;
    z-index: 1;

    display: flex;
    justify-content: center;
    align-items: center;

    padding: 1.75rem 0;

    text-align: center;

    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__bottom p {
    margin: 0;

    color: rgba(255, 255, 255, 0.56);

    font-size: 0.875rem;
    line-height: 1.6;
}

/* ==========================================================
   FOOTER RESPONSIVO
========================================================== */

@media (max-width: 1050px) {

    .footer__main {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer__brand {
        max-width: 440px;
    }

}

@media (max-width: 650px) {

    .footer__eyebrow {
    max-width: 320px;

    font-size: 0.7rem;
    }

    .footer {
        padding-top: 4rem;
    }

    .footer__main {
        grid-template-columns: 1fr;
        gap: 2.75rem;

        padding-bottom: 3.5rem;
    }

    .footer__brand {
        max-width: none;
    }

    .footer__logo-image {
        width: 205px;
    }

    .footer__title {
        margin-bottom: 1.4rem;
    }

    .footer__bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 1rem;
    }

    .footer__bottom p {
        line-height: 1.7;
    }

}

/* ==========================================================
   CONTACT FORM — SECURITY
========================================================== */

.contact-form__honeypot {
    position: absolute !important;
    left: -9999px !important;

    width: 1px !important;
    height: 1px !important;

    overflow: hidden !important;

    opacity: 0 !important;
    pointer-events: none !important;
}

/* ==========================================================
   CONTACT FORM — LOADING
========================================================== */

.contact-form__submit {
    position: relative;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: .65rem;
}

.contact-form__spinner {
    display: none;

    width: 18px;
    height: 18px;

    border: 2px solid rgba(255,255,255,.35);
    border-top-color: #fff;

    border-radius: 50%;

    animation: contact-spinner .8s linear infinite;
}

.contact-form__submit.is-loading .contact-form__spinner{
    display:block;
}

@keyframes contact-spinner{

    from{
        transform:rotate(0deg);
    }

    to{
        transform:rotate(360deg);
    }

}

/* ==========================================================
   HERO SWIPER
========================================================== */

.hero-swiper {
    width: 100%;
    overflow: hidden;
}

.hero-swiper .swiper-wrapper {
    align-items: stretch;
}

.hero-swiper .swiper-slide {
    height: auto;
}

.hero-swiper__pagination {
    bottom: 1.5rem !important;
}

.hero-swiper__pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;

    background: var(--color-primary);

    opacity: 0.35;

    transition:
        width 0.25s ease,
        opacity 0.25s ease,
        border-radius 0.25s ease;
}

.hero-swiper__pagination .swiper-pagination-bullet-active {
    width: 28px;

    border-radius: 999px;

    opacity: 1;
}

.hero-swiper__prev,
.hero-swiper__next {
    width: 48px;
    height: 48px;

    border: 1px solid rgba(8, 29, 58, 0.08);
    border-radius: 50%;

    color: var(--color-primary-dark);
    background: rgba(255, 255, 255, 0.92);

    box-shadow: var(--shadow-sm);

    transition:
        color var(--transition),
        background-color var(--transition),
        transform var(--transition),
        box-shadow var(--transition);
}

.hero-swiper__prev::after,
.hero-swiper__next::after {
    font-size: 1rem;
    font-weight: 900;
}

.hero-swiper__prev {
    left: 1.5rem;
}

.hero-swiper__next {
    right: 1.5rem;
}

.hero-swiper__prev:hover,
.hero-swiper__next:hover,
.hero-swiper__prev:focus-visible,
.hero-swiper__next:focus-visible {
    color: var(--color-white);
    background: var(--color-primary);

    transform: translateY(-2px);

    box-shadow: var(--shadow-md);
}

@media (max-width: 1000px) {
    .hero-swiper .hero__container {
        min-height: auto;
    }

    .hero-swiper__prev,
    .hero-swiper__next {
        width: 42px;
        height: 42px;
    }

    .hero-swiper__prev {
        left: 0.75rem;
    }

    .hero-swiper__next {
        right: 0.75rem;
    }
}

@media (max-width: 700px) {
    .hero-swiper {
        padding-bottom: 3.5rem;
    }

    .hero-swiper__pagination {
        bottom: 0.75rem !important;
    }

    .hero-swiper__prev,
    .hero-swiper__next {
        display: none;
    }
}


/* =========================================================
   MODAIS LEGAIS
========================================================= */

.legal-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
        opacity 0.25s ease,
        visibility 0.25s ease;
}

.legal-modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.legal-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(6, 18, 30, 0.78);
    backdrop-filter: blur(5px);
}

.legal-modal__content {
    position: relative;
    z-index: 1;
    width: min(820px, 100%);
    max-height: min(820px, 90vh);
    overflow-y: auto;
    padding: 2.5rem;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.3);
    transform: translateY(25px);
    transition: transform 0.25s ease;
}

.legal-modal.is-open .legal-modal__content {
    transform: translateY(0);
}

.legal-modal__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #f2f4f6;
    color: #152738;
    font-size: 1.8rem;
    line-height: 1;
    cursor: pointer;
    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.legal-modal__close:hover {
    background: #e4e8ec;
    transform: rotate(4deg);
}

.legal-modal__header {
    padding-right: 3rem;
    margin-bottom: 2rem;
}

.legal-modal__eyebrow {
    display: block;
    margin-bottom: 0.5rem;
    color: #a4772c;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.legal-modal__header h2 {
    margin: 0 0 0.5rem;
    color: #10263a;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
}

.legal-modal__header p {
    margin: 0;
    color: #66727d;
}

.legal-modal__body {
    color: #45525d;
    line-height: 1.75;
}

.legal-modal__body h3 {
    margin: 1.8rem 0 0.55rem;
    color: #162b3d;
    font-size: 1.08rem;
}

.legal-modal__body p {
    margin: 0 0 1rem;
}

.legal-modal__body a {
    color: #a4772c;
    font-weight: 600;
    text-decoration: underline;
}

.legal-modal__acceptance {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #dfe4e8;
}

.legal-modal__checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    cursor: pointer;
}

.legal-modal__checkbox input {
    width: 18px;
    height: 18px;
    margin-top: 0.2rem;
    accent-color: #a4772c;
}

.legal-modal__accept-button {
    width: 100%;
    min-height: 50px;
    padding: 0.85rem 1.4rem;
    border: 0;
    border-radius: 8px;
    background: #a4772c;
    color: #ffffff;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
    transition:
        opacity 0.2s ease,
        transform 0.2s ease;
}

.legal-modal__accept-button:hover:not(:disabled) {
    transform: translateY(-2px);
}

.legal-modal__accept-button:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.legal-modal__accept-button.is-accepted {
    background: #2d7b4f;
}

body.legal-modal-open {
    overflow: hidden;
}


/* =========================================================
   BANNER DE COOKIES
========================================================= */

.cookie-banner {
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    left: 1.5rem;
    z-index: 9990;
    max-width: 1180px;
    margin: 0 auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px);
    pointer-events: none;
    transition:
        opacity 0.3s ease,
        visibility 0.3s ease,
        transform 0.3s ease;
}

.cookie-banner.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.cookie-banner__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 1.4rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    background: #10263a;
    color: #ffffff;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.3);
}

.cookie-banner__text {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.cookie-banner__icon {
    font-size: 2rem;
    line-height: 1;
}

.cookie-banner__text h2 {
    margin: 0 0 0.4rem;
    color: #ffffff;
    font-size: 1.1rem;
}

.cookie-banner__text p {
    max-width: 700px;
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.92rem;
    line-height: 1.55;
}

.cookie-banner__policy {
    margin-top: 0.65rem;
    padding: 0;
    border: 0;
    background: transparent;
    color: #d9b16d;
    font: inherit;
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: underline;
    cursor: pointer;
}

.cookie-banner__actions {
    display: flex;
    flex-shrink: 0;
    gap: 0.75rem;
}

.cookie-banner__button {
    min-height: 44px;
    padding: 0.7rem 1.1rem;
    border-radius: 7px;
    font: inherit;
    font-size: 0.88rem;
    font-weight: 700;
    cursor: pointer;
    transition:
        transform 0.2s ease,
        background 0.2s ease;
}

.cookie-banner__button:hover {
    transform: translateY(-2px);
}

.cookie-banner__button--primary {
    border: 1px solid #b88b40;
    background: #b88b40;
    color: #ffffff;
}

.cookie-banner__button--secondary {
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: transparent;
    color: #ffffff;
}


/* =========================================================
   RESPONSIVIDADE
========================================================= */

@media (max-width: 768px) {

    .legal-modal {
        align-items: flex-end;
        padding: 0;
    }

    .legal-modal__content {
        width: 100%;
        max-height: 92vh;
        padding: 2rem 1.25rem;
        border-radius: 18px 18px 0 0;
    }

    .cookie-banner {
        right: 0.75rem;
        bottom: 0.75rem;
        left: 0.75rem;
    }

    .cookie-banner__content {
        align-items: stretch;
        flex-direction: column;
        gap: 1.25rem;
        padding: 1.2rem;
    }

    .cookie-banner__actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .cookie-banner__button {
        width: 100%;
    }

}

.contact-form__legal-link{

    display:inline;

    padding:0;

    border:none;

    background:none;

    color:var(--color-primary);

    font:inherit;

    font-weight:700;

    text-decoration:underline;

    cursor:pointer;

}

.contact-form__legal-link:hover{

    color:var(--color-primary-light);

}

/* ==========================================================
   NEWS SECTION
========================================================== */

.news-section {
    padding: 96px 0;
    background: #f4f7fa;
}

.news-section__header {
    max-width: 760px;
    margin: 0 auto 48px;
    text-align: center;
}

.news-section__eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--color-primary);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.news-section__title {
    margin-bottom: 16px;
    color:var(--color-primary-light);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.1;
}

.news-section__description {
    margin: 0;
    color: #5f6b76;
    font-size: 1.05rem;
    line-height: 1.7;
}

.news-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 28px;
}

.news-card {
    flex: 0 1 360px;
    max-width: 380px;

    display: flex;
    flex-direction: column;

    overflow: hidden;

    background: #ffffff;

    border: 1px solid rgba(31, 41, 51, 0.08);

    border-radius: 18px;

    box-shadow: 0 14px 34px rgba(31, 41, 51, 0.08);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.news-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 44px rgba(31, 41, 51, 0.14);
}

.news-card__image-wrapper {
    position: relative;

    overflow: hidden;

    aspect-ratio: 16 / 9;

    background: #dde5ec;
}

.news-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.news-card:hover .news-card__image {
    transform: scale(1.04);
}

.news-card__content {
    display: flex;

    flex: 1;

    flex-direction: column;

    padding: 28px;
}

.news-card__title {
    margin: 0 0 14px;
    color: #1f2933;
    font-size: 1.28rem;
    line-height: 1.35;
}

.news-card__description {
    margin: 0 0 24px;
    color: #65717c;
    font-size: 0.98rem;
    line-height: 1.65;
}

.news-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    margin-top: auto;
    color: var(--color-primary);
    font-weight: 700;
    text-decoration: none;
    transition:
        gap 0.2s ease,
        opacity 0.2s ease;
}

.news-card__link:hover {
    gap: 12px;
    opacity: 0.82;
}

.news-card__link span {
    font-size: 1.1rem;
}

/* ==========================================================
   NEWS RESPONSIVE
========================================================== */

@media (max-width: 1000px) {
    .news-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 680px) {
    .news-section {
        padding: 72px 0;
    }

    .news-section__header {
        margin-bottom: 36px;
        text-align: left;
    }

    .news-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .news-card__content {
        padding: 22px;
    }
}