:root {
    --primary-color: #f5b041; /* Dorado barbershop */
    --primary-dark: #d4932d;
    --bg-color: #0d0d0d;
    --card-bg: #1a1a1a;
    --text-light: #f4f4f4;
    --text-muted: #aaaaaa;
    --wsp-color: #25d366;
    --wsp-hover: #1da851;
}

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

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

h1, h2, h3, .logo-title {
    font-family: 'Bebas Neue', cursive;
    letter-spacing: 2px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

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

/* ================= HEADER HERO ================= */
.hero {
    height: 100vh;
    background: url('https://images.unsplash.com/photo-1593702275687-f8b402bf1fb5?auto=format&fit=crop&q=80&w=1920') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(13,13,13,1));
    z-index: 1;
}

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

.logo-title {
    font-size: 5rem;
    color: var(--text-light);
    margin-bottom: 10px;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.7);
}

.logo-title span {
    color: var(--primary-color);
}

.subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 30px;
    color: var(--text-muted);
}

.btn-primary {
    display: inline-block;
    padding: 15px 35px;
    background-color: var(--primary-color);
    color: var(--bg-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    font-family: 'Bebas Neue', cursive;
    font-size: 1.3rem;
    box-shadow: 0 4px 15px rgba(245, 176, 65, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(245, 176, 65, 0.5);
}

/* ================= INFO GRID (Tarjetas) ================= */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: -8rem;
    position: relative;
    z-index: 5;
}

.info-card {
    background-color: var(--card-bg);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(245, 176, 65, 0.1);
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
    transition: transform 0.3s ease, border-color 0.3s ease;
    backdrop-filter: blur(10px);
}

.info-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
}

.info-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.info-card:hover i {
    transform: scale(1.1);
}

.info-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.info-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.link-text {
    display: inline-block;
    margin-top: 15px;
    color: var(--primary-color);
    font-size: 0.95rem;
    font-weight: 600;
}

.link-text:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
}

.social-link:hover {
    color: var(--text-light);
}

/* ================= PRICING ================= */
.pricing-section {
    padding-top: 2rem;
}

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

.price-list {
    background-color: var(--card-bg);
    padding: 3rem 2.5rem;
    border-radius: 12px;
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid rgba(255,255,255,0.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.price-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.price-item:hover {
    transform: scale(1.02);
    /* opacity: 0.9; */
}

.price-item:last-child {
    margin-bottom: 0;
}

.service {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
}

.dots {
    flex-grow: 1;
    border-bottom: 2px dotted rgba(255, 255, 255, 0.2);
    margin: 0 15px;
    position: relative;
    top: -5px;
}

.price {
    font-weight: 800;
    color: var(--primary-color);
    font-family: 'Bebas Neue', cursive;
    font-size: 1.5rem;
    letter-spacing: 1px;
}

/* ================= MAP SECTION ================= */
.map-section {
    padding-bottom: 4rem;
}

.map-container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
    border-radius: 12px;
    overflow: hidden;
}

.map-container iframe {
    border-radius: 12px;
    filter: invert(90%) hue-rotate(180deg) brightness(95%) contrast(85%); /* Fake dark mode en iframe */
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    transition: filter 0.3s ease;
}

.map-container iframe:hover {
    filter: none; /* Revelar mapa original al pasar el mouse por si acaso */
}

/* ================= FOOTER ================= */
footer {
    text-align: center;
    padding: 2.5rem;
    background-color: #050505;
    color: var(--text-muted);
    font-size: 0.9rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

/* ================= BOTON WSP FLOTANTE ================= */
.float-wsp {
    position: fixed;
    width: auto;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: var(--wsp-color);
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 24px;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
    z-index: 100;
    display: flex;
    align-items: center;
    padding: 0 20px;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.float-wsp:hover {
    background-color: var(--wsp-hover);
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
}

.wsp-text {
    font-size: 16px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    display: none;
    white-space: nowrap;
}

.float-wsp:hover .wsp-text {
    display: block;
    animation: slideInRight 0.3s forwards;
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(10px); }
    to { opacity: 1; transform: translateX(0); }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
    .logo-title {
        font-size: 3.5rem;
    }
    
    .info-grid {
        margin-top: 2rem;
    }
    
    .price-item {
        flex-direction: column;
        align-items: flex-start;
        padding-bottom: 10px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .price-item:last-child {
        border-bottom: none;
    }

    .dots {
        display: none;
    }
    
    .price {
        margin-top: 5px;
    }
    
    .float-wsp {
        bottom: 20px;
        right: 20px;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        padding: 0;
        justify-content: center;
    }
    
    .wsp-text, .float-wsp:hover .wsp-text {
        display: none;
    }
}
