body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f5f5f5;
    color: #333;
}

.header {
    max-width: 1200px;
    background: #fff;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .08);
    margin: auto;
}

.logo-container {
    position: relative;
    text-align: left;
    margin-bottom: 20px;
}

.logo {
    max-width: 220px;
}

.pizza {
    position: absolute;
    left: 50%;
    top: 120px;
    transform: translate(-50%, -50%);
    max-width: 220px;
    height: auto;
}

.header-row {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    margin-top: 180px;
}

.titulo {
    color: #c8102e;
    text-align: center;
    margin: 0;
    text-transform: uppercase;
}

.btn-menu {
    background: #c8102e;
    color: #fff;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: bold;
    justify-self: end;
}

.sucursales {
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 20px;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
}

.card {
    background: #fff;
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .08);
}

.numero {
    font-size: 1.2rem;
    font-weight: bold;
}

.boton {
    display: inline-block;
    padding: 10px 16px;
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    margin-top: 8px;
    max-width: 150px;
    text-align: center;
}

.whatsapp {
    background: #25D366;
}

.telefono {
    background: #c8102e;
    display: inline-block;
}

.promos {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.box {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .08);
}

.box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

footer {
    background: #222;
    color: #fff;
    text-align: center;
    padding: 30px;
}

.telefonos {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
}

.numero-txt {
    min-width: 140px;
}

.sucursal-title {
    color: #03999E;
    font-weight: bold;
    font-size: 32px;
    text-align: center;
}

.about {
    margin: auto;
    background-color: #03999E;
    font-size: 20px;
    text-align: center;
    max-width: 1200px;
    color: #fff;
    padding: 20px;
    padding-bottom: 50px;
}

.txt-nosotros {
    padding-top: 20px;
    padding-bottom: 20px;
}

@media(max-width:768px) {
    .logo-container {
        text-align: center;
    }

    .pizza {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        display: block;
        margin: 15px auto 0 auto;
        max-width: 150px;
    }

    .header-row {
        display: flex;
        flex-direction: column;
        gap: 15px;
        margin-top: 40px;
    }

    .header-placeholder {
        display: none;
    }

    .promos {
        grid-template-columns: 1fr;
    }
}