/* ======== ESTILOS GENERALES ======== */

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f4f4f4;
    color: #222;
}

/* ======== HEADER DEL MENU02 ======== */

header {
    background: #000;
    color: #fff;
    padding: 20px;
    text-align: center;
    font-size: 22px;
    font-weight: bold;
}

/* ======== MENÚ PRINCIPAL HORIZONTAL ======== */

.menu-principal {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #000;
    overflow-x: auto;
    white-space: nowrap;
}

.menu-principal::-webkit-scrollbar {
    display: none;
}

/* BOTONES DEL MENÚ (INDEX) — AHORA IGUAL DE GRANDES QUE CONTACTO */

.header-btn {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    padding: 18px 24px;   /* AUMENTADO */
    border-radius: 8px;
    display: inline-block;
    background: #111;
    font-size: 18px;      /* AUMENTADO */
}

.header-btn:hover {
    background: #333;
}

/* ======== CONTENEDOR DE TARJETAS ======== */

.container {
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

/* ======== TARJETAS ======== */

.card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.2s ease;
}

.card:hover {
    transform: translateY(-5px);
}

/* ======== ICONOS ======== */

.icon {
    font-size: 40px;
    margin-bottom: 10px;
}

/* ======== TÍTULOS ======== */

.title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 8px;
}

/* ======== DESCRIPCIONES ======== */

.desc {
    font-size: 15px;
    margin-bottom: 15px;
    color: #444;
}

/* ======== BOTONES ======== */

.btn {
    display: inline-block;
    padding: 10px 16px;
    background: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
}

.btn:hover {
    background: #333;
}

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

@media (max-width: 480px) {
    header {
        font-size: 20px;
        padding: 15px;
    }

    .icon {
        font-size: 34px;
    }

    .title {
        font-size: 18px;
    }

    .desc {
        font-size: 14px;
    }

    .btn {
        padding: 9px 14px;
        font-size: 14px;
    }
}

/* ======== CONTACTO ======== */

.contacto-container {
    max-width: 800px;
    margin: 10px auto;
    padding: 20px;
    text-align: center;
}

.contacto-titulo {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 10px;
}

.contacto-texto {
    font-size: 16px;
    color: #444;
    margin-bottom: 25px;
}

.contacto-botones {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 30px;
}

.contacto-btn {
    background: #000;
    color: #fff;
    padding: 12px 18px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
}

.contacto-btn:hover {
    background: #333;
}

.adsense-placeholder {
    background: #eaeaea;
    padding: 20px;
    border-radius: 8px;
    font-size: 14px;
    color: #666;
    border: 1px dashed #aaa;
}

.contacto-subtitulo {
    font-size: 15px;
    color: #777;
    margin-top: -5px;
    margin-bottom: 20px;
}

.contacto-icono {
    width: 90px;
    opacity: 0.9;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

/* ======== FORMULARIO MASCOALBA ULTRA PREMIUM ======== */

.form-ultra {
    max-width: 650px;
    margin: 60px auto;
    padding: 40px;
    background: linear-gradient(145deg, #ffffff, #f5f5f5);
    border-radius: 22px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
    animation: fadeSlide 0.7s ease;
    border: 1px solid #eaeaea;
}

@keyframes fadeSlide {
    from { opacity: 0; transform: translateY(25px); }
    to { opacity: 1; transform: translateY(0); }
}

.form-ultra h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 10px;
    color: #222;
}

.form-ultra p {
    text-align: center;
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
}

.form-ultra .campo {
    margin-bottom: 22px;
}

.form-ultra label {
    font-weight: bold;
    color: #444;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-ultra label i {
    font-size: 18px;
    color: #ff6600;
}

.form-ultra input,
.form-ultra textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ccc;
    border-radius: 12px;
    font-size: 16px;
    background: #fafafa;
    transition: all 0.25s ease;
}

.form-ultra input:focus,
.form-ultra textarea:focus {
    border-color: #ff6600;
    background: #fff;
    box-shadow: 0 0 10px rgba(255,102,0,0.25);
    outline: none;
}

.form-ultra button {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #ff6600, #ff7f2a);
    color: white;
    border: none;
    border-radius: 14px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s ease;
    box-shadow: 0 8px 20px rgba(255,102,0,0.35);
}

.form-ultra button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(255,102,0,0.45);
}

/* Igualar menú del INDEX al de CONTACTO */
.menu-principal {
    padding: 20px 12px; /* Aumenta la altura del menú */
}

.header-btn {
    padding: 30px 40px; /* Más grande aún */
    font-size: 24px;    /* Igual que contacto */
    border-radius: 10px;
}

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

.footer-mascoalba {
    text-align: center;
    padding: 30px 20px;
    background: #000;
    color: #fff;
    margin-top: 40px;
    font-size: 14px;
}

.footer-mascoalba a {
    color: #ff6600;
    text-decoration: none;
    font-weight: bold;
}

.footer-mascoalba a:hover {
    text-decoration: underline;
}

.footer-links {
    margin-top: 8px;
    opacity: 0.9;
}

