:root {
    --bg-color: #121212;
    --text-color: #F5F5F5;
    --title-color: #FFFFFF;
    --accent-color: #222222;
    --accent-light: #444444;
    --silver: #C0C0C0;
    --gold: #D4AF37;
    --gold-glow: rgba(212, 175, 55, 0.3);
    --font-main: 'Montserrat', sans-serif;
}

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

body {
    background-color: var(--bg-color);
    background-image: 
        linear-gradient(rgba(18, 18, 18, 0.5), rgba(18, 18, 18, 0.5)),
        url('assets/pattern.png');
    background-repeat: repeat;
    background-size: auto, 400px;
    background-attachment: fixed;
    color: var(--text-color);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--title-color);
    font-weight: 600;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
.header {
    background-color: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1.2rem 0;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}

.header.scrolled {
    background-color: rgba(18, 18, 18, 1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.8);
    padding: 0.8rem 0;
}

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

.logo h1 {
    font-size: 1.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--silver);
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.contact-info {
    display: flex;
    gap: 1.5rem;
    font-size: 0.9rem;
    color: #ccc;
    flex-wrap: wrap;
}

.contact-info a, .contact-info span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s;
}

.contact-info a:hover {
    color: var(--title-color);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/hero_bg_original.jpg'); /* Aquí debe ir tu foto original */
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    /* Filtro profesional: reduce un poco la saturación, aumenta el contraste y lo oscurece sutilmente */
    filter: grayscale(25%) contrast(115%) brightness(90%);
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Gradiente oscuro para asegurar la legibilidad y dar un toque elegante */
    background: linear-gradient(135deg, rgba(18,18,18,0.7) 0%, rgba(0,0,0,0.4) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
    animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-content h2 {
    font-size: 4rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--title-color);
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: #e0e0e0;
    text-shadow: 0 1px 5px rgba(0,0,0,0.5);
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--gold);
    color: #000;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px var(--gold-glow);
}

.btn-primary:hover {
    background-color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px var(--gold-glow);
}

.social-links {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
}

.social-links a:hover {
    background-color: var(--silver);
    color: #000;
    transform: scale(1.1);
}

/* Sections */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--gold);
}

.services, .hours, .about {
    padding: 6rem 0;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: rgba(34, 34, 34, 0.6);
    backdrop-filter: blur(10px);
    padding: 2.5rem 1.5rem;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px var(--gold-glow);
    border-color: rgba(212, 175, 55, 0.5);
    background-color: rgba(42, 42, 42, 0.8);
}

.service-card i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.service-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.service-card .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 1rem;
}

.service-card p {
    color: #bbb;
    font-size: 0.95rem;
}

/* Gallery */
.gallery {
    padding: 6rem 0;
    background-color: transparent;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    aspect-ratio: 1 / 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
    /* Filtro profesional: un poco de contraste y brillo como solicitaste */
    filter: contrast(115%) brightness(95%);
}

.gallery-item:hover img {
    transform: scale(1.05);
    filter: contrast(120%) brightness(100%);
}

/* Reviews */
.reviews {
    padding: 6rem 0;
    background-color: transparent;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.review-card {
    background-color: rgba(34, 34, 34, 0.6);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--gold-glow);
    border-color: rgba(212, 175, 55, 0.3);
}

.stars {
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.review-text {
    font-style: italic;
    color: #ddd;
    margin-bottom: 2rem;
    line-height: 1.8;
    font-size: 1.05rem;
}

.review-author {
    color: var(--silver);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.reviews-action {
    text-align: center;
    margin-top: 2rem;
}

/* About */
.about {
    background-color: transparent;
}

.about-content {
    background-color: rgba(34, 34, 34, 0.6);
    backdrop-filter: blur(10px);
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem;
    border-radius: 8px;
    border-top: 4px solid var(--gold);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    gap: 3rem;
    text-align: left;
    border-left: 1px solid rgba(255,255,255,0.05);
    border-right: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.about-image {
    flex: 0 0 40%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    /* Filtro profesional para encajar con el estilo del sitio */
    filter: grayscale(15%) contrast(110%) brightness(95%);
    transition: filter 0.3s ease, transform 0.4s ease;
}

.about-image:hover img {
    filter: grayscale(0%) contrast(115%) brightness(100%);
    transform: scale(1.02);
}

.about-text {
    flex: 1;
}

.about-text p {
    font-size: 1.1rem;
    color: #ddd;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-text p:last-child {
    margin-bottom: 0;
}

/* Hours */
.hours {
    background-color: transparent;
}

.hours-card {
    background-color: rgba(34, 34, 34, 0.6);
    backdrop-filter: blur(10px);
    max-width: 600px;
    margin: 0 auto;
    padding: 3rem;
    border-radius: 8px;
    border-left: 4px solid var(--gold);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border-top: 1px solid rgba(255,255,255,0.05);
    border-right: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.hours-list {
    list-style: none;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 1.1rem;
}

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

/* CTA */
.cta {
    padding: 6rem 0;
    background-color: rgba(18, 18, 18, 0.8);
    background-image: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(18, 18, 18, 0.8) 100%);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    text-align: center;
}

.cta-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--title-color);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.cta-container p {
    font-size: 1.2rem;
    color: #ddd;
    margin-bottom: 2.5rem;
}

/* Footer */
footer {
    background-color: transparent;
    padding: 2rem 0;
    text-align: center;
    color: #555;
    font-size: 0.9rem;
}

/* Floating Social Icons */
.floating-social {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.floating-social a {
    width: 60px;
    height: 60px;
    background-color: var(--accent-color);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    border: 2px solid var(--gold);
    transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.floating-social a.whatsapp:hover {
    background-color: #25D366;
    color: #fff;
    border-color: #25D366;
    transform: scale(1.1) translateY(-5px);
}

.floating-social a.facebook-float:hover {
    background-color: #1877F2;
    color: #fff;
    border-color: #1877F2;
    transform: scale(1.1) translateY(-5px);
}

/* Responsive */
@media (max-width: 768px) {
    .hero::before {
        background-attachment: scroll;
        background-position: center top;
    }

    .header-container {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-info {
        justify-content: center;
    }

    .hero-content h2 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .btn-primary {
        padding: 0.8rem 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        padding: 2rem;
    }
    
    .about-image {
        width: 80%;
        margin: 0 auto;
    }
    
    .services, .hours, .about, .cta {
        padding: 3rem 0;
    }
    
    .cta-container h2 {
        font-size: 2rem;
    }
    
    .floating-social {
        bottom: 15px;
        right: 15px;
    }
    
    .floating-social a {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}
