/* --- RESET Y FONDO SENSORIAL --- */
:root {
    --blue-dark: #0b1a31;
    --blue-vibrant: #142d54;
    --gold: #f2a900; /* EL DORADO EXACTO DE TU LOGO 🎨 */
    --white-warm: #f8f9fa;
}

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

html {
    background-color: #0b1a31; /* El color oscuro para que no haya franjas blancas */
}

body {
    font-family: 'Montserrat', sans-serif;
    /* Degradado Radial: Crea un foco de luz en el centro */
    background: radial-gradient(circle at center, #1a3a6d 0%, var(--blue-dark) 100%);
    background-attachment: fixed; /* El fondo se queda quieto mientras haces scroll, muy pro */
    color: var(--white-warm);
    line-height: 1.6;
    overflow-x: hidden;
	min-height: 100vh;
    /* Esto asegura que el fondo cubra todo el alto visual del dispositivo */
    min-height: -webkit-fill-available;
}

/* --- 2. HEADER (LOGO) --- */
header {
    width: 100%;
    padding: 30px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
}
.logo-img {
    height: 90px;
    width: auto;
    transition: transform 0.3s ease;
}

header a:hover .logo-img {
    transform: scale(1.05);
}

/* --- 3. HERO INDESTRUCTIBLE --- */
.hero {
    width: 100%;
    min-height: calc(100vh - 130px); /* Ajuste dinámico restando el header */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 5% 60px 5%;
}

.hero-content {
    width: 100%;
    max-width: 1100px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

h1 {
    font-size: clamp(2.5rem, 8vw, 5.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin: 0 0 20px 0;
    width: 100%;
    text-align: center;
    text-transform: uppercase;
}

.gold { 
    color: var(--gold); 
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 0 40px 0; /* Margen de seguridad con el botón */
    opacity: 0.8;
    text-align: center;
}

.cta-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
}

.btn-main {
    display: inline-block;
    background-color: var(--gold);
    color: var(--blue-dark);
    text-decoration: none;
    padding: 1.2rem 3rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 4px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}

.btn-main:hover {
    transform: translateY(-5px);
    background-color: white;
    box-shadow: 0 20px 40px rgba(241, 213, 146, 0.2);
}

/* --- 4. SECCIÓN INFO ACOGEDORA + FOTO LAB --- */
.boutique-info {
    padding: 100px 5%;
    display: flex;
    justify-content: center;
}

.card {
    background: rgba(255, 255, 255, 0.03); /* Transparencia premium */
    padding: 60px 40px;
    border: 1px solid rgba(241, 213, 146, 0.1);
    text-align: center;
    border-radius: 12px;
    max-width: 1000px;
    width: 100%;
    backdrop-filter: blur(10px); /* Efecto cristal */
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.card h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 15px;
}

.gold-text {
    color: var(--gold);
    font-weight: 700;
}

.lab-photo-container {
    margin-top: 50px;
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border: 2px solid rgba(241, 213, 146, 0.2);
}

.lab-photo {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.lab-photo-container:hover .lab-photo {
    transform: scale(1.03);
}

/* --- 5. SERVICIOS (Líneas doradas) --- */
.experience-section {
    padding: 120px 10%;
    background-color: var(--blue-vibrant);
}

.experience-container {
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.exp-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.gold-line {
    width: 40px;
    height: 2px;
    background-color: var(--gold);
    margin-bottom: 2rem;
    transition: width 0.4s ease;
}

.exp-item:hover .gold-line {
    width: 80px;
}

.exp-item h2 {
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    color: var(--white-warm);
}

.exp-item p {
    font-size: 1rem;
    line-height: 1.8;
    color: #b0c0d0;
    margin: 0;
    text-align: left;
}

/* --- 6. EL CONCEPTO Y PARTICULARIDADES EN LÍNEA --- */
.about-boutique {
    padding: 120px 10%;
    background-color: var(--blue-dark); /* Fondo oscuro para contrastar */
    display: flex;
    justify-content: center;
    text-align: center;
}

.about-content {
    max-width: 1000px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.subtitle {
    display: block;
    color: var(--gold);
    letter-spacing: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.about-content h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.1;
    margin-bottom: 2rem;
    text-align: center;
}

.about-content > p {
    font-size: 1.2rem;
    color: var(--white-warm);
    max-width: 750px;
    margin: 0 auto 4rem auto;
    opacity: 0.9;
    font-weight: 300;
    text-align: center;
}

.features-grid {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 4rem;
    border-top: 1px solid rgba(241, 213, 146, 0.1);
    padding-top: 4rem;
    width: 100%;
}

.feature {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 300px;
}

.feature h4 {
    color: var(--gold);
    font-size: 1rem;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

.feature p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #b0c0d0;
    margin: 0;
    font-weight: 400;
}

/* --- 7. FOOTER MINIMALISTA --- */
footer {
    padding: 60px 0;
    background-color: var(--blue-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-top: 1px solid rgba(241, 213, 146, 0.05);
    width: 100%;
}

footer p {
    font-size: 0.7rem;
    color: #6a7a8a;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin: 0;
    font-weight: 400;
    text-align: center;
}

footer p span {
    color: var(--gold);
    opacity: 0.8;
}

/* --- 8. WHATSAPP FLOTANTE (FA-FA) --- */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: var(--gold);
    color: var(--blue-dark);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    background-color: #25d366;
    color: white;
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.3);
}

/* --- 9. RESPONSIVE (MÓVILES) --- */
@media (max-width: 900px) {
    .experience-container {
        flex-direction: column;
        gap: 3rem;
    }
    .exp-item {
        align-items: center;
        text-align: center;
    }
    .exp-item p { text-align: center; }
    .gold-line { margin: 0 auto 2rem auto; }
    
    .features-grid {
        flex-direction: column;
        align-items: center;
        gap: 3rem;
    }
    .feature { max-width: 400px; }
}

@media (max-width: 768px) {
    .boutique-info { padding: 60px 5%; }
    .card { padding: 40px 20px; }
    .lab-photo-container { margin-top: 30px; }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 25px;
    }
}

/* --- SECCIÓN UBICACIÓN --- */
.location-section {
    padding: 120px 10%;
    background-color: rgba(11, 26, 49, 0.8); /* Un tono más oscuro para cerrar la web */
    display: flex;
    justify-content: center;
    border-top: 1px solid rgba(242, 169, 0, 0.1);
}

.location-content {
    max-width: 1000px;
    width: 100%;
    text-align: center;
}

.location-details {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.address-box {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    color: var(--white-warm);
}

.address-box i {
    color: var(--gold);
    font-size: 1.5rem;
}

.address-box .area {
    font-size: 0.9rem;
    color: #6a7a8a;
}

/* Botón secundario elegante */
.btn-outline {
    display: inline-block;
    padding: 1rem 2.5rem;
    border: 1px solid var(--gold);
    color: var(--gold);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 2px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background-color: var(--gold);
    color: var(--blue-dark);
    box-shadow: 0 10px 20px rgba(242, 169, 0, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .location-section {
        padding: 80px 5%;
    }
}