/* Estilos principales para Alquimia del Alma - Sitio Estático */

/* Variables de colores basadas en el logo */
:root {
    --color-primary: #FF7F50; /* Naranja del contorno de la flor de loto */
    --color-secondary: #C23B89; /* Rosa/Púrpura del degradado en la figura */
    --color-tertiary: #4B0082; /* Azul índigo de la parte inferior */
    --color-light: #F8F9FA;
    --color-dark: #212529;
    --color-white: #FFFFFF;
    --color-black: #000000;
    --gradient-primary: linear-gradient(135deg, var(--color-primary), var(--color-secondary)); /* Añadido para botones */
    --transition: all 0.3s ease;
    --border-radius: 5px; /* Mantener para otros elementos */
    --border-radius-round: 50px; /* Para botones redondeados */
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --box-shadow-hover: 0 8px 20px rgba(0, 0, 0, 0.15); /* Sombra hover */
}

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

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Lora', serif;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-dark);
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--color-secondary);
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
    padding: 0 15px;
}

.col-md-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
    padding: 0 15px;
}

.col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 15px;
}

.text-center {
    text-align: center;
}

.mt-5 {
    margin-top: 3rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

.py-5 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: var(--border-radius); /* Default radius */
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    border: none;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.btn-primary:hover {
    background-color: var(--color-secondary);
    color: var(--color-white);
}

.btn-light {
    background-color: var(--color-white);
    color: var(--color-primary);
}

.btn-light:hover {
    background-color: var(--color-light);
    color: var(--color-secondary);
}

.btn-outline-light {
    background-color: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-white);
}

.btn-outline-light:hover {
    background-color: var(--color-white);
    color: var(--color-primary);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    text-align: center;
    color: var(--color-primary);
}

.section-subtitle {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--color-secondary);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--color-white);
    box-shadow: var(--box-shadow);
    z-index: 1000;
    padding: 15px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    max-height: 60px;
    width: auto;
}

.nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
}

.nav-item {
    margin-left: 30px;
}

.nav-link {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.875rem;
    padding: 5px 0;
    position: relative;
    color: var(--color-dark);
}

.nav-link:hover {
    color: var(--color-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-button {
    margin-left: 30px;
}

/* Estilo específico para el botón Tienda en el Nav */
.nav-button .btn-tienda-nav {
    background: var(--gradient-primary);
    color: var(--color-white);
    padding: 10px 25px; /* Ajustar padding si es necesario */
    border-radius: var(--border-radius-round);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.nav-button .btn-tienda-nav:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--box-shadow-hover);
    color: var(--color-white); /* Mantener color en hover */
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--color-dark);
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding: 150px 0 100px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 50%, var(--color-tertiary) 100%);
    color: var(--color-white);
    text-align: center;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--color-white);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: var(--color-white);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Servicios */
.services {
    padding: 100px 0;
    background-color: var(--color-white);
}

.service-card {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    margin-bottom: 30px;
    background-color: var(--color-white);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-image {
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 20px;
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--color-primary);
}

.service-description {
    margin-bottom: 15px;
    color: var(--color-dark);
}

.service-link {
    display: inline-block;
    color: var(--color-secondary);
    font-weight: 600;
    position: relative;
}

.service-link::after {
    content: '→';
    margin-left: 5px;
    transition: var(--transition);
}

.service-link:hover::after {
    margin-left: 10px;
}

/* Equipo */
.team {
    padding: 100px 0;
    background-color: var(--color-light);
}

.team-member {
    text-align: center;
    margin-bottom: 30px;
}

.team-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 5px solid var(--color-primary);
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-name {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: var(--color-primary);
}

.team-role {
    font-size: 1rem;
    color: var(--color-secondary);
    margin-bottom: 10px;
    font-weight: 600;
}

.team-bio {
    margin-bottom: 15px;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.team-social a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background-color: var(--color-white);
    color: var(--color-primary);
    border-radius: 50%;
    transition: var(--transition);
}

.team-social a:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
}

/* Testimonios */
.testimonials {
    padding: 100px 0;
    background-color: var(--color-white);
}

.testimonial {
    background-color: var(--color-white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    margin-bottom: 30px;
    position: relative;
    height: 100%;
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 5rem;
    color: var(--color-primary);
    opacity: 0.2;
    line-height: 1;
}

.testimonial-content {
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    font-weight: 700;
    color: var(--color-primary);
}

.testimonial-role {
    font-size: 0.875rem;
    color: var(--color-secondary);
}

/* CTA */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: var(--color-white);
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--color-white);
}

.cta-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: var(--color-white);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Contacto */
.contact {
    padding: 100px 0;
    background-color: var(--color-light);
}

.contact-info {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-right: 15px;
}

.contact-text h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.contact-form {
    background-color: var(--color-white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

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

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
}

textarea.form-control {
    height: 150px;
    resize: vertical;
}

/* Tienda (Sección en Index) */
.store {
    padding: 100px 0;
    background-color: var(--color-white);
}

.product-card {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    margin-bottom: 30px;
    background-color: var(--color-white);
    height: 100%;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.product-image {
    height: 250px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-content {
    padding: 20px;
}

.product-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--color-primary);
}

.product-description {
    margin-bottom: 15px;
    color: var(--color-dark);
}

.product-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 15px;
}

/* Footer */
.footer {
    background-color: var(--color-dark);
    color: var(--color-light);
    padding: 60px 0 30px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    max-height: 80px;
    width: auto;
}

.footer-text {
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
}

.footer-social a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    border-radius: 50%;
    transition: var(--transition);
}

.footer-social a:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.footer-title {
    color: var(--color-white);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--color-light);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--color-primary);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 40px;
    text-align: center;
}

