/* --- Reset y Estilos Base --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif; /* Tipografía Sans Serif limpia */
    color: #1a1a1a;
    line-height: 1.6;
    background-color: #FAFAFA;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

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

/* --- Tipografías Especiales --- */
.signature-text {
    font-family: 'Great Vibes', cursive; /* Tipografía tipo firma */
    font-weight: 400;
}

.section-title {
    font-size: 1.8rem;
    letter-spacing: 2px;
    margin-bottom: 3rem;
    text-transform: uppercase;
    font-weight: 400;
    border-bottom: 2px solid #f0e6d2;
    display: inline-block;
    padding-bottom: 10px;
}

/* --- Botones --- */
.btn-primary {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
    border-radius: 8px;
    background-color: #f0e6d2; /* Tono beige/dorado muy suave */
    color: #1a1a1a;
    border: 1px solid #d4af37;
    text-align: center;
}

.btn-primary:hover {
    background-color: #e5d5b5;
}

.btn-phone {
    font-weight: 400;
    font-size: 1.1rem;
    display: block;
    margin-top: 5px;
}

.btn-outline {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border-radius: 4px;
    border: 1px solid #1a1a1a;
    color: #1a1a1a;
    background: transparent;
    text-transform: uppercase;
}

.btn-outline:hover {
    background-color: #1a1a1a;
    color: #fff;
}

/* --- Cabecera / Hero Section (CON IMAGEN DE FONDO) --- */
.hero {
    height: 85vh; /* Un poco más alta */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 2rem;
    color: #fff;
    /* --- REFERENCIA A LA IMAGEN DE FONDO PRINCIPAL --- */
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)), url('img/hero-hair.jpg'); 
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Efecto Parallax suave */
}

.hero-content {
    max-width: 900px;
}

.logo-container {
    margin-bottom: 1.5rem;
}

.main-logo {
    max-width: 300px; /* Ajusta según el tamaño real de tu logo png */
    height: auto;
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero .subtitle {
    font-size: 1rem;
    letter-spacing: 4px;
    margin-bottom: 2rem;
    text-transform: uppercase;
    color: #f0e6d2;
}

/* --- Servicios (Listas con Iconos) --- */
.bg-light {
    background-color: #ffffff;
}

.services-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-list {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 1.5rem;
    border-radius: 8px;
    transition: box-shadow 0.3s ease;
}

.service-list:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.category-title {
    font-size: 2.8rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.service-list ul {
    list-style: none;
    padding: 0;
}

.service-list li {
    font-size: 1.1rem;
    padding: 0.7rem 0;
    border-bottom: 1px solid #f9f9f9;
    color: #444;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px; /* Espacio con el icono */
}

.service-list li i {
    color: #d4af37; /* Iconos en dorado */
    font-size: 0.9rem;
}

.service-list li:last-child {
    border-bottom: none;
}

/* --- Redken Brand --- */
.redken-brand {
    margin-top: 5rem;
    padding-top: 2rem;
    border-top: 1px solid #eaeaea;
}

.redken-logo {
    max-width: 180px;
    height: auto;
    margin-bottom: 10px;
}

.redken-brand p {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #666;
}

/* --- Footer --- */
.footer {
    background-color: #fafafa;
    border-top: 1px solid #eaeaea;
    padding: 3rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-info p {
    font-size: 1rem;
    color: #333;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-info i {
    color: #d4af37;
    width: 20px;
}

.footer-info a {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 600;
}

/* --- Adaptabilidad (Móviles) --- */
@media (max-width: 768px) {
    .hero {
        height: auto;
        padding: 6rem 1rem;
    }
    .hero h1 {
        font-size: 3rem;
    }
    .main-logo {
        max-width: 200px;
    }
    .category-title {
        font-size: 2.2rem;
    }
    .services-grid {
        flex-direction: column;
        gap: 3rem;
    }
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    .footer-info p {
        justify-content: center;
    }
}