/* Variables de colores */
:root {
    --primary-fuchsia: #FF0080;
    --secondary-fuchsia: #FF1493;
    --dark-fuchsia: #C71585;
    --black: #000000;
    --dark-gray: #1a1a1a;
    --light-gray: #f5f5f5;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, var(--primary-fuchsia), var(--secondary-fuchsia));
    --mystic-purple: #8A2BE2;
    --deep-purple: #4B0082;
    --gold: #FFD700;
}

/* Reset y estilos base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--white);
    background: var(--black);
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(138, 43, 226, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 0, 128, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(75, 0, 130, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: linear-gradient(135deg, var(--deep-purple), var(--mystic-purple), var(--primary-fuchsia));
    padding: 0;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stars" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="0.5" fill="rgba(255,215,0,0.6)"/><circle cx="80" cy="40" r="0.3" fill="rgba(255,215,0,0.4)"/><circle cx="40" cy="80" r="0.4" fill="rgba(255,215,0,0.5)"/><circle cx="90" cy="90" r="0.2" fill="rgba(255,215,0,0.3)"/></pattern></defs><rect width="100" height="100" fill="url(%23stars)"/></svg>'),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="mystic" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M50 0 L60 40 L100 50 L60 60 L50 100 L40 60 L0 50 L40 40 Z" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23mystic)"/></svg>');
    opacity: 0.4;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.header-content {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-image {
    margin-bottom: 40px;
    position: relative;
}

.portada-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 20px;
    box-shadow: 
        0 20px 60px rgba(0,0,0,0.5),
        0 0 100px rgba(255, 0, 128, 0.3),
        inset 0 0 50px rgba(138, 43, 226, 0.2);
    border: 3px solid var(--gold);
    transition: all 0.5s ease;
    filter: brightness(1.1) contrast(1.1);
}

.portada-image:hover {
    transform: scale(1.02);
    box-shadow: 
        0 30px 80px rgba(0,0,0,0.6),
        0 0 150px rgba(255, 0, 128, 0.4),
        inset 0 0 70px rgba(138, 43, 226, 0.3);
}

.profile-section {
    text-align: center;
    max-width: 800px;
}

.profile-info {
    flex: 1;
}

.main-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
    text-shadow: 
        2px 2px 4px rgba(0,0,0,0.5),
        0 0 20px rgba(255, 215, 0, 0.5);
    position: relative;
}

.main-title::after {
    content: '✨';
    position: absolute;
    top: -10px;
    right: -20px;
    font-size: 2rem;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 1; }
    50% { transform: scale(1.2) rotate(180deg); opacity: 0.8; }
}

.subtitle {
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 25px;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.description {
    font-size: 1.3rem;
    color: var(--white);
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Secciones */
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--white);
    position: relative;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.section-title::before {
    content: '🔮';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    animation: float 3s ease-in-out infinite;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--gold), var(--primary-fuchsia), transparent);
    border-radius: 2px;
}

/* Servicios */
.services {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--dark-gray), var(--black));
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(180deg, transparent, var(--dark-gray));
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.service-card {
    background: linear-gradient(145deg, var(--black), var(--dark-gray));
    padding: 0;
    border-radius: 25px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--primary-fuchsia), var(--mystic-purple));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover {
    border-color: var(--gold);
    transform: translateY(-15px);
    box-shadow: 
        0 25px 50px rgba(0,0,0,0.4),
        0 0 50px rgba(255, 215, 0, 0.2);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
}

.service-icon.has-image {
    width: 100%;
    height: 300px;
    background: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    margin: 0;
    position: relative;
    overflow: hidden;
}

.service-photo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 0;
    transition: transform 0.4s ease;
    background: var(--black);
}

.service-card:hover .service-photo {
    transform: scale(1.05);
}

.service-card h3 {
    font-size: 1.8rem;
    margin: 25px 20px 15px;
    color: var(--white);
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.service-card p {
    color: #ccc;
    line-height: 1.6;
    margin: 0 20px 25px;
    font-size: 1.1rem;
}

/* Medios de Pago */
.payment {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--black), var(--dark-gray));
    position: relative;
}

.payment::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(180deg, transparent, var(--black));
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.payment-method {
    background: linear-gradient(145deg, var(--dark-gray), var(--black));
    padding: 60px 30px;
    border-radius: 25px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.4s ease;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    position: relative;
    overflow: hidden;
}

