@font-face {
    font-family: "Roboto";
    src: url("../fonts/Roboto-Regular.ttf") format("truetype");
    font-weight: 400;
}

@font-face {
    font-family: "Roboto";
    src: url("../fonts/Roboto-Medium.ttf") format("truetype");
    font-weight: 600;
}

:root {
    --ink: #102529;
    --ink-soft: #42575b;
    --muted: #f5f1ef;
    --surface: #ffffff;
    --surface-strong: #fbfaf8;
    --line: #e7ded9;
    --brand: #580024;
    --brand-strong: #3b0018;
    --teal: #0a4858;
    --gold: #b48a5a;
    --shadow: 0 18px 45px rgba(16, 37, 41, 0.12);
    --shadow-soft: 0 10px 30px rgba(16, 37, 41, 0.08);
    --radius: 8px;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 110px;
}

html,
body {
    touch-action: manipulation;
    font-family: "Roboto", Arial, sans-serif;
    color: var(--ink);
    background: var(--surface);
}

body {
    font-size: 16px;
    line-height: 1.6;
}

img {
    display: block;
    max-width: 100%;
}

.opacity-0 {
    opacity: 0;
}

.translate-y-12 {
    transform: translateY(3rem);
}

.transition-all {
    transition-property: opacity, transform, background-color, color, border-color, box-shadow;
}

.duration-1000 {
    transition-duration: 1000ms;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button {
    pointer-events: auto;
}

.header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 99;
    padding-top: 18px;
    transition: transform 0.35s ease;
}

.inner {
    max-width: 1450px;
    margin: 0 auto;
    padding: 0 clamp(18px, 4.5vw, 64px);
}

.header__in {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(22px, 4vw, 64px);
    min-height: 78px;
    padding: 12px 44px;
    border: 1px solid rgba(180, 138, 90, 0.24);
    border-radius: 14px;
    background: rgba(16, 12, 9, 0.62);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
    backdrop-filter: blur(18px);
}

.brand {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
}

.brand-wordmark {
    flex-direction: column;
    align-items: center;
    min-width: 118px;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
}

.brand-wordmark span {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.75rem, 2.5vw, 2.35rem);
    line-height: 0.9;
    letter-spacing: 0;
}

.brand-wordmark small {
    margin-top: 6px;
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 0.48em;
    transform: translateX(0.22em);
}

.header-left,
.header-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header__navigation {
    flex: 1;
}

.menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(24px, 4.8vw, 72px);
    list-style: none;
}

.menu li a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.04rem;
    font-weight: 800;
    text-decoration: none;
    transition: color 0.25s ease, background-color 0.25s ease, transform 0.25s ease;
}

.menu li a::after {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 999px;
    background: var(--gold);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.menu li:hover a,
.menu li a:focus-visible {
    background: rgba(180, 138, 90, 0.12);
    color: #fff;
    transform: translateY(-1px);
}

.menu li:hover a::after,
.menu li a:focus-visible::after {
    opacity: 1;
}

.header-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 48px;
    padding: 0 22px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    background: linear-gradient(135deg, #6d0827, #520019);
    color: #fff;
    font-size: 0.94rem;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 12px 24px rgba(88, 0, 36, 0.22);
    transition: background-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.header-cta:hover {
    background: var(--brand-strong);
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(88, 0, 36, 0.28);
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: #fff;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.menu-body {
    display: flex;
    justify-content: center;
    width: 100%;
}

.menu-container {
    width: 100%;
    max-width: 1200px;
}

.mobile-menu {
    display: none;
    margin: 10px 20px 0;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: var(--radius);
    background: var(--surface-strong);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(18px);
}

.mobile-menu.active {
    display: block;
}

.mobile-menu ul {
    margin: 0;
    padding: 0;
}

.mobile-menu a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 12px;
    border-bottom: 1px solid rgba(11, 10, 10, 0.12);
    color: #000;
    font-weight: 700;
    text-decoration: none;
}

.mobile-menu li:last-child a {
    border-bottom: 0;
}

.mobile-menu a::after {
    content: "\f061";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--gold);
}

.container-backgroud-header-01 {
    min-height: 100vh;
    background-image: url("../img/CapaAdv2.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.hero {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    min-height: 100vh;
    padding: 168px clamp(18px, 4.5vw, 64px) 54px;
}


.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 92% 22%, rgba(41, 38, 38, 0.18), transparent 28%),
        linear-gradient(90deg, rgba(35, 52, 58, 0.98) 0%, rgba(5, 8, 9, 0.72) 38%, rgba(12, 22, 26, 0.18) 72%, rgba(19, 26, 28, 0.68) 100%),
        linear-gradient(180deg, rgba(30, 24, 24, 0.3) 0%, rgba(28, 27, 27, 0.62) 100%);
}

.body-container-people-01 {
    width: 100%;
    max-width: 1450px;
    margin: 0 auto;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 760px) minmax(280px, 330px);
    align-items: center;
    justify-content: space-between;
    gap: clamp(28px, 5vw, 76px);
}

