﻿


:root {
    
    --primary-color: #40E0D0;
    --secondary-color: #FFD700;
    --dark-bg: #000000;
    --light-bg: #1a1a1a;
    --text-primary: #e0e0e0;
    --text-secondary: #b0b0b0;
    
    
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 5rem;
    
    
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    
    --radius-sm: 5px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-round: 50px;
    
    
    --shadow-sm: 0 2px 8px rgba(64, 224, 208, 0.2);
    --shadow-md: 0 4px 15px rgba(64, 224, 208, 0.3);
    --shadow-lg: 0 8px 30px rgba(64, 224, 208, 0.4);
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Optimización de rendimiento para móviles */
@media (max-width: 768px) {
    /* Reducir complejidad de animaciones */
    .social-bubbles .bubble {
        animation: none !important;
    }
    
    /* Simplificar transiciones */
    .galeria-card:hover .galeria-main {
        transform: scale(1.02) !important;
    }
    
    .hero-slide img {
        will-change: auto;
    }
}

/* Respetar preferencia del usuario por movimiento reducido */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}


.navbar {
    background: linear-gradient(135deg, #1a1a1a 0%, #40E0D0 100%);
    border-bottom: 3px solid #40E0D0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(64, 224, 208, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
}

.logo {
    display: flex;
    align-items: center;
}

.logo h1 {
    font-size: clamp(1.1rem, 2vw, 2rem);
    color: #40E0D0;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    line-height: 1;
    margin: 0;
}

.logo-link {
    text-decoration: none;
    color: #40E0D0;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
}

.logo-text {
    display: inline-block;
    line-height: 1;
}

.logo-img {
    width: clamp(30px, 5vw, 44px);
    height: clamp(30px, 5vw, 44px);
    object-fit: contain;
    display: block;
}

.logo-link:hover {
    color: #FFD700;
}

.nav-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 101;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    gap: 5px;
}

.hamburger {
    display: block;
    width: 30px;
    height: 3px;
    background: #000000;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.nav-toggle.active .hamburger:nth-child(1) {
    transform: rotate(45deg) translate(9px, 9px);
}

.nav-toggle.active .hamburger:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .hamburger:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #40E0D0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #FFD700;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.lang-switcher {
    display: flex;
    gap: 0.5rem;
}

