:root {
    --black: #171717;
    --black-soft: #242424;
    --gold: #A8922B;
    --gold-dark: #806D1D;
    --gold-soft: #EFE9CF;
    --white: #FFFFFF;
    --off-white: #F7F6F1;
    --gray: #666666;
    --border: #E4E0D2;
    --shadow: 0 18px 40px rgba(0, 0, 0, .08);
    --radius: 22px;
    --container: 1180px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    background: var(--off-white);
    color: var(--black);
    line-height: 1.55;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(92%, var(--container));
    margin-inline: auto;
}

.section {
    padding: 86px 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 22px;
    border-radius: 999px;
    font-weight: 800;
    text-decoration: none;
    border: 1px solid transparent;
    transition: .2s ease;
}

.btn-primary,
.btn-gold {
    background: var(--gold);
    color: var(--white);
}

.btn-primary:hover,
.btn-gold:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    color: var(--black);
    border-color: var(--border);
    background: var(--white);
}

.btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold-dark);
}

.header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(247, 246, 241, .94);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}

.navbar {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: var(--black);
}

.brand-logo {
    width: 64px;
    height: 64px;
    object-fit: contain;
    border-radius: 50%;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.brand-text strong {
    font-size: 1.55rem;
    font-weight: 950;
    letter-spacing: .03em;
}

.brand-text span {
    margin-top: 5px;
    font-size: .82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav a,
.footer a {
    color: var(--black);
    text-decoration: none;
    font-weight: 750;
}

.nav a:hover,
.footer a:hover {
    color: var(--gold-dark);
}

.menu-check,
.menu-toggle {
    display: none;
}

.hero {
    position: relative;
    overflow: hidden;
    background: var(--white);
    /*border-bottom:12px solid var(--black-soft);*/
}

.hero::before {
    content: "";
    position: absolute;
    left: -180px;
    bottom: -220px;
    width: 430px;
    height: 430px;
    border-radius: 50%;
    border: 46px solid var(--gold);
    opacity: .9;
}

.hero-grid {
    min-height: 630px;
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    align-items: center;
    gap: 54px;
    position: relative;
    z-index: 1;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 22px;
    color: var(--gold-dark);
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.hero h1 {
    max-width: 650px;
    font-size: clamp(2.8rem, 6vw, 5.25rem);
    line-height: .98;
    text-transform: uppercase;
    letter-spacing: -.04em;
    margin-bottom: 24px;
}

.hero h1 span,
.section-title h2 span {
    color: var(--gold);
}

.hero p {
    max-width: 610px;
    color: var(--gray);
    font-size: 1.12rem;
}

.hero-features {
    margin: 34px 0 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(180px, 1fr));
    gap: 14px 24px;
    max-width: 620px;
}

.hero-features div {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: .95rem;
}

.hero-features span {
    width: 28px;
    height: 28px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--gold-dark);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.hero-media {
    position: relative;
    min-height: 520px;
    border-top-left-radius: 150px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: var(--black);
}

.hero-media::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 28px;
    background: var(--gold);
    z-index: 2;
}

.hero-media img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    opacity: .9;
}

.hero-badge {
    position: absolute;
    right: 0;
    bottom: 0;
    width: min(390px, 78%);
    background: var(--black);
    color: var(--white);
    padding: 34px 38px;
    font-size: 1.35rem;
    line-height: 1.25;
    font-weight: 900;
    text-transform: uppercase;
    border-top-left-radius: 90px;
    border-top: 10px solid var(--gold);
    border-left: 10px solid var(--gold);
}

.section-title {
    max-width: 780px;
    margin: 0 auto 46px;
    text-align: center;
}

.section-title.left {
    margin-left: 0;
    text-align: left;
}

.section-title h2 {
    font-size: clamp(2rem, 4vw, 3.1rem);
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: -.03em;
}

.section-title p {
    margin-top: 16px;
    color: var(--gray);
}

.services {
    background: var(--off-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.service-card {
    padding: 32px;
    background: transparent;
    border: 1px solid transparent;
    border-radius: var(--radius);
    transition: .2s ease;
}

.service-card:hover {
    background: var(--white);
    border-color: var(--border);
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}

.service-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--gold-soft);
    color: var(--gold-dark);
    display: grid;
    place-items: center;
    font-size: 2rem;
    margin-bottom: 22px;
}

.service-card h3 {
    min-height: 58px;
    font-size: 1rem;
    line-height: 1.25;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.service-card p,
.benefits-grid p,
.mission-card p {
    color: var(--gray);
}

.commitment {
    background: var(--white);
}

.commitment-grid {
    display: grid;
    grid-template-columns: 1.35fr .65fr;
    gap: 44px;
    align-items: stretch;
}

.mission-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 34px;
    display: grid;
    gap: 30px;
}

.mission-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 22px;
    align-items: start;
}

.mission-icon {
    width: 70px;
    height: 70px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--gold-dark);
    border: 2px solid var(--gold);
    font-size: 2rem;
    font-weight: 900;
}