.payment-method::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--primary-fuchsia));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.payment-method:hover {
    border-color: var(--gold);
    transform: translateY(-10px);
    box-shadow: 
        0 20px 40px rgba(0,0,0,0.4),
        0 0 40px rgba(255, 215, 0, 0.2);
}

.payment-method:hover::before {
    transform: scaleX(1);
}

.payment-icon {
    width: 120px;
    height: 100px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 20px;
    padding: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.payment-method:hover .payment-icon {
    transform: scale(1.05);
    box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

.payment-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 12px;
}

.payment-method h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--white);
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.payment-method p {
    color: #ccc;
    line-height: 1.6;
    font-size: 1.1rem;
}

/* Contacto */
.contact {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--dark-gray), var(--black));
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(180deg, transparent, var(--dark-gray));
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 50px;
    margin-top: 60px;
}

.contact-method {
    background: linear-gradient(145deg, var(--black), var(--dark-gray));
    padding: 60px 40px;
    border-radius: 25px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    position: relative;
    overflow: hidden;
}

.contact-method::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--primary-fuchsia));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.contact-method:hover {
    border-color: var(--gold);
    transform: translateY(-10px);
    box-shadow: 
        0 20px 40px rgba(0,0,0,0.4),
        0 0 40px rgba(255, 215, 0, 0.2);
}

.contact-method:hover::before {
    transform: scaleX(1);
}

.contact-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, var(--primary-fuchsia), var(--mystic-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(255, 0, 128, 0.3);
    transition: all 0.3s ease;
}

.contact-method:hover .contact-icon {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(255, 0, 128, 0.4);
}

.contact-method h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--white);
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.contact-info {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 30px;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.4s ease;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: var(--white);
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #128C7E, #0E6B5B);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
}

.phone-btn {
    background: linear-gradient(135deg, var(--primary-fuchsia), var(--mystic-purple));
    color: var(--white);
}

.phone-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 0, 128, 0.4);
}

/* Firma LKT */
.lkt-signature {
    background: var(--black);
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid var(--dark-gray);
}

.lkt-link {
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s ease;
}

.lkt-link:hover {
    transform: translateY(-2px);
}

.lkt-logo {
    height: 40px;
    width: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.lkt-link:hover .lkt-logo {
    opacity: 1;
}

/* Footer */
.footer {
    background: linear-gradient(180deg, var(--dark-gray), var(--black));
    padding: 40px 0;
    text-align: center;
    color: #ccc;
    position: relative;
}

.footer::before {
    opacity: 0;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: linear-gradient(180deg, transparent, var(--dark-gray));
}

/* Botón flotante de WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-float {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    font-size: 2.2rem;
    box-shadow: 
        0 8px 25px rgba(37, 211, 102, 0.4),
        0 0 50px rgba(37, 211, 102, 0.2);
    transition: all 0.4s ease;
    animation: pulse 2s infinite;
    border: 3px solid var(--white);
}

.whatsapp-float:hover {
    background: linear-gradient(135deg, #128C7E, #0E6B5B);
    transform: scale(1.1);
    box-shadow: 
        0 12px 35px rgba(37, 211, 102, 0.5),
        0 0 70px rgba(37, 211, 102, 0.3);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .header {
        min-height: 80vh;
        padding: 40px 0;
    }
    
    .portada-image {
        max-width: 100%;
        border-radius: 15px;
    }
    
    .main-title {
        font-size: 2.8rem;
    }
    
    .subtitle {
        font-size: 1.4rem;
    }
    
    .description {
        font-size: 1.1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .service-icon.has-image {
        height: 220px;
    }
    
    .payment-methods {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .header {
        min-height: 70vh;
        padding: 30px 0;
    }
    
    .main-title {
        font-size: 2.2rem;
    }
    
    .portada-image {
        border-radius: 12px;
        border-width: 2px;
    }
    
    .services, .payment, .contact {
        padding: 80px 0;
    }
    
    .service-icon.has-image {
        height: 180px;
    }
    
    .service-card {
        margin: 0 10px;
    }
    
    .payment-method, .contact-method {
        padding: 40px 25px;
    }
    
    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
}
