/* Reset y Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #333;
    --accent-color: #196b4d;
    --accent-color-light: #196b4d93;
    --text-light: #BEC2C3;
    --text-dark: #1a1a1a;
    --text-gray: #888;
    --bg-dark: #0a0a0a;
    --bg-light: #f8f8f8;
    --border-color: #333;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    --shadow-light: 0 5px 15px rgba(0, 0, 0, 0.1);

    --accent-color-2: #196b4d;
    --primary-color-2: #342B2E;
    --secondary-color-2: #757A7D;
    --accent-color-2: #C7DBD4;
    --text-light-2: #BEC2C3;
    --text-dark-2: #1a1a1a;
    --text-gray-2: #7C8F88;
    --bg-dark-2: #4A5551;
    --bg-light-2: #BDC1C2;
    --border-color-2: #333;
    --shadow-2: 0 10px 30px rgba(52, 43, 46, 0.3);
    --shadow-light-2: 0 5px 15px rgba(52, 43, 46, 0.1);
    --plateado: #686868cd;
}
video {
    filter: blur(10px);
}

html {
    scroll-behavior: smooth;
    user-select: none;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background-color: var(--bg-dark);
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #243f35 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
}

.logo-icon {
    font-size: 2rem;
    margin-right: 1rem;
    height: 64px;
    transition: all 0.3s ease;
    img {
        width: 14rem;
        height: 10rem;
        object-fit: cover;
        transition: all 0.3s ease;
        /* outline: 2px solid white; */
         filter:
        drop-shadow(1px 0 0 white)
        drop-shadow(-1px 0 0 white)
        drop-shadow(0 1px 0 white)
        drop-shadow(0 -1px 0 white)
        drop-shadow(1px 1px 0 white)
        drop-shadow(-1px -1px 0 white)
        drop-shadow(1px -1px 0 white)
        drop-shadow(-1px 1px 0 white);
    }
}

/* Estado cuando se hace scroll hacia abajo */
.header.scrolled .logo-icon {
    transform: translateY(-20px);
    img {
        width: 8rem;
        height: 6rem;
    }
}

.logo-icon-footer {
    font-size: 2rem;
    margin-right: 1rem;
    margin-left: -10rem;
    img {
        width: 10rem;
        height: 7.5rem;
        object-fit: cover;
        /* outline: 2px solid white; */
         filter:
        drop-shadow(1px 0 0 white)
        drop-shadow(-1px 0 0 white)
        drop-shadow(0 1px 0 white)
        drop-shadow(0 -1px 0 white)
        drop-shadow(1px 1px 0 white)
        drop-shadow(-1px -1px 0 white)
        drop-shadow(1px -1px 0 white)
        drop-shadow(-1px 1px 0 white);
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: var(--accent-color);
}

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

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

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    margin: 3px 0;
    transition: 0.3s;
}

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

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(10, 10, 10, 0.8) 0%,
        rgba(26, 26, 26, 0.6) 50%,
        rgba(10, 10, 10, 0.8) 100%
    );
    z-index: -1;
}

.hero-content {
    z-index: 1;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    -webkit-text-stroke: 0.5px #2a5a48;
    background: linear-gradient(135deg, #243f35 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px var(--accent-color-light);
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
    font-weight: 300;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-cta {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-color-light) 100%);
    color: var(--text-light);
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px var(--accent-color-light);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--accent-color);
}

.btn-secondary:hover {
    background: var(--accent-color);
    color: var(--text-dark);
    transform: translateY(-3px);
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator {
    width: 2px;
    height: 30px;
    background: var(--accent-color);
    position: relative;
}

.scroll-indicator::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--accent-color);
    border-radius: 50%;
}

/* Services Section */
.services {
    padding: 0 0 6rem 0;
    background: var(--bg-dark);
}

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

.service-card {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--plateado), transparent);
    transition: left 0.5s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
    border-color: var(--accent-color);
}

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

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

.service-card p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.price {
    display: inline-block;
    background: var(--accent-color);
    color: var(--text-dark);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.2rem;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: var(--primary-color);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    padding-right: 2rem;
}

