/* ===== HERO CONTACTO ===== */
.hero-contacto {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url("https://images.unsplash.com/photo-1423666639041-f56000c27a9a?w=1600");
    background-size: cover;
    background-position: center;
    padding: 100px 20px;
    text-align: center;
    color: white;
}

.hero-contacto h1 {
    font-size: 48px;
    color: #e94560;
    margin-bottom: 15px;
}

.hero-contacto p {
    max-width: 600px;
    margin: 0 auto;
    font-size: 18px;
    opacity: 0.9;
}

/* ===== SECCION PRINCIPAL ===== */
.contacto-principal {
    padding: 60px 20px;
    background-color: white;
}

.contacto-contenedor {
    display: flex;
    justify-content: center;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
    flex-wrap: wrap;
}

/* ===== INFO DE CONTACTO ===== */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-width: 280px;
    flex: 1;
    max-width: 400px;
}

.info-card {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    transition: transform 0.3s;
    text-align: center;
}

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

.info-card .icon {
    font-size: 36px;
    margin-bottom: 10px;
    color: #e94560;
}

.info-card .icon i {
    font-size: 36px;
}

.info-card h4 {
    font-size: 18px;
    color: #1a1a2e;
    margin-bottom: 8px;
}

.info-card p {
    color: #666;
    font-size: 14px;
}

/* ===== FORMULARIO ===== */
.contact-form {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    flex: 1;
    min-width: 300px;
    max-width: 550px;
}

.contact-form h3 {
    font-size: 24px;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.contact-form > p {
    color: #666;
    font-size: 14px;
    margin-bottom: 25px;
}

.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
    margin-bottom: 20px;
}

.form-row .form-group {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    font-size: 14px;
    color: #1a1a2e;
    font-weight: bold;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #e94560;
}

.form-group textarea {
    resize: vertical;
}

.contact-form .primary-btn {
    width: 100%;
    padding: 20px ;
    border-radius: 20px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form .primary-btn:hover {
    background: #d63851;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 69, 96, 0.4);
}

/* ===== CTA TIENDA ===== */
.cta-tienda {
    text-align: center;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    color: white;
    padding: 60px 20px;
}

.cta-tienda h2 {
    font-size: 36px;
    color: #e94560;
    margin-bottom: 10px;
}

.cta-tienda p {
    margin-bottom: 25px;
    opacity: 0.9;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-contacto {
        padding: 80px 20px;
    }
    .contacto-contenedor {
        gap: 30px;
    }
    .info-card {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .hero-contacto {
        padding: 60px 15px;
    }
    .hero-contacto h1 {
        font-size: 28px;
    }
    .hero-contacto p {
        font-size: 15px;
    }
    .contacto-principal {
        padding: 40px 15px;
    }
    .contacto-contenedor {
        flex-direction: column;
        align-items: center;
    }

    .contact-info {
        width: 100%;
        max-width: 400px;
    }

    .contact-form {
        padding: 25px;
        width: 100%;
        max-width: 400px;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .cta-tienda {
        padding: 40px 15px;
    }
    .cta-tienda h2 {
        font-size: 24px;
    }
}
