/* ===== SECCIÓN CONTACTO DISEÑADORA ===== */
.contacto-disenadora {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, #f7f7f7, #ffffff);
}

/* Tarjeta */
.contacto-card {
    background: #ffffff;
    max-width: 520px;
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.contacto-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.18);
}

/* Badge superior */
.badge {
    display: inline-block;
    margin-bottom: 15px;
    padding: 6px 14px;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #ffffff;
    background: #111;
    border-radius: 30px;
}

/* Título */
.contacto-card h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #111;
}

/* Texto */
.contacto-card p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Botón WhatsApp */
.btn-whatsapp {
    display: inline-block;
    padding: 14px 34px;
    border-radius: 40px;
    background: linear-gradient(135deg, #25d366, #1ebe5d);
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-whatsapp:hover {
    transform: scale(1.05);
    box-shadow: 0 18px 45px rgba(37, 211, 102, 0.6);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 600px) {
    .contacto-card {
        padding: 40px 25px;
    }

    .contacto-card h2 {
        font-size: 22px;
    }
}

/* ===== BOTÓN REGRESAR ===== */
.btn-hola {
    position: fixed;
    top: 25px;
    left: 25px;
    z-index: 1000;
}

.btn-hola a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.9);
    color: #111;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    backdrop-filter: blur(8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
    transition: all 0.3s ease;
}

/* Flecha elegante */
.btn-hola a::before {
    content: "←";
    font-size: 16px;
    transition: transform 0.3s ease;
}

/* Hover */
.btn-hola a:hover {
    transform: translateX(-4px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

/* Animación de flecha */
.btn-hola a:hover::before {
    transform: translateX(-3px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .btn-hola {
        top: 15px;
        left: 15px;
    }

    .btn-hola a {
        padding: 8px 16px;
        font-size: 13px;
    }
}

