* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #222;
    background: #f5f5f5;
}


/* ===========================
   HEADER
=========================== */

.main-header {
    width: 100%;
    min-height: 90px;
    padding: 15px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
    border-bottom: 1px solid #ddd;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-link {
    text-decoration: none;
    color: #1c1c1c;
}

.logo-premium {
    display: flex;
    flex-direction: column;
}

.logo-marca {
    font-size: 28px;
    font-weight: 700;
}

.logo-amarillo {
    color: #f5b400;
}

.logo-linea {
    width: 100%;
    height: 2px;
    background: #f5b400;
    margin: 4px 0;
}

.logo-servicio {
    font-size: 11px;
    letter-spacing: 1px;
}

.main-nav ul {
    display: flex;
    gap: 25px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav a {
    text-decoration: none;
    color: #222;
    font-weight: 600;
}

.contact-info {
    display: flex;
    flex-direction: column;
    text-align: right;
}

.contact-info span {
    font-size: 13px;
}

.contact-info a {
    color: #222;
    font-weight: 700;
    text-decoration: none;
}


/* ===========================
   HERO
=========================== */

.brand-hero {
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    background:
        linear-gradient(
            rgba(20, 20, 20, 0.88),
            rgba(20, 20, 20, 0.88)
        );

    color: #ffffff;
}

.brand-content {
    width: min(850px, 90%);
}

.brand-label {
    display: inline-block;
    margin-bottom: 20px;
    color: #f5b400;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 4px;
}

.brand-content h1 {
    margin: 0;
    font-size: clamp(38px, 6vw, 70px);
    line-height: 1.05;
}

.brand-content p {
    max-width: 650px;
    margin: 30px auto;
    font-size: 19px;
    line-height: 1.7;
    color: #ddd;
}

.status {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 30px;
    margin-bottom: 30px;
}

.status-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #f5b400;
}

.btn-contact {
    display: block;
    width: fit-content;
    margin: auto;
    padding: 14px 28px;
    background: #f5b400;
    color: #111;
    text-decoration: none;
    font-weight: 700;
    border-radius: 4px;
}


/* ===========================
   INFORMATION
=========================== */

.information {
    max-width: 900px;
    margin: auto;
    padding: 80px 25px;
    text-align: center;
}

.information h2 {
    font-size: 32px;
    margin-bottom: 25px;
}

.information p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
}


/* ===========================
   CONTACTO
=========================== */

.contact-section {
    padding: 70px 25px;
    text-align: center;
    background: #ffffff;
}

.contact-section h2 {
    font-size: 30px;
}

.contact-section p {
    color: #555;
}

.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.contact-buttons a {
    padding: 13px 25px;
    background: #222;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
}


/* ===========================
   FOOTER
=========================== */

footer {
    padding: 25px;
    text-align: center;
    background: #171717;
    color: #aaa;
}


/* ===========================
   MOBILE
=========================== */

@media (max-width: 800px) {

    .main-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .main-nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .contact-info {
        text-align: center;
    }

    .brand-hero {
        min-height: 500px;
    }

    .brand-content h1 {
        font-size: 42px;
    }

    .brand-content p {
        font-size: 16px;
    }

    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }

    .contact-buttons a {
        width: 220px;
    }
}