@font-face {
    font-family: 'Patria';
    src: url('../font/Patria.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Noto Sans';
    src: url('../font/NotoSans.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

body,
p,
li,
a,
label,
input,
textarea,
select,
button,
.btn,
small,
span,
div,
section,
header,
footer,
main {
    font-family: 'Noto Sans', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
.navbar-brand,
.logo,
strong,
b,
.font-weight-bold,
.fw-bold {
    font-family: 'Patria', serif;
}

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

.top-bar {
    height: 43px;
    background: #17130d;
    color: #ddd;
    font-size: 14px;

    display: flex;
    align-items: center;
}

.top-bar i {
    color: #c9a44c;
    margin-right: 6px;
}

/* =========================
   NAVBAR
========================= */

.main-navbar {
    min-height: 100px;

    background: rgba(20, 17, 13, 0.88);

    position: absolute;
    top: 43px;
    left: 0;
    right: 0;

    z-index: 1000;

    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}


/* Logo */

.logo {
    font-size: 28px;
    font-weight: 400;

    color: #c9ad70 !important;
}

.logo i {
    font-size: 35px;
    margin-right: 10px;
}


/* Menú */

.main-navbar .nav-link {
    color: #eeeeee !important;

    font-size: 16px;

    padding: 38px 17px !important;

    position: relative;
}


/* Hover */

.main-navbar .nav-link:hover {
    color: #f4c936 !important;
}


/* Elemento activo */

.main-navbar .nav-link.active {
    color: #f4c936 !important;
}


/* Línea amarilla debajo de Home */

.main-navbar .nav-link.active::after {
    content: "";

    position: absolute;

    bottom: 5px;
    left: 50%;

    transform: translateX(-50%);

    width: 55px;
    height: 4px;

    background: #f4c936;
}


/* =========================
   HERO
========================= */

.hero {

    min-height: 750px;

    position: relative;

    background-image:
        linear-gradient(90deg,
            rgba(0, 0, 0, 0.78) 0%,
            rgba(0, 0, 0, 0.48) 45%,
            rgba(0, 0, 0, 0.08) 100%),
        url("../img/hero-notaria.jpg");

    background-size: cover;

    background-position: center;

    display: flex;
    align-items: center;
}


/* =========================
   CONTENIDO HERO
========================= */

.hero-content {
    padding-left: 7%;
    padding-top: 90px;
}


/* Título */

.hero h1 {
    color: white;

    font-size: 60px;

    line-height: 1.12;

    font-weight: 700;

    margin-bottom: 25px;
}


/* Párrafo */

.hero h3 {

    color: #eeeeee;

}


/* =========================
   BOTÓN
========================= */

.appointment-btn {

    background: #f4c936;

    color: #1c170e;

    border: none;

    border-radius: 0;

    padding: 16px 35px;

    font-size: 17px;

    font-weight: bold;
}


.appointment-btn:hover {

    background: #dcae20;

    color: #111;
}


@media (max-width: 991px) {

    .top-bar {
        display: none;
    }

    .main-navbar {
        top: 0;
        min-height: 75px;
    }

    .main-navbar .nav-link {
        padding: 12px 15px !important;
    }

    .main-navbar .nav-link.active::after {
        display: none;
    }

    .hero {
        min-height: 700px;

        background-position: center;
    }

    .hero-content {
        padding: 100px 30px 40px;
    }

    .hero h1 {
        font-size: 45px;
    }

}


@media (max-width: 576px) {

    .hero h1 {
        font-size: 38px;
    }

    .hero p {
        font-size: 15px;
    }

    .logo {
        font-size: 22px;
    }

}


/* =========================
           SERVICES SECTION
        ========================= */

.notary-services {
    padding: 80px 0;
}

.services-title {
    padding-right: 30px;
}

.eyebrow {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 12px;
}

.services-title h1 {
    font-size: clamp(42px, 4.5vw, 64px);
    line-height: 0.95;
    font-weight: 800;
    letter-spacing: -2px;
    margin: 0;
    color: var(--navy);
}

/* =========================
           SERVICE CARD
        ========================= */

.service-card {
    height: 100%;
    padding: 5px 0 30px;
    border: 0;
    background: transparent;
}

.service-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--orange);
    font-size: 38px;

    margin-bottom: 28px;
}

.service-icon i {
    font-weight: 300;
}

.service-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.7px;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 10px;
}

.service-card h3 {
    font-size: 24px;
    line-height: 1.15;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 16px;
}

.service-card p {
    max-width: 330px;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 0;
}

/* =========================
           RESPONSIVE
        ========================= */

@media (max-width: 991.98px) {

    .notary-services {
        padding: 60px 0;
    }

    .services-title {
        margin-bottom: 50px;
        padding-right: 0;
    }

    .services-title h1 {
        max-width: 600px;
    }
}

@media (max-width: 575.98px) {

    .notary-services {
        padding: 45px 20px;
    }

    .services-title h1 {
        font-size: 43px;
    }

    .service-card {
        padding-bottom: 40px;
    }

    .service-icon {
        margin-bottom: 20px;
    }

    .service-card h3 {
        font-size: 22px;
    }
}