/* =====================================================
   GOTHAM – FUENTE LOCAL
   ===================================================== */

@font-face {
    font-family: "Gotham";
    src: url("../fonts/gotham/Gotham-Book.otf") format("opentype");
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: "Gotham";
    src: url("../fonts/gotham/Gotham-Bold.otf") format("opentype");
    font-weight: 700;
    font-display: swap;
}

/* =====================================================
   VARIABLES
   ===================================================== */

:root {
    --bg-main: #2f5f5f;
    --bg-footer: #285050;
    --accent: #d0b890;
    --orange: #d87840;
    --white: #ffffff;
}

/* =====================================================
   GLOBAL
   ===================================================== */

html,
body {
    height: 100%;
}

body {
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;

    background: linear-gradient(180deg, #3b6f6f, var(--bg-main));
    color: var(--white);
    font-family: 'Glacial Indifference', system-ui, sans-serif;
}

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

.pbv-hero {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 90px 0;
}


.pbv-container {
    max-width: 980px;
}

.pbv-logo-wrap {
    width: 360px;
}

.pbv-logo-grid {
    width: 100%;
}

/* =====================================================
   TITLES
   ===================================================== */

.pbv-title {
    font-family: "Gotham", sans-serif;
    font-weight: 400;
    letter-spacing: .30em;
    text-transform: uppercase;
    font-size: clamp(36px, 4.5vw, 58px);
}

.pbv-subtitle {
    color: var(--accent);
    font-size: 18px;
    line-height: 1.7;
    max-width: 760px;
}

/* =====================================================
   BUTTONS
   ===================================================== */

.pbv-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 18px 30px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    transition: transform .15s ease, filter .15s ease;
}

.pbv-btn-primary {
    background: var(--orange);
    color: var(--white);
}

.pbv-btn-secondary {
    background: var(--accent);
    color: var(--bg-footer);
}

.pbv-btn-ico {
    font-size: 20px;
    transition: transform .18s ease, opacity .18s ease;
}

.pbv-btn:hover {
    transform: translateY(-1px);
    filter: saturate(.95);
}

.pbv-btn:hover .pbv-btn-ico {
    transform: scale(1.18);
    opacity: .65;
}

/* =====================================================
   FOOTER
   ===================================================== */

.pbv-footer {
    background: var(--bg-footer);
    padding: 40px 0 20px;
}

.pbv-footer-title {
    font-family: "Gotham", sans-serif;
    letter-spacing: .18em;
    font-size: 16px;
    margin-bottom: 15px;
}

.pbv-footer-text {
    color: var(--accent);
    font-size: 15px;
    line-height: 1.6;
}

.pbv-contact {
    display: block;
    color: var(--accent);
    margin-bottom: 10px;
    text-decoration: none;
    transition: opacity .15s;
}

.pbv-contact i {
    color: var(--orange);
    margin-right: 8px;
}

.pbv-contact:hover {
    opacity: .85;
}

.pbv-divider {
    height: 1px;
    background: rgba(208, 184, 144, .3);
    border: 0;
    margin: 20px 0;
}

.pbv-footer-bottom {
    color: rgba(208, 184, 144, .85);
    font-size: 14px;
}

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

@media (max-width: 576px) {
    .pbv-btn {
        width: 100%;
        justify-content: center;
    }
}