.about-description {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-stats {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    font-family: 'Playfair Display', serif;
}

.stat-label {
    color: var(--text-gray);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-image {
    position: relative;
}

/* Carrusel Styles */
.carousel-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: var(--primary-color);
}

.carousel-slides {
    position: relative;
    width: 100%;
    height: 550px;
    overflow: hidden;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.6s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    h3 {
        background: radial-gradient(
            ellipse at center,
            rgba(0, 0, 0, 0.7) 0%,
            rgba(0, 0, 0, 0.5) 30%,
            rgba(0, 0, 0, 0.3) 60%,
            transparent 100%
        ); 
        backdrop-filter: blur(10px);
        width: auto;
        margin: 0 -60px;
        -webkit-text-stroke: 0.2px #4f4f4f;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
        border-radius: 8px;
    }
}

.carousel-slide.active {
    opacity: 1;
    transform: translateX(0);
}

.carousel-slide.prev {
    transform: translateX(-100%);
}

.carousel-slide {
    img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center 40%;
        transition: transform 0.3s ease;
    }
}
.more-up img {
    object-position: center 21% !important;
}

.more-down img {
    object-position: center 55% !important;

}


.carousel-slide:hover img {
    transform: scale(1.05);
}

.carousel-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--text-light);
    padding: 2rem;
    text-align: center;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.carousel-slide.active .carousel-overlay {
    transform: translateY(0);
}

.carousel-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
    font-family: 'Playfair Display', serif;
}

.carousel-overlay p {
    font-size: 1rem;
    opacity: 0.9;
}

/* Controles del carrusel */
.carousel-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    pointer-events: none;
}

.carousel-btn {
    background: rgba(0, 0, 0, 0.7);
    color: var(--text-light);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.carousel-btn:hover {
    background: var(--accent-color);
    color: var(--text-dark);
    transform: scale(1.1);
    border-color: var(--accent-color);
}

.carousel-btn:active {
    transform: scale(0.95);
}

.carousel-btn i {
    font-size: 1.2rem;
}

/* Indicadores del carrusel */
.carousel-indicators {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.indicator.active {
    background: var(--accent-color);
    border-color: var(--text-light);
    transform: scale(1.2);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.1);
}

.indicator.active:hover {
    background: var(--accent-color);
}

/* Location Section */
.location {
    padding: 6rem 0;
    background: var(--bg-dark);
}

.location-content {
    max-width: 800px;
    margin: 0 auto;
}

.location-info {
    display: grid;
    gap: 3rem;
}

.address-card {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    text-align: center;
}

.address-card h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--accent-color);
    font-family: 'Playfair Display', serif;
}

.address-card p {
    color: var(--text-gray);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.address-card i {
    color: var(--accent-color);
    margin-right: 0.5rem;
    width: 20px;
}

.map-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: var(--primary-color);
}

.contact-content-centered {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

.contact-card-centered {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    text-align: center;
    max-width: 500px;
    width: 100%;
}

.contact-card-centered h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
    font-family: 'Playfair Display', serif;
}

.contact-card-centered p {
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
    font-size: 1.1rem;
}

/* Botón Booksy */
.btn-booksy {
    display: inline-flex;
    align-items: center;
    width: 10rem;
    gap: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #09939d 0%, #4c95ad 50%);
    color: white;
    margin-top: 1rem;
    margin-bottom: 1rem;
    padding: 0.9rem 1.8rem;

}

.btn-booksy .booksy-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
    opacity: 1;
    filter: brightness(1.2) contrast(1.1);
     border-radius:50%;
}

.btn-booksy:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, #08838b 0%, #44859b 50%);
    box-shadow: 0 0 27px rgba(30, 64, 175, 0.4);
}

/* Separador */
.separator {
    position: relative;
    margin: 2rem 0;
    text-align: center;
}

.separator::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--border-color);
}