.hero-copy {
    max-width: 760px;
    color: #fff;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    color: var(--gold);
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* .eyebrow::before {
    content: "";
    width: 36px;
    height: 1px;
    background: currentColor;
} */

.hero h1 {
    margin: 0;
    max-width: 800px;
    color: #fff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3.8rem, 5.6vw, 6.25rem);
    font-weight: 700;
    line-height: 0.98;
    letter-spacing: 0;
    text-shadow: 0 12px 42px rgba(0, 0, 0, 0.54);
}

.hero h1 span {
    color: var(--gold);
}

.hero p {
    max-width: 600px;
    margin: 26px 0 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(1rem, 1.42vw, 1.26rem);
    line-height: 1.55;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 42px;
}

.btn-primary,
.btn-secondary,
.explore-button,
.cta-button {
       display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    font-weight: 800;
    gap: 10px;
    padding: 13px 20px;
    border-width: 1px;
    border-style: solid;
    border-color: transparent;
    border-image: initial;
    border-radius: 999px;
    text-decoration: none;
    transition: transform 0.25s, box-shadow 0.25s, background-color 0.25s, color 0.25s, border-color 0.25s;
}

.btn-primary,
.explore-button {
    background: var(--brand);
    color: #fff;
    box-shadow: 0 16px 34px rgba(88, 0, 36, 0.25);
}

.btn-primary:hover,
.explore-button:hover {
    background: var(--brand-strong);
    transform: translateY(-2px);
    box-shadow: 0 20px 42px rgba(88, 0, 36, 0.32);
}

.btn-secondary {
    border-color: rgba(180, 138, 90, 0.82);
    background: rgba(255, 255, 255, 0.03);
    color: #fff;
    backdrop-filter: blur(10px);
}

.btn-secondary::after {
    content: "\f061";
    margin-left: 12px;
    color: var(--gold);
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.16);
    transform: translateY(-2px);
}

.hero-panel {
    display: grid;
    align-self: end;
    gap: 0;
    margin-top: 220px;
    padding: 22px 26px;
    border: 1px solid rgba(180, 138, 90, 0.3);
    border-radius: 14px;
   
    color: #fff;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(18px);
}

.hero-panel div {
    display: grid;
    grid-template-columns: 58px 1fr;
    align-items: center;
    gap: 20px;
    min-height: 112px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-panel div:last-child {
    border-bottom: 0;
}

.hero-panel i {
    display: grid;
    grid-row: span 2;
    place-items: center;
    width: 58px;
    height: 58px;
    border-radius: 999px;
    background: rgba(180, 138, 90, 0.16);
    color: var(--gold);
    font-size: 1.25rem;
}

.hero-panel strong {
    font-size: 2.55rem;
    font-weight: 900;
    line-height: 1;
}

.hero-panel span {
    max-width: 160px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.98rem;
    text-align: left;
}

.whatsapp-float {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 80;
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    border-radius: 999px;
    background: #25d366;
    color: #fff;
    font-size: 1.7rem;
    box-shadow: 0 16px 36px rgba(37, 211, 102, 0.34);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-float:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 20px 45px rgba(37, 211, 102, 0.44);
}

.back-to-top {
    position: fixed;
    right: 18px;
    bottom: 86px;
    z-index: 79;
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    border: 1px solid rgba(255, 255, 255, 0.38);
    border-radius: 999px;
    background: var(--ink);
    color: #fff;
    font-size: 1.25rem;
    box-shadow: 0 16px 34px rgba(16, 37, 41, 0.24);
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px) scale(0.94);
    transition: opacity 0.25s ease, transform 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

.back-to-top.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.back-to-top:hover {
    background: var(--brand);
    box-shadow: 0 20px 42px rgba(88, 0, 36, 0.26);
    transform: translateY(-3px) scale(1.03);
}

.footer {
    background: var(--ink);
    color: #fff;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 34px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 52px 20px 34px;
}

.footer-brand img {
    width: 82px;
    height: 82px;
    object-fit: contain;
    margin-bottom: 16px;
    border-radius: var(--radius);
    background: #fff;
}

.footer-brand p,
.footer a {
    color: rgba(255, 255, 255, 0.72);
}

.footer h4 {
    margin-bottom: 16px;
    color: #fff;
    font-size: 1rem;
    font-weight: 800;
}

.footer li + li {
    margin-top: 8px;
}

.footer a {
    text-decoration: none;
    transition: color 0.25s ease;
}

.footer a:hover {
    color: var(--gold);
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    color: #fff;
    font-size: 1.2rem;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 18px 20px 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.9rem;
    text-align: center;
}

.cookie-banner {
    position: fixed;
    right: 18px;
    bottom: 88px;
    left: 18px;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    max-width: 920px;
    margin: 0 auto;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.96);
    color: var(--ink);
    box-shadow: var(--shadow);
    backdrop-filter: blur(16px);
}

.cookie-banner p {
    margin: 0;
    font-size: 0.95rem;
}

.btn-cookie {
    display: flex;
    gap: 10px;
    margin-right: 0;
}

.btn-cookie button {
    min-width: 92px;
    padding: 10px 14px;
    border: 0;
    border-radius: 999px;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.25s ease, background-color 0.25s ease;
}

#accept {
    background: var(--brand);
}

#reject {
    background: #5b676a;
}

.btn-cookie button:hover {
    transform: translateY(-1px);
}
