body {
    font-family: Arial, sans-serif;
    margin: 0;
    background-color: #f5f5f5;
}

/* ===== CABECERA ===== */
.topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background: white;
    border-bottom: 2px solid #b30000;
}

.logo {
    width: 100px;
}

/* MENÚ */
nav a {
    margin-left: 20px;
    text-decoration: none;
    color: #b30000;
    font-weight: bold;
}

/* ===== HERO ===== */
.hero {
    background: #b30000;
    color: white;
    text-align: center;
    padding: 80px 20px;
}

.hero h1 {
    margin: 0;
    font-size: 40px;
}

.hero p {
    font-size: 18px;
    margin-top: 10px;
}

/* ===== CONTENIDO ===== */
.container {
    background: white;
    margin: 40px auto;
    padding: 30px;
    width: 80%;
    max-width: 1000px;
    border-left: 6px solid #b30000;
    border-top: 3px solid #d4af37;
}

/* LISTA */
.servicios ul {
    padding-left: 20px;
}

/* BOTÓN */
.boton {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background: #b30000;
    color: white;
    text-decoration: none;
    border-radius: 4px;
}

/* TELÉFONO */
.telefono {
    font-size: 22px;
    color: #b30000;
    font-weight: bold;
    text-decoration: none;
}

/* LOGO CEPSA */
.cepsa {
    width: 150px;
    margin-top: 15px;
}

/* FOOTER */
footer {
    background: #b30000;
    color: #d4af37;
    text-align: center;
    padding: 15px;
    margin-top: 40px;
}

/* ===== MÓVIL (ARREGLADO DE VERDAD) ===== */
@media (max-width: 768px) {

    /* CABECERA */
    .topbar {
        flex-direction: column;
        align-items: center;
        padding: 15px;
        text-align: center;
    }

    .logo {
        width: 80px;
        margin-bottom: 10px;
    }

    /* MENÚ */
    nav {
        width: 100%;
    }

    nav a {
        display: block;
        margin: 8px 0;
    }

    /* HERO */
    .hero {
        padding: 50px 15px;
    }

    .hero h1 {
        font-size: 26px;
    }

    .hero p {
        font-size: 15px;
    }

    /* CONTENIDO */
    .container {
        width: 90%;
        margin: 20px auto;
        padding: 20px;
    }

    /* LOGO CEPSA (clave para tu problema) */
    .cepsa {
        width: 100px;
        display: block;
        margin: 15px auto;
    }

    /* TELÉFONO */
    .telefono {
        font-size: 18px;
    }
}