.separator span {
    background: var(--primary-color);
    color: var(--text-gray);
    padding: 0 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

/* Métodos de contacto centrados */
.contact-methods-centered {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    text-decoration: none;
    color: var(--text-light);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.contact-method:hover {
    background: var(--plateado);
    border-color: var(--accent-color);
    transform: translateX(10px);
}

.contact-method i {
    font-size: 1.5rem;
    width: 30px;
    text-align: center;
}

.contact-method span {
    font-weight: 600;
    font-size: 1.1rem;
}

.contact-method small {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.contact-method.whatsapp i {
    color: #25d366;
}

.contact-method.instagram i {
    color: #e4405f;
}

.contact-method.phone i {
    color: var(--accent-color);
}


/* Footer */
.footer {
    background: var(--bg-dark);
    padding: 3rem 0;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
}

.footer-info {
    text-align: center;
    color: var(--text-gray);
}

.footer-info p {
    margin-bottom: 0.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    color: var(--text-light);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.footer-social a:hover {
    background: var(--accent-color);
    color: var(--text-dark);
    transform: translateY(-3px);
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Responsive Design */

/* Tablet y móviles grandes */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .section-title {
        font-size: 2.8rem;
    }
    
    .about-content {
        gap: 3rem;
    }
    
    .contact-content-centered {
        min-height: 350px;
    }
    
    .contact-card-centered {
        padding: 2.5rem;
    }
}

/* Tablets */
@media (max-width: 768px) {
    .container {
        padding: 0 25px;
    }
    
    .nav {
        padding: 1rem 1.5rem;
    }
    
    .nav-menu {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        width: 100vw;
        max-width: 100%;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 1.5rem;
        border-top: 1px solid var(--border-color);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
        box-sizing: border-box;
    }
    
    .nav-menu.active {
        display: flex;
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero-title {
        font-size: 3rem;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-text {
        padding-right: 0;
        order: 2;
    }
    
    .about-image {
        order: 1;
    }
    
    /* Efecto del logo en tablets */
    .header.scrolled .logo-icon {
        transform: translateY(-18px);
        img {
            width: 6rem;
            height: 4.5rem;
        }
    }
    
    .contact-content-centered {
        min-height: 300px;
    }
    
    .contact-card-centered {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .btn-booksy {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 2rem;
    }
    
    .address-card {
        padding: 2rem;
    }
    
    .contact-card-centered {
        padding: 1.8rem;
    }
    
    .btn-booksy {
        padding: 0.9rem 1.8rem;
        font-size: 0.95rem;
    }
}

/* Móviles grandes */
@media (max-width: 640px) {
    .container {
        padding: 0 20px;
    }
    
    .nav {
        padding: 1rem;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .services-grid {
        gap: 1rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .carousel-slides {
        height: 300px;
    }
    
    .address-card {
        padding: 1.5rem;
    }
    
    .contact-card-centered {
        padding: 1.5rem;
        margin: 0 0.5rem;
    }
    
    .btn-booksy {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Móviles pequeños */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .nav {
        padding: 0.8rem 1rem;
    }
    
    .nav-menu {
        top: 60px;
        padding: 1rem;
    }
    
    .nav-logo {
        font-size: 1.2rem;
    }
    
    .logo-icon img {
        width: 5rem;
        height: 3.5rem;
    }
    
    .logo-icon {
        transform: translateY(-10px);
        img {
                width: 7rem;
                height: 5rem;
            }
    }
    /* Logo fijo en móviles - sin efecto de movimiento */
    .footer-content {
        .logo-icon-footer {
            transform: translateX(65px);
          
        }
        span {
            transform: translateX(55px);
        }
    }


    
    /* Desactivar efecto de scroll en móviles */
    .header.scrolled .logo-icon {
        transform: translateY(-15px);
        img {
            width: 4rem;
            height: 3rem;
        }
    }
    
    .hero {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 0.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-cta {
        gap: 0.8rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .btn-booksy {
        width: 9rem;
    }
    
    .btn-booksy .booksy-logo {
        width: 18px;
        height: 18px;
        opacity: 1;
        filter: brightness(1.2) contrast(1.1);
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .services {
        padding: 4rem 0;
    }
    
    .service-card {
        padding: 1.2rem;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
    }
    
    .service-card p {
        font-size: 0.9rem;
    }
    
    .price {
        font-size: 1rem;
        padding: 0.4rem 1rem;
    }
    
    .about {
        padding: 4rem 0;
    }
    
    .about-description {
        font-size: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .location {
        padding: 4rem 0;
    }
    
    .address-card h3 {
        font-size: 1.5rem;
    }
    
    .address-card p {
        font-size: 1rem;
    }
    
    .contact {
        padding: 4rem 0;
    }
    
    .contact-card h3 {
        font-size: 1.5rem;
    }
    
    .contact-method {
        padding: 0.8rem;
    }
    
    .contact-method span {
        font-size: 1rem;
    }
    
    .contact-method small {
        font-size: 0.8rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    
    .footer {
        padding: 2rem 0;
    }
    
    .footer-logo {
        font-size: 1.2rem;
    }
    
    .footer-info p {
        font-size: 0.9rem;
    }
    
    .footer-social a {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

/* Móviles muy pequeños */
@media (max-width: 360px) {
    .container {
        padding: 0 10px;
    }
    
    .nav-menu {
        top: 55px;
        padding: 0.8rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .service-card {
        padding: 1rem;
    }
    
    .about-description {
        font-size: 0.9rem;
    }
    
    .address-card {
        padding: 1rem;
    }
    
    .contact-card-centered {
        padding: 1rem;
        margin: 0 0.25rem;
    }
    
    .btn-booksy {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .contact-card-centered h3 {
        font-size: 1.5rem;
    }
    
    .contact-card-centered p {
        font-size: 1rem;
    }
    
    .btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.8rem;
    }
} 

/* Landscape móvil */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 2rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-cta {
        flex-direction: row;
        gap: 1rem;
    }
    
    .btn {
        width: auto;
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }
}

/* Mejoras para el menú móvil */
@media (max-width: 768px) {
    .nav-menu {
        overflow-x: hidden;
        overflow-y: auto;
        max-height: calc(100vh - 70px);
    }
    
    .nav-menu li {
        margin: 0.5rem 0;
        width: 100%;
    }
    
    .nav-menu a {
        display: block;
        padding: 0.8rem 1rem;
        font-size: 1.1rem;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
        box-sizing: border-box;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .nav-menu a:last-child {
        border-bottom: none;
    }

    .carousel-overlay {
        padding-bottom: 30px !important;
        h3 {
            margin-bottom: 5px;
        }
    }
}

/* Mejoras para el video en móvil */
@media (max-width: 768px) {
    .hero-video-bg video {
        object-position: center center;
    }
    
    .hero-overlay {
        background: linear-gradient(
            135deg,
            rgba(10, 10, 10, 0.9) 0%,
            rgba(26, 26, 26, 0.7) 50%,
            rgba(10, 10, 10, 0.9) 100%
        );
    }
}

/* Mejoras para el mapa en móvil */
@media (max-width: 768px) {
    .map-container {
        height: 250px;
    }
}

/* Mejoras para el formulario en móvil */
@media (max-width: 768px) {
    .form-group textarea {
        resize: vertical;
        min-height: 100px;
    }
}

/* Mejoras para el carrusel en móvil */
@media (max-width: 768px) {
    .carousel-controls {
        padding: 0 0.5rem;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
    
    .carousel-btn i {
        font-size: 1rem;
    }
    
    .carousel-overlay {
        padding: 1.5rem;
    }
    
    .carousel-overlay h3 {
        font-size: 1.2rem;
    }
    
    .carousel-overlay p {
        font-size: 0.9rem;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .carousel-slides {
        height: 250px;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
    }
    
    .carousel-btn i {
        font-size: 0.8rem;
    }
    
    .carousel-overlay {
        padding: 1rem;
    }
    
    .carousel-overlay h3 {
        font-size: 1rem;
    }
    
    .carousel-overlay p {
        font-size: 0.8rem;
    }
    
    .indicator {
        width: 8px;
        height: 8px;
    }
}