.lang-switcher button {
    background: linear-gradient(135deg, #40E0D0, #3bb8b8);
    color: #fff;
    border: 2px solid #40E0D0;
    border-radius: 5px;
    padding: 0.5rem 1.2rem;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(64, 224, 208, 0.2);
    transition: all 0.3s ease;
}

.lang-switcher button.active,
.lang-btn.active {
    background: #FFD700;
    color: #181818;
    border-color: #FFD700;
}

.lang-switcher button:hover {
    background: #FFD700;
    color: #181818;
    border-color: #FFD700;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.lang-switcher button:active {
    transform: translateY(0);
}


@media (max-width: 768px) {
    .navbar {
        position: sticky;
        top: 0;
    }
    
    .nav-container {
        padding: 0.3rem 0.5rem !important;
        position: relative;
        display: grid !important;
        grid-template-columns: auto 1fr auto;
        align-items: center;
        gap: 0.5rem;
    }

    .nav-toggle {
        display: flex !important;
        grid-column: 1;
        position: relative;
        flex-shrink: 0 !important;
        margin: 0 !important;
    }

    .logo {
        grid-column: 2;
        flex: 0 0 auto !important;
        margin: 0 !important;
        text-align: center;
    }

    .logo h1 {
        font-size: 1rem !important;
        white-space: nowrap !important;
        letter-spacing: 0.5px !important;
        margin: 0 !important;
        line-height: 1 !important;
    }

    .logo-img {
        width: 30px;
        height: 30px;
    }

    .lang-switcher {
        grid-column: 3;
        margin: 0 !important;
        flex: 0 0 auto !important;
        display: flex !important;
        gap: 0.2rem !important;
    }

    .lang-switcher button {
        padding: 0.2rem 0.35rem !important;
        font-size: 0.6rem !important;
        min-width: 26px !important;
    }

    .nav-menu {
        order: 4;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        width: 100%;
        background: linear-gradient(180deg, rgba(26, 26, 26, 0.98) 0%, rgba(64, 224, 208, 0.1) 100%);
        border-radius: 0 0 8px 8px;
        border: 1px solid rgba(64, 224, 208, 0.3);
        border-top: none;
        gap: 0;
        padding: 0;
        margin: 0;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s;
        z-index: 99;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        display: flex !important;
        padding: 1rem 0;
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
        padding: 0.8rem 0;
        border-bottom: 1px solid rgba(64, 224, 208, 0.2);
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-menu a {
        display: block;
        padding: 0.5rem 1rem;
        font-size: 1.1rem;
    }

    .nav-menu a::after {
        display: none;
    }
}


@media (min-width: 769px) {
    .nav-menu {
        display: flex !important;
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
    }
    
    .nav-toggle {
        display: none !important;
    }
}


.inicio {
    background: #000000;
    padding: 3rem 2rem;
    text-align: center;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
}

.carousel {
    margin-bottom: 2rem;
}

.carousel-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(64, 224, 208, 0.3);
}

.carousel-slide {
    display: none;
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    animation: fadeEffect 1s;
}

.carousel-slide.fade {
    animation: fadeEffect 1s;
}

@keyframes fadeEffect {
    from {
        opacity: 0.5;
    }
    to {
        opacity: 1;
    }
}

.carousel-prev,
.carousel-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: #40E0D0;
    font-weight: bold;
    font-size: 18px;
    transition: 0.3s ease;
    border-radius: 3px;
    user-select: none;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.carousel-next {
    right: 10px;
}

.carousel-prev {
    left: 10px;
}

.carousel-prev:hover,
.carousel-next:hover {
    background-color: rgba(64, 224, 208, 0.8);
    color: #000;
}

.carousel-dots {
    text-align: center;
    padding: 1.5rem;
}

.dot {
    cursor: pointer;
    height: 12px;
    width: 12px;
    margin: 0 8px;
    background-color: #555;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.3s ease;
    border: 2px solid transparent;
}

.dot.active {
    background-color: #40E0D0;
    border-color: #fff;
}

.dot:hover {
    background-color: #40E0D0;
}

.inicio h2 {
    font-size: 3rem;
    margin: 1.5rem 0 0.5rem;
    color: #40E0D0;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
}

.inicio p {
    font-size: 1.3rem;
    color: #b0b0b0;
    font-style: italic;
}


section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    border-top: 2px solid #40E0D0;
}

section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #40E0D0;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #40E0D0, transparent);
}

section p {
    font-size: 1.1rem;
    color: #d0d0d0;
    text-align: center;
    margin-bottom: 1rem;
}


.sobre-mi {
    background: #000000;
}

.contenido-about {
    max-width: 900px;
    margin: 0 auto;
}

.contenido-about p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #d0d0d0;
}

.estilos-lista {
    list-style: none;
    margin: 2rem auto;
    max-width: 500px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.estilos-lista li {
    background: linear-gradient(135deg, #40E0D0, #2dd4bf);
    padding: 1rem;
    border-radius: 5px;
    text-align: center;
    font-weight: bold;
    color: #fff;
    box-shadow: 0 4px 15px rgba(64, 224, 208, 0.3);
    transition: transform 0.3s ease;
}

.estilos-lista li:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(64, 224, 208, 0.5);
}

.frase-inspiradora {
    font-size: 1.3rem;
    font-style: italic;
    text-align: center;
    color: #40E0D0;
    margin: 2.5rem auto;
    padding: 1.5rem 2rem;
    border-left: 4px solid #40E0D0;
    border-right: 4px solid #40E0D0;
    max-width: 600px;
    line-height: 1.8;
    letter-spacing: 0.5px;
    background: rgba(64, 224, 208, 0.08);
    border-radius: 5px;
}


.bloque-titulo {
    font-size: 1.8rem;
    color: #40E0D0;
    margin: 3rem 0 1.5rem 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid #40E0D0;
    padding-bottom: 0.8rem;
}


.estilos-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.estilo-card {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border-left: 4px solid #40E0D0;
    padding: 2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(64, 224, 208, 0.15);
}

.estilo-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(64, 224, 208, 0.3);
    border-left-color: #FFD700;
}

