/* Boho Chic Theme - Tres Vientos */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
    --color-bg: #F7F5F0; /* Arena suave */
    --color-bg-alt: #EFEBE4; /* Arena un poco más oscura */
    --color-text: #48413B; /* Marrón agrisado / sepia oscuro */
    --color-text-light: #6C665F; 
    --color-accent: #B27C66; /* Terracota suave */
    --color-accent-hover: #986550;
    --color-sage: #9A9C8B; /* Verde salvia */
    --color-white: #FFFFFF;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --border-radius: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 0.5em;
}

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

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

p {
    margin-bottom: 1.5em;
    font-size: 1.05rem;
}

/* --- Tiempos y Utilidades --- */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

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

.btn {
    display: inline-block;
    background-color: var(--color-accent);
    color: var(--color-white) !important;
    padding: 12px 28px;
    border-radius: 30px;
    font-family: var(--font-body);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.85rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(178, 124, 102, 0.3);
    transition: var(--transition);
}

.btn:hover {
    background-color: var(--color-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(178, 124, 102, 0.4);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-accent) !important;
    border: 1px solid var(--color-accent);
    box-shadow: none;
}

.btn-outline:hover {
    background-color: var(--color-accent);
    color: var(--color-white) !important;
    box-shadow: 0 4px 15px rgba(178, 124, 102, 0.2);
}

/* --- Header / Nav --- */
.site-header {
    padding: 20px 0;
    background-color: rgba(247, 245, 240, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.03);
}

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

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

.logo img {
    border-radius: 50%;
    width: 50px;
    height: 50px;
    object-fit: cover;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-text);
    letter-spacing: 0.5px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--color-text);
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links a:hover {
    color: var(--color-accent);
}

/* --- Hero Section --- */
.hero {
    padding: 100px 0 120px;
    position: relative;
    overflow: hidden;
}

/* Efecto de olas de arena en el fondo */
.hero::before {
    content: '';
    position: absolute;
    top: -50%; right: -20%;
    width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(154,156,139,0.1) 0%, rgba(247,245,240,0) 70%);
    border-radius: 50%;
    z-index: -1;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%; left: -10%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(178,124,102,0.1) 0%, rgba(247,245,240,0) 70%);
    border-radius: 50%;
    z-index: -1;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--color-text);
}

.hero-content p.subtitle {
    font-size: 1.3rem;
    color: var(--color-text-light);
    margin-bottom: 30px;
    font-style: italic;
    font-family: var(--font-heading);
}

.hero-content .bio {
    font-size: 1.05rem;
    margin-bottom: 40px;
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 200px 200px 10px 10px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    display: block;
    margin: 0 auto;
}

/* Decoración abstracta Boho */
.boho-arch {
    position: absolute;
    top: -20px; right: 10px;
    width: 100%; height: 100%;
    border: 2px solid var(--color-accent);
    border-radius: 200px 200px 10px 10px;
    z-index: -1;
    transform: translate(20px, 20px);
}

/* --- Servicios y Lámparas (Secciones Generales) --- */
.section-pad {
    padding: 100px 0;
}

.bg-alt {
    background-color: var(--color-bg-alt);
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.section-subtitle {
    text-align: center;
    color: var(--color-text-light);
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Carrusel de Lámparas */
.lamparas-carousel {
    max-width: 900px;
    margin: 0 auto;
    padding-bottom: 40px;
}

.slider-item {
    outline: none;
    padding: 0 10px;
}

.slider-item img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.slick-prev:before, .slick-next:before {
    color: var(--color-text) !important;
    font-size: 35px;
}
.slick-prev { left: -40px; }
.slick-next { right: -40px; }
.slick-dots li button:before { font-size: 14px; color: var(--color-text-light); }
.slick-dots li.slick-active button:before { color: var(--color-accent); }

/* --- Grid de Terapias --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.service-card {
    background-color: var(--color-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.03);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.service-img {
    height: 250px;
    overflow: hidden;
}

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

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

.service-content {
    padding: 30px;
    text-align: center;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--color-accent);
}

/* --- Contacto --- */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    background-color: var(--color-white);
    padding: 60px;
    border-radius: var(--border-radius);
    box-shadow: 0 20px 40px rgba(0,0,0,0.04);
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.contact-info p {
    color: var(--color-text-light);
}

.social-links {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    margin-bottom: 40px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: var(--color-bg-alt);
    border-radius: 50%;
    font-size: 1.2rem;
    color: var(--color-text);
}

.social-links a:hover {
    background-color: var(--color-accent);
    color: var(--color-white);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group input, 
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #E0DCD3;
    background-color: var(--color-bg);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-text);
    transition: var(--transition);
}

.form-group input:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    background-color: var(--color-white);
}

.form-group input::placeholder, 
.form-group textarea::placeholder {
    color: #A09C95;
}

/* --- Footer --- */
footer {
    text-align: center;
    padding: 40px 0;
    background-color: var(--color-text);
    color: var(--color-bg);
}

/* --- WhatsApp Float --- */
.wsp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white !important;
    width: 60px; height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 10px 20px rgba(37,211,102,0.3);
    z-index: 9999;
    transition: var(--transition);
}

.wsp-float:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 25px rgba(37,211,102,0.4);
}

/* --- Responsive --- */
@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-content .bio {
        margin: 0 auto 30px;
    }
    .hero-buttons {
        justify-content: center;
    }
    .boho-arch {
        display: none;
    }
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    .contact-wrapper {
        grid-template-columns: 1fr;
        padding: 40px;
    }
    .hero-content h1 {
        font-size: 3rem;
    }
}

@media (max-width: 600px) {
    .nav-links {
        display: none;
    }
    .slider-item img {
        height: 400px;
    }
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .slick-prev { left: 5px; z-index: 10; }
    .slick-next { right: 5px; z-index: 10; }
    .slick-prev:before, .slick-next:before {
        color: var(--color-white) !important;
        text-shadow: 0 2px 5px rgba(0,0,0,0.5);
    }
}
