/*
Theme Name: Amarres y Hechizos Efectivos
Description: Tema profesional para servicios de amarres y hechizos amorosos. Incluye diseño responsive, integración con WhatsApp, testimonios, y todas las funcionalidades necesarias para un negocio espiritual.
Version: 1.0
Author: MiniMax Agent
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: amarres-tema
Tags: responsive, business, whatsapp, spiritual, love, couples
*/

/* ========================================
   RESET Y BASE
======================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

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

/* ========================================
   HEADER
======================================= */
.header {
    background: linear-gradient(135deg, #8B5A3C 0%, #A0522D 50%, #8B4513 100%);
    color: white;
    padding: 20px 0;
    text-align: center;
    box-shadow: 0 4px 20px rgba(139, 90, 60, 0.3);
    position: relative;
    overflow: hidden;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.logo-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #FFD700;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    object-fit: cover;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.8);
}

.maestro-name {
    font-size: 2.5rem;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    color: #FFD700;
    margin: 0;
}

/* ========================================
   HERO SECTION
======================================= */
.hero {
    background: linear-gradient(135deg, #2C1810 0%, #8B5A3C 50%, #A0522D 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(255, 107, 53, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 30px;
    color: #FFD700;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    0% {
        text-shadow: 0 0 10px #FFD700, 0 0 20px #FFD700, 0 0 30px #FFD700;
    }
    100% {
        text-shadow: 0 0 20px #FFD700, 0 0 30px #FFD700, 0 0 40px #FFD700;
    }
}

.servicios-list {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.servicio {
    background: rgba(255, 215, 0, 0.2);
    color: #FFD700;
    padding: 10px 20px;
    border-radius: 25px;
    border: 2px solid #FFD700;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.servicio:hover {
    background: #FFD700;
    color: #2C1810;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.hero-question h3 {
    font-size: 1.8rem;
    margin: 40px 0 20px 0;
    color: #FF6B35;
    font-weight: 700;
}

.hero-solution {
    font-size: 2.5rem;
    font-weight: 800;
    color: #FFD700;
    margin: 30px 0;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-description {
    max-width: 800px;
    margin: 30px auto;
    font-size: 1.2rem;
    line-height: 1.8;
}

.hero-image {
    margin: 40px 0;
}

.velas-img {
    width: 300px;
    height: 300px;
    border-radius: 20px;
    object-fit: cover;
    border: 4px solid #FFD700;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: float 6s ease-in-out infinite;
}

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

.velas-img:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.whatsapp-btn {
    display: inline-block;
    background: linear-gradient(45deg, #25D366, #128C7E);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    margin: 30px 0;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.whatsapp-btn:hover {
    background: linear-gradient(45deg, #128C7E, #25D366);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* ========================================
   SERVICIOS
======================================= */
.servicios {
    padding: 80px 0;
    background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 50px;
    color: #8B5A3C;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.servicios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.servicio-item {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(139, 90, 60, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.servicio-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: left 0.5s ease;
}

.servicio-item:hover::before {
    left: 100%;
}

.servicio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(139, 90, 60, 0.2);
    border-color: #FFD700;
}

.servicio-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #8B5A3C;
}

.servicio-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 25px;
}

.ayuda-btn {
    display: inline-block;
    background: linear-gradient(45deg, #FF6B35, #E55A2B);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.ayuda-btn:hover {
    background: linear-gradient(45deg, #E55A2B, #FF6B35);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

/* ========================================
   ADICIONALES
======================================= */
.adicionales {
    padding: 60px 0;
    background: linear-gradient(135deg, #8B5A3C 0%, #A0522D 100%);
    color: white;
}

.adicionales-list {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.adicional-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px 30px;
    border-radius: 15px;
    font-weight: 600;
    font-size: 1.1rem;
    border: 2px solid rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.adicional-item:hover {
    background: rgba(255, 215, 0, 0.2);
    border-color: #FFD700;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* ========================================
   POR QUÉ NOSOTROS
======================================= */
.porque-nosotros {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
}

.section-subtitle {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #FF6B35;
}

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

.feature-item {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(139, 90, 60, 0.1);
    transition: all 0.3s ease;
    border-top: 4px solid #FFD700;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(139, 90, 60, 0.15);
}

.feature-item h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #8B5A3C;
}

.feature-item p {
    color: #666;
    line-height: 1.6;
}

.magic-quote {
    text-align: center;
    margin: 60px 0;
    padding: 30px;
    background: linear-gradient(45deg, rgba(255, 215, 0, 0.1), rgba(255, 107, 53, 0.1));
    border-radius: 20px;
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.magic-quote p {
    font-size: 1.3rem;
    font-weight: 600;
    color: #8B5A3C;
    font-style: italic;
}

.cta-section {
    text-align: center;
    margin: 40px 0;
}

.cta-section h4 {
    font-size: 2rem;
    font-weight: 800;
    color: #FF6B35;
    text-transform: uppercase;
}

/* ========================================
   TESTIMONIOS
======================================= */
.testimonios {
    padding: 80px 0;
    background: linear-gradient(135deg, #2C1810 0%, #8B5A3C 100%);
    color: white;
}

.testimonios .section-title {
    color: #FFD700;
}

.testimonios-intro {
    max-width: 900px;
    margin: 0 auto 60px auto;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
}

.testimonios-intro p {
    margin-bottom: 20px;
}

.testimonios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.testimonio-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.testimonio-item:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #FFD700;
    transform: translateY(-5px);
}

.testimonio-img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
    max-height: 400px;
    transition: transform 0.3s ease;
}

.testimonio-item:hover .testimonio-img {
    transform: scale(1.05);
}

.testimonios-cta {
    text-align: center;
    margin: 60px 0;
}

.testimonios-cta p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: #FFD700;
    font-weight: 600;
}

.consultar-btn {
    display: inline-block;
    background: linear-gradient(45deg, #25D366, #128C7E);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.consultar-btn:hover {
    background: linear-gradient(45deg, #128C7E, #25D366);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* ========================================
   NECESITAS AYUDA
======================================= */
.necesitas-ayuda {
    padding: 80px 0;
    background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
    text-align: center;
}

.ayuda-section {
    margin-top: 50px;
}

.btn-amarre {
    display: inline-block;
    background: linear-gradient(45deg, #FF6B35, #E55A2B);
    color: white;
    padding: 20px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.4rem;
    margin: 30px 0;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
    animation: pulse 2s infinite;
}

.btn-amarre:hover {
    background: linear-gradient(45deg, #E55A2B, #FF6B35);
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(255, 107, 53, 0.4);
}

.contacto-info {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.contacto-info p {
    font-size: 1.1rem;
    color: #8B5A3C;
    font-weight: 600;
}

.contacto-info strong {
    color: #FF6B35;
}

/* ========================================
   FOOTER
======================================= */
.footer {
    background: linear-gradient(135deg, #2C1810 0%, #8B5A3C 100%);
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer-content p {
    margin: 10px 0;
    font-size: 1rem;
}

.footer-content p:first-child {
    font-weight: 700;
    font-size: 1.1rem;
    color: #FFD700;
}

/* ========================================
   WHATSAPP WIDGET
======================================= */
.whatsapp-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-link {
    display: block;
    text-decoration: none;
    position: relative;
}

.whatsapp-message {
    position: absolute;
    bottom: 80px;
    right: 0;
    background: white;
    padding: 15px 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    max-width: 250px;
    display: none;
    animation: fadeInUp 0.5s ease;
}

.whatsapp-message.show {
    display: block;
}

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

.whatsapp-message p {
    margin: 0;
    color: #333;
    font-size: 0.9rem;
    line-height: 1.4;
}

.close-message {
    position: absolute;
    top: 5px;
    right: 10px;
    background: none;
    border: none;
    font-size: 20px;
    color: #999;
    cursor: pointer;
    line-height: 1;
}

.whatsapp-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
    animation: pulse-whatsapp 2s infinite;
    transition: all 0.3s ease;
}

@keyframes pulse-whatsapp {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.whatsapp-icon:hover {
    transform: scale(1.2);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

/* ========================================
   RESPONSIVE DESIGN
======================================= */

/* Tablet */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .header-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .logo-img {
        width: 70px;
        height: 70px;
    }
    
    .maestro-name {
        font-size: 2rem;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-solution {
        font-size: 2rem;
    }
    
    .servicios-list {
        flex-direction: column;
        align-items: center;
    }
    
    .servicio {
        margin: 5px 0;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .servicios-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonios-grid {
        grid-template-columns: 1fr;
    }
    
    .servicios-list,
    .adicionales-list {
        flex-direction: column;
        align-items: center;
    }
    
    .velas-img {
        width: 280px;
        height: 280px;
    }
    
    .whatsapp-message {
        width: 240px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .header-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .logo-img {
        width: 70px;
        height: 70px;
    }
    
    .maestro-name {
        font-size: 1.8rem;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-solution {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .servicio-item,
    .feature-item {
        padding: 30px 20px;
    }
    
    .adicionales-list {
        flex-direction: column;
        gap: 20px;
    }
    
    .adicional-item {
        padding: 15px 20px;
        font-size: 1rem;
    }
    
    .contacto-info {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .velas-img {
        width: 250px;
        height: 250px;
    }
    
    .whatsapp-widget {
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-icon {
        width: 50px;
        height: 50px;
        font-size: 25px;
    }
    
    .whatsapp-message {
        width: 200px;
        font-size: 0.8rem;
    }
}

/* ========================================
   ANIMACIONES ADICIONALES
======================================= */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection colors */
::selection {
    background: rgba(255, 215, 0, 0.3);
    color: #2C1810;
}

::-moz-selection {
    background: rgba(255, 215, 0, 0.3);
    color: #2C1810;
}