@import url('https://fonts.googleapis.com/css2?family=Kanit:ital,wght@0,400;0,500;1,400;1,500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Domine:wght@400..700&family=Kanit:ital,wght@0,400;0,500;1,400;1,500&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
}

body {
    font-family: 'Kanit', sans-serif;
    padding-top: 50px;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: #000;
    z-index: 1000;
}

/* Contenedor */
.menu-container {
    max-width: 1400px;
    margin: auto;
    padding: 0px 6%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* ===== LOGO ===== */
.LOGO img {
    height: 110px;
    display: block;
}

/* ===== NAV DESKTOP ===== */
.navbar ul {
    display: flex;
    gap: 40px;
    list-style: none;
}

.navbar ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 1px;
    transition: 0.3s ease;
    position: relative;
    font-weight: 500;
    font-style: italic;
}

/* underline elegante */
.navbar:hover a {
    color: rgba(255, 255, 255, 0.4);
}

.navbar a:hover {
    color: rgba(255, 255, 255, 1);
}

/* ===== HAMBURGUESA (OCULTA EN DESKTOP) ===== */
.hamburguer {
    display: none;
}

/* ===================================== */
/* ============ MOBILE ================= */
/* ===================================== */

@media (max-width: 900px) {

    /* Mostrar hamburguesa */
    .hamburguer {
        display: block;
        width: 30px;
        background: none;
        border: none;
        cursor: pointer;
        z-index: 1001;
    }

    .hamburguer .bar {
        display: block;
        width: 100%;
        height: 3px;
        background: #fff;
        margin: 6px 0;
        border-radius: 3px;
        transition: all 0.3s ease;
    }

    /* Animación X */
    .hamburguer.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .hamburguer.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburguer.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    /* Navbar mobile */
    .navbar {
        position: fixed;
        top: 0;
        right: 0;
        width: 65%;
        height: 100vh;
        background: #000;
        padding-top: 120px;
        transform: translateX(100%);
        transition: transform 0.4s ease;
        z-index: 1000;
    }

    .navbar.active {
        transform: translateX(0);
    }

    .navbar ul {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .navbar ul li a {
        font-size: 1.2rem;
    }

    .LOGO img {
        height: 90px;
    }
}

#servicios-especiales {
    background: #0b0b0b;
    padding: 120px 8%;
    text-align: center;
}

.servicios-header {
    margin-bottom: 70px;
}

.servicios-cards h3 {
    color: #dbc79a;
}
.servicios-header h2 {
    color: #dbc79a;
}
.ejemplos li {
    color: white;
}
.precios p {
    color: #dbc79a;
}

.servicios-header h2 {
    font-size: 2.6rem;
    letter-spacing: 2px;
}

.servicios-header p {
    color: white;
    margin-top: 12px;
}

/* Cards */
.servicios-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: left;
}

.servicio-card {
    background: #111;
    border-radius: 10px;
    padding: 40px 30px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.servicio-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 35px rgba(0,0,0,0.6);
}

.servicio-card h3 {
    font-size: 1.4rem;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.servicio-card .descripcion {
    font-size: 0.95rem;
    color: #cfcfcf;
    margin-bottom: 20px;
}

.servicio-card .ejemplos {
    list-style: none;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.servicio-card .ejemplos li {
    font-size: 0.75rem;
    padding: 6px 12px;
    border-radius: 20px;
    background: #1d1d1d;
}

.servicio-card .precios p {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 10px 0;
    font-size: 0.95rem;
}

.servicio-card .precios span {
    color: #bdbdbd;
}

.btn-contacto {
    display: inline-block;
    margin: 60px auto 0;
    padding: 16px 36px;
    background: #fff;
    color: #000;
    font-size: 0.95rem;
    letter-spacing: 1px;
    font-weight: 500;
    border-radius: 10px;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-contacto:hover {
    background: #e5e5e5;
    transform: translateY(-2px);
}

.nota {
    text-align: center;
    margin-top: 60px;
    font-size: 0.85rem;
    color: #9e9e9e;
}

/* Responsive */
@media (max-width: 900px) {
    .servicios-cards {
        grid-template-columns: 1fr;
    }

    #servicios-especiales {
        padding: 90px 6%;
    }
}

/* FOOTER */
.footer {
    background: #000;
    color: #cfcfcf;
    padding: 90px 8% 30px;
    font-size: 0.9rem;
}

.footer-container {
    max-width: 1400px;   
    margin: auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
}

/* Brand */
.footer-brand img {
    width: 200px;
    
}

.footer-brand p {
    max-width: 420px;
    line-height: 1.7;
    color: #bdbdbd;
}

/* Columnas */
.footer-column h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #bdbdbd;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #fff;
}

/* Footer bottom */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: 70px;
    padding-top: 25px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.75rem;
    color: #8a8a8a;
    letter-spacing: 0.5px;
}

.footer-bottom span {
    color: #bdbdbd;
}

.footer-bottom a {
    color: #bdbdbd;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #fff;
}

/* Responsive */
@media (max-width: 900px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-brand img {
        margin: 0 auto 20px;
    }
}