.mission-item h3 {
    color: var(--gold-dark);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.contact-panel {
    background: var(--black);
    color: var(--white);
    border-top-left-radius: 90px;
    padding: 48px 36px;
    border-top: 10px solid var(--gold);
}

.contact-panel h2 {
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 28px;
}

.contact-panel ul {
    list-style: none;
    display: grid;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-panel li {
    display: grid;
    gap: 3px;
}

.contact-panel strong {
    color: var(--gold);
}

.contact-panel span {
    color: #EEEEEE;
}

.benefits {
    background: var(--off-white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.benefits-grid article {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
}

.benefits-grid h3 {
    margin-bottom: 10px;
    color: var(--gold-dark);
}

.footer {
    padding: 26px 0;
    background: var(--black);
    color: var(--white);
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.footer a {
    color: var(--white);
    margin-left: 18px;
}

@media (max-width:980px) {
    .nav-cta {
        display: none;
    }

    .menu-toggle {
        display: block;
        font-size: 1.8rem;
        cursor: pointer;
    }

    .nav {
        position: absolute;
        top: 82px;
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        padding: 24px 4%;
        background: var(--off-white);
        border-bottom: 1px solid var(--border);
    }

    .menu-check:checked~.nav {
        display: flex;
    }

    .hero-grid,
    .commitment-grid,
    .services-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        padding: 56px 0;
    }

    .hero-media {
        min-height: 420px;
        border-top-left-radius: 90px;
    }

    .hero-media img {
        height: 420px;
    }
}

@media (max-width:640px) {
    .section {
        padding: 64px 0;
    }

    .navbar {
        min-height: 74px;
    }

    .brand-logo {
        width: 52px;
        height: 52px;
    }

    .brand-text strong {
        font-size: 1.22rem;
    }

    .brand-text span {
        font-size: .68rem;
    }

    .nav {
        top: 74px;
    }

    .hero h1 {
        font-size: 2.7rem;
    }

    .hero-features {
        grid-template-columns: 1fr;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-media,
    .hero-media img {
        min-height: 330px;
        height: 330px;
    }

    .hero-badge {
        width: 86%;
        padding: 24px;
        font-size: 1rem;
    }

    .service-card,
    .mission-card,
    .benefits-grid article {
        padding: 24px;
    }

    .mission-item {
        grid-template-columns: 1fr;
    }

    .contact-panel {
        border-top-left-radius: 60px;
        padding: 38px 28px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer a {
        margin: 0 8px;
    }
}



.commitment-image {
    position: relative;
    overflow: hidden;

    border-top-left-radius: 90px;

    min-height: 420px;

    background: #111;

    box-shadow: var(--shadow);
}

.commitment-image img {
    width: 100%;
    height: 100%;

    object-fit: contain;

    padding: 20px;

    background: #111;
}

.commitment-badge {

    position: absolute;

    left: 0;
    bottom: 0;

    background: rgba(23, 23, 23, .92);

    color: var(--white);

    padding: 26px 30px;

    border-top-right-radius: 36px;

    font-size: 1rem;

    line-height: 1.4;

    border-top: 6px solid var(--gold);
    border-right: 6px solid var(--gold);
}

.commitment-badge strong {

    display: block;

    margin-top: 6px;

    color: var(--gold);

    font-size: 1.3rem;

    text-transform: uppercase;
}


.contact-section {
    background:var(--white);
}


@media(max-width:980px) {

    .contact-box {
        grid-template-columns: 1fr;
    }
}


.contact-box{
    display:grid;
    grid-template-columns:1fr .9fr;
    gap:34px;
    align-items:center;

    background:var(--white);
    border:1px solid var(--border);
    border-radius:var(--radius);
    box-shadow:var(--shadow);

    padding:34px;
    max-width:980px;
    margin:0 auto;
}

.contact-info{
    text-align:left;
}

.contact-info h3{
    color:var(--gold-dark);
    text-transform:uppercase;
    margin-bottom:16px;
    font-size:2rem;
}

.contact-copy{
    color:var(--gray);
    margin-bottom:28px;
    max-width:520px;
}

.contact-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-image img {
    display: block;
    max-width: 60%;
    height: auto;
    margin: 0 auto;
}

/*.contact-image{
    position:relative;
    overflow:hidden;
    border-top-left-radius:70px;
    border-radius:var(--radius);
    min-height:360px;
    background:#111;
}

.contact-image img{
    width:70%;
    height:100%;
    object-fit:cover;
}*/

.contact-actions{
    display:flex;
    gap:14px;
    flex-wrap:wrap;
    margin-top:30px;
}

@media(max-width:980px){
    .contact-box{
        grid-template-columns:1fr;
    }

    .contact-info{
        text-align:center;
    }

    .contact-copy{
        margin-left:auto;
        margin-right:auto;
    }

    .contact-actions{
        justify-content:center;
    }

    /* .contact-image{
        min-height:280px;
    } */
}











.btn-whatsapp {

    background: #25D366;
    color: #fff;
}

.btn-whatsapp:hover {

    background: #1ebe5a;

    transform: translateY(-2px);
}




.jobs-actions{

    display:flex;

    justify-content:center;

    margin-top:20px;
}

.jobs-actions .btn{

    min-width:320px;
}