.estilo-card h3 {
    color: #40E0D0;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.estilo-card p {
    color: #d0d0d0;
    line-height: 1.6;
    font-size: 0.95rem;
}


.certificados-galeria {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.certificado-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(64, 224, 208, 0.05);
    border-radius: 8px;
    border: 1px solid #40E0D0;
    transition: all 0.3s ease;
}

.certificado-item:hover {
    background: rgba(64, 224, 208, 0.1);
    box-shadow: 0 8px 20px rgba(64, 224, 208, 0.2);
    transform: translateY(-5px);
}

.certificado-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 1rem;
    border: 2px solid #40E0D0;
}

.certificado-item p {
    color: #40E0D0;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}


.proyectos {
    background: #000000;
}

.galeria {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    width: 100%;
}

.galeria-item {
    position: relative;
    padding: 0;
    background: none;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(64, 224, 208, 0.2);
    border: 2px solid #40E0D0;
}

.galeria-item .mini-carousel {
    border: none;
    box-shadow: none;
    margin-bottom: 0;
}

.galeria-item h3,
.galeria-item p {
    position: absolute;
    left: 0;
    width: 100%;
    z-index: 2;
    color: #fff;
    text-align: center;
    padding: 0.5rem 1rem;
    margin: 0;
    font-weight: bold;
    text-shadow: 0 2px 8px rgba(0,0,0,0.7);
}

.galeria-item h3 {
    top: 20px;
    font-size: 1.3rem;
    background: linear-gradient(180deg, rgba(30,30,30,0.7) 80%, transparent 100%);
    border-radius: 8px 8px 0 0;
}

.galeria-item p {
    bottom: 20px;
    font-size: 1rem;
    background: linear-gradient(0deg, rgba(30,30,30,0.7) 80%, transparent 100%);
    border-radius: 0 0 8px 8px;
}

.galeria-item .mini-slide {
    filter: brightness(0.85);
}

.galeria-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(64, 224, 208, 0.5);
}

.galeria-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.galeria-item h3,
.galeria-item p {
    display: none;
}

.galeria-item:hover h3,
.galeria-item:hover p {
    display: block;
}


.agenda {
    background: #000000;
}

