:root {
    --primary-black: #1a1a1a;
    --primary-gold: #d4af37;
    --light-gray: #f5f5f5;
    --dark-gray: #333333;
    --text-dark: #2c2c2c;
    --accent-gray: #e8e8e8;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
}

header {
    background-color: var(--primary-black);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
    width: 100%;
    padding: 0.8rem 2rem;
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    gap: 1.5rem;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex-shrink: 0;
}

.logo-img {
    height: 45px;
    width: auto;
}

.logo-text {
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 2px;
}

section {
    scroll-margin-top: 90px;
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-gold);
    transition: width 0.3s ease;
}

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

.nav-links a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: white;
    border-radius: 2px;
    transition: all 0.35s ease;
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(10.5px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-10.5px) rotate(-45deg);
}

.mobile-nav {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: var(--primary-black);
    border-top: 2px solid var(--primary-gold);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    padding: 1rem 0;
    opacity: 0;
    transform: translateY(-15px);
    pointer-events: none;
    transition: all 0.35s ease;
    z-index: 999;
}

.mobile-nav.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.mobile-nav ul {
    list-style: none;
}

.mobile-nav li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-nav li:last-child {
    border-bottom: none;
}

.mobile-nav a {
    display: block;
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.mobile-nav a:hover {
    background-color: rgba(212, 175, 55, 0.1);
    color: var(--primary-gold);
}

.slider-container {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 500px;
    max-height: 700px;
    overflow: hidden;
    border-radius: 0;
}

.slider-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    will-change: opacity;
    transform: translateZ(0);
}

.slider-slide.active {
    opacity: 1;
}

.slider-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 0 1rem;
    animation: fadeInUp 1s ease 0.3s both;
}

.hero-content h1 {
    font-size: clamp(1.8rem, 5vw, 4rem);
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    line-height: 1.1;
}

.hero-content p {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    letter-spacing: 1.5px;
    margin-bottom: 0;
    font-weight: 300;
}

.slider-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid white;
    padding: 0;
}

.slider-dot.active {
    background-color: var(--primary-gold);
    transform: scale(1.2);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    font-size: 24px;
    padding: 15px 20px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.slider-arrow:hover {
    background-color: rgba(212, 175, 55, 0.8);
}

.slider-arrow.prev {
    left: 20px;
}

.slider-arrow.next {
    right: 20px;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 2rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, transparent, var(--primary-gold), transparent);
}

.about-container,
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    margin: 0 auto;
    max-width: 350px;
    width: 100%;
}

.about-text h3,
.contact-info h3,
.opening-hours h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-black);
}

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

.features-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 2px solid var(--accent-gray);
}

.feature-card,
.service-card,
.contact-info,
.opening-hours {
    background: var(--light-gray);
    border-radius: 8px;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    transition: all 0.3s ease;
}

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

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    display: block;
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-black);
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature-text,
.service-card p {
    font-size: 0.95rem;
    color: #666;
}

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

.service-card {
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    border-color: var(--primary-gold);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-black);
}

.prices-section {
    background: linear-gradient(135deg, var(--light-gray) 0%, white 100%);
    border-radius: 10px;
    padding: 3rem;
}

.price-category {
    margin-bottom: 3rem;
}

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

.category-title {
    font-size: 1.8rem;
    color: var(--primary-black);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--primary-gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--accent-gray);
    transition: all 0.3s ease;
}

.price-item:hover {
    background-color: rgba(212, 175, 55, 0.05);
    padding-left: 2rem;
}

.price-item:last-child {
    border-bottom: none;
}

.service-name {
    flex: 1;
}

.price-value {
    font-size: 1.1rem;
    color: var(--primary-gold);
    font-weight: 700;
    margin-left: 2rem;
    min-width: 100px;
    text-align: right;
    white-space: nowrap;
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 1;
    cursor: pointer;
    background: var(--light-gray);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 26, 26, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-icon {
    color: white;
    font-size: 3rem;
}

.modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    position: relative;
    max-width: 90%;
    max-height: 85vh;
    border-radius: 8px;
    overflow: hidden;
}