/* Botón de tienda flotante */
.tienda-button-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--gradient-primary);
    color: var(--color-white);
    padding: 12px 25px; /* Ajustar padding */
    border-radius: var(--border-radius-round);
    font-weight: 600;
    font-size: 1rem; /* Ajustar tamaño fuente */
    text-transform: uppercase;
    box-shadow: var(--box-shadow);
    z-index: 999;
    transition: var(--transition);
    display: flex; /* Para alinear icono y texto */
    align-items: center;
    gap: 8px; /* Espacio entre icono y texto */
}

.tienda-button-float i {
    font-size: 1.2rem; /* Tamaño icono */
}

.tienda-button-float:hover {
    background: var(--gradient-primary); /* Mantener gradiente */
    color: var(--color-white);
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--box-shadow-hover);
}

/* Animaciones */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Estilos responsivos */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .col-md-4 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 767px) {
    .header-container {
        position: relative;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--color-white);
        box-shadow: var(--box-shadow);
        padding: 20px;
        flex-direction: column;
        align-items: flex-start;
        display: none;
    }
    
    .nav.active {
        display: flex;
    }
    
    .nav-list {
        flex-direction: column;
        width: 100%;
    }
    
    .nav-item {
        margin: 10px 0;
        width: 100%;
    }
    
    .nav-button {
        margin: 10px 0 0;
        width: 100%;
    }
    
    .nav-button .btn-tienda-nav {
        width: 100%;
        padding: 12px 20px; /* Ajustar padding para móvil */
    }
    
    .hero {
        padding: 120px 0 80px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .col-md-3, .col-md-4, .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .service-card, .team-member, .testimonial, .product-card {
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .cta-text {
        font-size: 1rem;
    }
    
    .tienda-button-float {
        padding: 10px 15px; /* Más pequeño en móvil */
        font-size: 0.875rem;
        gap: 5px;
    }
    .tienda-button-float i {
        font-size: 1rem;
    }
}

/* Estilos adicionales para mejorar la experiencia visual (del index.html original) */
.hero {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 50%, var(--color-tertiary) 100%), 
                url('../images/meditation-bg.jpg'); /* Ajustar ruta si es necesario */
    background-blend-mode: overlay;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/sacred-geometry.png'); /* Ajustar ruta si es necesario */
    background-size: cover;
    opacity: 0.1;
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.intro-section {
    padding: 80px 0;
    background-color: var(--color-light);
    text-align: center;
}

.intro-quote {
    font-family: 'Lora', serif;
    font-size: 1.8rem;
    font-style: italic;
    color: var(--color-secondary);
    margin-bottom: 2rem;
    position: relative;
    padding: 0 2rem;
}

.intro-quote::before, .intro-quote::after {
    content: '"';
    font-size: 3rem;
    position: absolute;
    color: var(--color-primary);
    opacity: 0.3;
}

.intro-quote::before {
    top: -20px;
    left: 0;
}

.intro-quote::after {
    bottom: -40px;
    right: 0;
}

.cta-primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: inline-block;
    z-index: 1;
}

.cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.6s ease;
    z-index: -1;
}

.cta-primary:hover::before {
    left: 100%;
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.service-card {
    transition: all 0.4s ease;
    border-radius: 10px;
    overflow: hidden;
}

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

.service-image {
    position: relative;
    overflow: hidden;
}

.service-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.5));
    opacity: 0;
    transition: all 0.4s ease;
}

.service-card:hover .service-image::after {
    opacity: 1;
}

.team-member {
    position: relative;
    transition: all 0.4s ease;
}

.team-member:hover {
    transform: translateY(-10px);
}

.team-image {
    position: relative;
    overflow: hidden;
}

.team-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, var(--color-primary) 0%, transparent 70%);
    opacity: 0;
    transition: all 0.4s ease;
    mix-blend-mode: overlay;
}

.team-member:hover .team-image::before {
    opacity: 0.7;
}

.testimonial {
    position: relative;
    transition: all 0.4s ease;
}

.testimonial:hover {
    transform: scale(1.03);
}

.testimonial::before {
    font-size: 6rem;
    top: 0;
    left: 10px;
}

.about-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(255, 127, 80, 0.1) 0%, rgba(194, 59, 137, 0.1) 100%);
}

.about-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.about-image img {
    width: 100%;
    height: auto;
    transition: all 0.6s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-content h2 {
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.about-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-signature {
    font-family: 'Lora', serif;
    font-style: italic;
    font-size: 1.2rem;
    color: var(--color-secondary);
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.feature-icon {
    font-size: 2rem;
    color: var(--color-primary);
    margin-right: 1rem;
    min-width: 40px;
}

.feature-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--color-primary);
}

.tienda-button-float {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
}

/* Herramientas Section */
.herramientas {
    padding: 100px 0;
    background-color: var(--color-light);
}

.herramienta-card {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    margin-bottom: 30px;
    background-color: var(--color-white);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.herramienta-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.herramienta-image {
    height: 200px;
    overflow: hidden;
}

.herramienta-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.herramienta-card:hover .herramienta-image img {
    transform: scale(1.1);
}

.herramienta-content {
    padding: 20px;
    flex-grow: 1; /* Para que el botón quede abajo */
    display: flex;
    flex-direction: column;
}

.herramienta-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--color-primary);
}

.herramienta-description {
    margin-bottom: 15px;
    color: var(--color-dark);
    flex-grow: 1;
}

.herramienta-link {
    display: inline-block;
    color: var(--color-secondary);
    font-weight: 600;
    position: relative;
    margin-top: auto; /* Empuja al final */
    align-self: flex-start;
}

.herramienta-link::after {
    content: '→';
    margin-left: 5px;
    transition: var(--transition);
}

.herramienta-link:hover::after {
    margin-left: 10px;
}