.formulario-cita {
    background-color: #1a1a1a;
    max-width: 600px;
    margin: 2rem auto;
    padding: 2rem;
    border-radius: 10px;
    border-left: 5px solid #40E0D0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.form-group {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #40E0D0;
    margin-bottom: 0.5rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    background-color: #0f0f0f;
    border: 2px solid #333;
    color: #e0e0e0;
    padding: 0.8rem;
    border-radius: 5px;
    font-size: 1rem;
    font-family: Arial, sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #40E0D0;
    box-shadow: 0 0 10px rgba(64, 224, 208, 0.3);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group.checkbox {
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
}

.form-group.checkbox input {
    width: auto;
    margin: 0;
}

.form-group.checkbox label {
    margin: 0;
    text-transform: none;
    font-weight: normal;
}

.btn-enviar {
    width: 100%;
    background: linear-gradient(135deg, #40E0D0, #2dd4bf);
    color: #fff;
    padding: 1rem;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(64, 224, 208, 0.3);
}

.btn-enviar:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(64, 224, 208, 0.5);
}

.btn-enviar:active {
    transform: translateY(0);
}

.info-contacto {
    background-color: #1a1a1a;
    max-width: 600px;
    margin: 2rem auto;
    padding: 2rem;
    border-radius: 10px;
    border-left: 5px solid #40E0D0;
    text-align: center;
}

.info-contacto h3 {
    color: #40E0D0;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    text-transform: uppercase;
}

.info-contacto p {
    margin-bottom: 0.8rem;
    color: #d0d0d0;
    font-size: 1rem;
}


.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #40E0D0 100%);
    border-top: 3px solid #40E0D0;
    padding: 2.5rem 2rem;
    text-align: center;
    color: #fff;
    margin-top: 3rem;
    box-shadow: 0 -2px 10px rgba(64, 224, 208, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.footer > p {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
}

.footer-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    width: 100%;
    max-width: 1200px;
    margin-bottom: 0.5rem;
}

.footer-info p {
    color: #fff;
    font-size: 1rem;
    text-transform: none;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.footer-info a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-info a:hover {
    color: #FFD700;
    text-decoration: underline;
}

.footer-info a:focus {
    outline: 2px solid #FFD700;
    outline-offset: 2px;
}

.footer-info i {
    color: #FFD700;
    font-size: 1.2rem;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.copyright {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
}

.social-bubbles {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
    animation: slideInRight 0.6s ease-out;
}

@keyframes slideInRight {
    from {
        transform: translateX(100px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.social-bubbles .bubble {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    font-size: 36px;
    color: white;
    border: 3px solid #fff;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
    animation: float 3s ease-in-out infinite;
    cursor: pointer;
}

.bubble.instagram {
    color: white;
    background: linear-gradient(135deg, #f58529, #dd2a7b);
    border-color: #f58529;
    animation-delay: 0s;
}

.bubble.instagram:hover {
    background: linear-gradient(135deg, #dd2a7b, #f58529);
    border-color: #fff;
    color: white;
    box-shadow: 0 10px 30px rgba(245, 133, 41, 0.8);
    transform: scale(1.2) rotate(5deg);
    animation: none;
}

.bubble.whatsapp {
    color: white;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-color: #25D366;
    animation-delay: 0.2s;
}

.bubble.whatsapp:hover {
    background: linear-gradient(135deg, #128C7E, #25D366);
    border-color: #fff;
    color: white;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.8);
    transform: scale(1.2) rotate(-5deg);
    animation: none;
}

@media (max-width: 768px) {
    .social-bubbles {
        right: 15px;
        bottom: 15px;
        gap: 12px;
    }
    
    .social-bubbles .bubble {
        width: 60px;
        height: 60px;
        font-size: 30px;
    }
    
    .footer-info {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 600px) {
    .social-bubbles {
        right: 10px;
        bottom: 10px;
        gap: 10px;
    }
    
    .social-bubbles .bubble {
        width: 55px;
        height: 55px;
        font-size: 26px;
    }
}


@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-menu {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }


.servicios-precios-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    border-top: 2px solid #40E0D0;
}

.servicios-precios-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #40E0D0;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.servicios-precios-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #40E0D0, transparent);
}

.servicios-precios-section .servicios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.servicios-precios-section .servicio-item {
    background-color: #1a1a1a;
    border: 2px solid #40E0D0;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(64, 224, 208, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.servicios-precios-section .servicio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(64, 224, 208, 0.4);
}

.servicios-precios-section .servicio-item h4 {
    color: #40E0D0;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.servicios-precios-section .servicio-item p {
    color: #d0d0d0;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.servicios-precios-section .precio {
    background: linear-gradient(135deg, #40E0D0, #3bb8b8);
    color: #fff;
    font-size: 1.2rem;
    font-weight: bold;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(64, 224, 208, 0.3);
}

@media (max-width: 768px) {
    .servicios-precios-section .servicios-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .servicios-precios-section .servicio-item {
        padding: 1.5rem;
    }
    
    .servicios-precios-section .servicio-item h4 {
        font-size: 1.2rem;
    }
    
    .servicios-precios-section .precio {
        font-size: 1.1rem;
        padding: 0.6rem 1.2rem;
    }
}

    .nav-menu a {
        font-size: 0.9rem;
    }

    .logo h1 {
        font-size: 1.5rem;
    }

    .inicio h2 {
        font-size: 2rem;
    }

    .carousel-prev,
    .carousel-next {
        padding: 10px;
        font-size: 14px;
    }

    section h2 {
        font-size: 1.8rem;
    }

    section {
        padding: 2rem 1rem;
    }

    .carousel-container {
        max-width: 100%;
    }

    .galeria {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .lang-switcher button {
        padding: 0.3rem 0.8rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .nav-menu {
        gap: 0.5rem;
        flex-direction: column;
    }

    .logo h1 {
        font-size: 1.2rem;
    }

    .inicio h2 {
        font-size: 1.5rem;
    }

    section h2 {
        font-size: 1.5rem;
    }

    .carousel-dots {
        padding: 1rem 0.5rem;
    }

    .dot {
        height: 10px;
        width: 10px;
        margin: 0 5px;
    }
}


.mini-carousel {
    position: relative;
    width: 100%;
    margin: 0 auto 1rem auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(64, 224, 208, 0.25);
    background: #181818;
    border: 2px solid #40E0D0;
}
.mini-slide {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: none;
    border-radius: 8px;
    transition: opacity 0.5s;
}
.mini-carousel .mini-prev,
.mini-carousel .mini-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -18px;
    padding: 10px;
    color: #40E0D0;
    font-weight: bold;
    font-size: 18px;
    background: rgba(0,0,0,0.5);
    border-radius: 3px;
    user-select: none;
    transition: background 0.3s, color 0.3s;
    z-index: 2;
}
.mini-carousel .mini-prev {
    left: 5px;
}
.mini-carousel .mini-next {
    right: 5px;
}
.mini-carousel .mini-prev:hover,
.mini-carousel .mini-next:hover {
    background: #40E0D0;
    color: #181818;
}


.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90%;
    width: auto;
    height: auto;
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: #bbb;
}

.modal-prev,
.modal-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: #40E0D0;
    font-weight: bold;
    font-size: 18px;
    transition: 0.3s ease;
    border-radius: 3px;
    user-select: none;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.modal-next {
    right: 10px;
}

.modal-prev {
    left: 10px;
}

.modal-prev:hover,
.modal-next:hover {
    background-color: rgba(64, 224, 208, 0.8);
    color: #000;
}


.lang-switcher {
    display: flex;
    gap: 0.5rem;
}
.lang-switcher button {
    background: linear-gradient(135deg, #40E0D0, #3bb8b8);
    color: #fff;
    border: 2px solid #40E0D0;
    border-radius: 5px;
    padding: 0.5rem 1.2rem;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(64, 224, 208, 0.2);
    transition: all 0.3s ease;
}
.lang-switcher button:hover {
    background: #FFD700;
    color: #181818;
    border-color: #FFD700;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}
.lang-switcher button:active {
    transform: translateY(0);
}

.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #fff;
    padding: 2rem;
    max-width: 800px;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 8vw, 4rem);
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: fadeInDown 1s ease-out;
}

.hero-content .subtitle {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    margin-bottom: 2rem;
    color: #40E0D0;
    font-style: italic;
    animation: fadeInUp 1s ease-out 0.3s backwards;
}

.hero-content .description {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    color: #d0d0d0;
    animation: fadeInUp 1s ease-out 0.5s backwards;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.7s backwards;
}

.hero-btn {
    padding: 0.9rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid #40E0D0;
    background: transparent;
    color: #40E0D0;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.hero-btn:hover {
    background: #40E0D0;
    color: #000;
    box-shadow: 0 0 20px rgba(64, 224, 208, 0.5);
}

.hero-btn.primary {
    background: #40E0D0;
    color: #000;
}

.hero-btn.primary:hover {
    background: transparent;
    color: #40E0D0;
}

.carousel-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    gap: 1rem;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.carousel-dot.active {
    background: #40E0D0;
    box-shadow: 0 0 15px rgba(64, 224, 208, 0.8);
}


.galeria-home {
    padding: 5rem 2rem;
    background: linear-gradient(180deg, #0a0a0a 0%, #151515 100%);
}

.galeria-container {
    max-width: 1400px;
    margin: 0 auto;
}

.galeria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.galeria-card {
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.galeria-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: #40E0D0;
    box-shadow: 0 12px 40px rgba(64, 224, 208, 0.3);
}

.galeria-images {
    position: relative;
    overflow: hidden;
    height: 350px;
}

.galeria-main {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, opacity 0.5s ease;
}

.galeria-card:hover .galeria-main {
    transform: scale(1.05);
}

.galeria-preview {
    position: absolute;
    bottom: 10px;
    right: 10px;
    display: flex;
    gap: 5px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.galeria-card:hover .galeria-preview {
    opacity: 1;
}

.galeria-preview img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
    border: 2px solid #40E0D0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

.galeria-info {
    padding: 1.5rem;
    background: linear-gradient(135deg, #1a1a1a, #252525);
}

.galeria-info h3 {
    font-size: 1.5rem;
    color: #40E0D0;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.galeria-info p {
    color: #b0b0b0;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.galeria-count {
    display: inline-block;
    background: rgba(64, 224, 208, 0.15);
    color: #40E0D0;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(64, 224, 208, 0.3);
}

.galeria-cta {
    text-align: center;
    margin-top: 3rem;
}

.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, #40E0D0, #20B2AA);
    color: #000;
    padding: 1rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(64, 224, 208, 0.4);
    border: 2px solid transparent;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #20B2AA, #40E0D0);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(64, 224, 208, 0.6);
    border-color: #FFD700;
}


@media (max-width: 768px) {
    .galeria-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .galeria-images {
        height: 280px;
    }
    
    .galeria-preview img {
        width: 50px;
        height: 50px;
    }
    
    .galeria-info h3 {
        font-size: 1.3rem;
    }
}


.tarifas {
    padding: 5rem 2rem;
    background: #0a0a0a;
}

.tarifas-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    color: #40E0D0;
    text-align: center;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

.section-intro {
    text-align: center;
    color: #d0d0d0;
    margin-bottom: 4rem;
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.tarifas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.tarifa-card {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border: 1px solid #40E0D0;
    border-radius: 8px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(64, 224, 208, 0.1);
}

.tarifa-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(64, 224, 208, 0.25);
    border-color: #FFD700;
}

.tarifa-card h3 {
    font-size: 1.4rem;
    color: #40E0D0;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tarifa-precio {
    font-size: 2.2rem;
    color: #FFD700;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.tarifa-card p {
    color: #d0d0d0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.bloque-importante {
    background: rgba(64, 224, 208, 0.08);
    border-left: 4px solid #40E0D0;
    padding: 2rem;
    border-radius: 8px;
    margin-top: 3rem;
}

.bloque-importante h3 {
    color: #FFD700;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bloque-importante p {
    color: #d0d0d0;
    line-height: 1.7;
    font-size: 0.95rem;
}


.faq {
    padding: 5rem 2rem;
    background: #000000;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background: #2a2a2a;
    border-left: 4px solid #40E0D0;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 20px rgba(64, 224, 208, 0.2);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    border: none;
    color: #40E0D0;
    font-size: 1.05rem;
    font-weight: 600;
    text-align: left;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    user-select: none;
}

.faq-question:hover {
    background: rgba(64, 224, 208, 0.1);
}

.faq-question span:first-child {
    flex: 1;
    padding-right: 1rem;
}

.faq-toggle {
    font-size: 1.5rem;
    color: #40E0D0;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 1.5rem;
    border-top: 1px solid #40E0D0;
}

.faq-answer p {
    color: #d0d0d0;
    line-height: 1.7;
    font-size: 0.95rem;
}


@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-btn {
        width: 100%;
        max-width: 280px;
    }

    .tarifas-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .carousel-controls {
        bottom: 20px;
    }

    .carousel-dot {
        width: 10px;
        height: 10px;
    }

    .faq-question {
        padding: 1.2rem;
        font-size: 0.95rem;
    }

    .section-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 1.5rem;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content .subtitle {
        font-size: 1rem;
    }

    .hero-content .description {
        font-size: 0.9rem;
    }

    .hero-buttons {
        gap: 1rem;
    }

    .tarifas,
    .faq {
        padding: 3rem 1.5rem;
    }

    .section-title {
        font-size: 1.5rem;
    }
}