.modal-content img {
    width: 100%;
    height: auto;
    display: block;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-close:hover,
.modal-nav:hover {
    background: rgba(212, 175, 55, 0.7);
}

.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    font-size: 30px;
    cursor: pointer;
    padding: 20px 15px;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.modal-nav.prev {
    left: 20px;
}

.modal-nav.next {
    right: 20px;
}

.contact-info,
.opening-hours {
    padding: 2rem;
    align-self: start;
}

.contact-item,
.hours-item {
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.hours-item:last-of-type {
    margin-bottom: 0;
}

.contact-item strong,
.hours-item strong {
    display: block;
    color: var(--primary-gold);
    margin-bottom: 0.3rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-item a {
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--primary-gold);
}

footer {
    background-color: var(--primary-black);
    color: white;
    padding: 2rem;
    margin-top: 3rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

footer p {
    margin: 0 0 1rem 0;
    font-size: 0.95rem;
}

.footer-links {
    font-size: 0.9rem;
}

.footer-links a {
    color: var(--primary-gold);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.footer-links a:hover {
    color: white;
    text-decoration: underline;
}

.footer-links .divider {
    color: var(--primary-gold);
    margin: 0 0.8rem;
}

#logoIntro {
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at center, #000 0%, #0a0a0a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    overflow: hidden;
    animation: introFadeOut 1.2s ease 2.5s forwards;
}

.logo-wrapper {
    position: relative;
    animation: logoZoom 2s cubic-bezier(.19, 1, .22, 1) forwards;
}

.intro-logo {
    width: 300px;
    max-width: 70vw;
    opacity: 0;
    animation: logoFadeIn 1.5s ease forwards;
}

.logo-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.4), transparent 70%);
    filter: blur(30px);
    opacity: 0;
    animation: glowPulse 3s ease 1s forwards;
}

.whatsapp-icon-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.whatsapp-icon-button:hover .whatsapp-icon-img,
.feature-card:hover .feature-logo {
    transform: scale(1.1);
}

.feature-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: brightness(1.1);
    transition: transform 0.3s ease;
}

.promo-subtitle {
    text-align: center;
    font-size: 1.8rem;
    margin-top: 10px;
    color: #c9a646;
    letter-spacing: 1px;
}

.promo-image {
    text-align: center;
    margin: 20px 0 40px 0;
}

.promo-image img {
    max-width: 400px;
    width: 90%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes logoFadeIn {
    0% { opacity: 0; transform: scale(0.8); }
    100% { opacity: 1; transform: scale(1); }
}

@keyframes logoZoom {
    0% { transform: scale(1); }
    80% { transform: scale(1.15); }
    100% { transform: scale(1.2); }
}

@keyframes glowPulse {
    0% { opacity: 0; }
    50% { opacity: 1; }
    100% { opacity: 0.6; }
}

@keyframes introFadeOut {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

@media (max-width: 1024px) {
    .nav-links {
        gap: 1.25rem;
    }

    .nav-links a {
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    header {
        padding: 0.8rem 1.25rem;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-nav {
        top: 64px;
    }

    .mobile-nav a {
        padding: 0.95rem 1.5rem;
        font-size: 0.95rem;
    }

    .logo-text {
        font-size: 1rem;
        letter-spacing: 1px;
    }

    .slider-container {
        height: 60vh;
        min-height: 380px;
        max-height: none;
    }

    .slider-arrow {
        padding: 10px 14px;
        font-size: 18px;
    }

    .slider-arrow.prev {
        left: 10px;
    }

    .slider-arrow.next {
        right: 10px;
    }

    .slider-controls {
        bottom: 20px;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-container,
    .contact-wrapper,
    .features-container {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    section {
        padding: 3rem 1rem;
    }

    .prices-section {
        padding: 2rem 1rem;
    }

    .price-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem 0.75rem;
    }

    .price-value {
        margin-left: 0;
        margin-top: 0.35rem;
        text-align: left;
        min-width: auto;
    }

    .intro-logo {
        width: 220px;
    }
}

@media (max-width: 480px) {
    header {
        padding: 0.7rem 1rem;
    }

    .logo-img {
        height: 35px;
    }

    .logo-text {
        font-size: 0.8rem;
        letter-spacing: 0.5px;
    }

    .hamburger {
        width: 26px;
        height: 20px;
    }

    .hamburger span {
        height: 2.5px;
    }

    .mobile-nav {
        top: 58px;
    }

    .slider-container {
        height: 50vh;
        min-height: 320px;
    }

    .slider-arrow {
        padding: 8px 12px;
        font-size: 16px;
    }

    .slider-dot {
        width: 10px;
        height: 10px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .service-icon {
        font-size: 2rem;
    }

    .mobile-nav a {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }

    section {
        padding: 2.5rem 0.8rem;
    }

    .price-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .price-value {
        margin-left: 0;
        text-align: left;
        min-width: auto;
    }

    .modal-close {
        top: 10px;
        right: 10px;
        width: 42px;
        height: 42px;
        font-size: 30px;
    }

    .modal-nav {
        padding: 14px 10px;
        font-size: 24px;
    }

    .intro-logo {
        width: 180px;
    }
}
