/* Index Page Specific Styles */
:root {
    --primary-color: #6b7b6c;
    --secondary-color: #d8cdc0;
    --dark-primary: #556155;
    --light-primary: #8a9a8b;
    --text-color: #333333;
    --background-color: #f8f5f2;
    --white-color: #ffffff;
    --transition-slow: 0.5s ease;
    --accent-color: #a47453; /* Nuevo color cobre/marrón */

    --transition-medium: 0.3s ease;
    --transition-fast: 0.2s ease;
    --font-title: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
}

/* Main Content Padding (to account for fixed header) */
main {
    padding-top: 80px; /* Height of the header */
}

/* Button Styles */
.btn {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 30px;
    cursor: pointer;
    transition: all var(--transition-medium);
    letter-spacing: 1px;
}

.btn--primary {
    background-color: var(--primary-color);
    color: var(--white-color);
    border: 2px solid var(--primary-color);
}

.btn--primary:hover {
    background-color: var(--dark-primary);
    border-color: var(--dark-primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(107, 123, 108, 0.3);
}

.btn--secondary {
    background-color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.btn--secondary:hover {
    background-color: #8a6245;
    border-color: #8a6245;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(164, 116, 83, 0.3);
}

.btn--outline {
    background-color: transparent;
    color: var(--white-color);
    border: 2px solid var(--white-color);
}

.btn--outline:hover {
    background-color: var(--white-color);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(255, 255, 255, 0.2);
}

/* Section Styles */
.section-title {
    font-family: var(--font-title);
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
    text-align: center;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--secondary-color);
    margin: 15px auto 0;
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 300;
    color: var(--text-color);
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    max-height: 800px;
    background: url('/img/heroa.jpg') center/cover no-repeat; /* Ruta corregida */
    display: flex;
    align-items: center;
    text-align: left;
    color: var(--white-color);
    overflow: hidden;
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(107, 123, 108, 0.8) 0%, rgba(164, 116, 83, 0.4) 100%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero__content {
    max-width: 600px;
}

.hero__title {
    font-family: var(--font-title);
    font-size: 64px;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 20px;
    margin-top: 20px;
}

.hero__subtitle {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 300;
    line-height: 1.5;
    margin-bottom: 40px;
    max-width: 500px;
}

.hero__cta {
    display: flex;
    gap: 15px;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background-color: var(--background-color);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background-color: rgba(216, 205, 192, 0.15);
    clip-path: polygon(25% 0, 100% 0%, 100% 100%, 0% 100%);
    z-index: 1;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-content {
    padding-right: 30px;
}

.about-content .section-title,
.about-content .section-subtitle {
    text-align: left;
}

.about-content .section-title::after {
    margin-left: 0;
    margin-right: auto;
}

.about-text {
    margin-bottom: 40px;
}

.about-text p {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 20px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.feature {
    display: flex;
    align-items: flex-start;
}

.feature__icon {
    flex: 0 0 40px;
    margin-right: 15px;
}

.feature__content h3 {
    font-family: var(--font-title);
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.feature__content p {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-color);
}

.about-image {
    position: relative;
}

.image-container {
    position: relative;
    padding-bottom: 20px;
    padding-left: 20px;
}

.image-container::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60%;
    height: 60%;
    background-color: var(--secondary-color);
    z-index: -1;
}

.rounded-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background-color: var(--white-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--background-color);
    border-radius: 10px;
    padding: 40px 30px;
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    opacity: 0;
    transition: opacity var(--transition-medium);
    z-index: -1;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-card:hover::before {
    opacity: 0.05;
}

.service-card__icon {
    margin-bottom: 25px;
    transition: transform var(--transition-medium);
}

.service-card:hover .service-card__icon {
    transform: scale(1.1);
}

.service-card__title {
    font-family: var(--font-title);
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-card__list {
    margin-bottom: 20px;
}

.service-card__list li {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text-color);
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.service-card__list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-size: 20px;
}

.service-card__description {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 25px;
}

.service-card__link {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    color: var(--primary-color);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: color var(--transition-fast);
}

.service-card__link::after {
    content: '→';
    margin-left: 8px;
    transition: transform var(--transition-fast);
}

.service-card__link:hover {
    color: var(--dark-primary);
}

.service-card__link:hover::after {
    transform: translateX(5px);
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background-color: var(--primary-color);
    color: var(--white-color);
}

.testimonials-section .section-title {
    color: var(--white-color);
}

.testimonials-section .section-title::after {
    background-color: var(--secondary-color);
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 40px 30px;
    transition: transform var(--transition-medium);
}

.testimonial-card:hover {
    transform: translateY(-10px);
}

.testimonial-card__quote {
    margin-bottom: 20px;
}

.testimonial-card__text {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
}

.testimonial-card__avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    border: 2px solid var(--secondary-color);
}

.testimonial-card__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-card__info h4 {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 5px;
}

.testimonial-card__info p {
    font-family: var(--font-body);
    font-size: 14px;
    opacity: 0.8;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background-color: var(--background-color);
}

.cta-card {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    border-radius: 15px;
    padding: 60px 40px;
    text-align: center;
    color: var(--white-color);
    box-shadow: 0 20px 40px rgba(107, 123, 108, 0.2);
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/img/heroa.jpg') center/cover no-repeat; /* Ruta corregida */
    opacity: 0.05;
    z-index: 1;
}

.cta-card__title {
    font-family: var(--font-title);
    font-size: 36px;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.cta-card__text {
    font-family: var(--font-body);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 30px;
    position: relative;
    z-index: 2;
}

.cta-card__buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    position: relative;
    z-index: 2;
}

/* Hero Section with Pure CSS Design Styles - VERSIÓN MEJORADA */
.hero-design {
    position: relative;
    /* Altura base adaptativa */
    min-height: 100vh;
    min-height: 100dvh; /* Para navegadores modernos */
    
    /* Alturas específicas por dispositivo */
    height: clamp(600px, 100vh, 1200px);
    
    overflow: hidden;
    color: var(--white-color);
    display: flex;
    align-items: center;
    
    /* Fallback para navegadores más antiguos */
    height: 100vh;
    height: 100dvh;
}

/* Soporte para diferentes viewports */
@supports (height: 100dvh) {
    .hero-design {
        height: 100dvh;
        min-height: 600px;
        max-height: 1200px;
    }
}

/* Background Design */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #56664e 0%, #8a9a8b 50%, #6b7b6c 100%);
    overflow: hidden;
    z-index: -1;
}

.pattern-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.05) 0%, transparent 10%),
        radial-gradient(circle at 70% 60%, rgba(255, 255, 255, 0.05) 0%, transparent 20%),
        radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 15%),
        radial-gradient(circle at 80% 10%, rgba(255, 255, 255, 0.05) 0%, transparent 15%);
    opacity: 0.8;
}

/* Abstract Shapes */
.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(50px);
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(216, 205, 192, 0.7) 0%, rgba(216, 205, 192, 0) 70%);
    top: -200px;
    left: -200px;
    animation: float-slow 15s ease-in-out infinite alternate;
}

.shape-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(164, 116, 83, 0.6) 0%, rgba(164, 116, 83, 0) 70%);
    bottom: -200px;
    right: -100px;
    animation: float-slow 20s ease-in-out infinite alternate-reverse;
}

.shape-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 70%);
    top: 20%;
    right: 10%;
    animation: pulse 10s ease-in-out infinite;
}

.shape-4 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(216, 205, 192, 0.4) 0%, rgba(216, 205, 192, 0) 70%);
    bottom: 25%;
    left: 15%;
    animation: float-slow 12s ease-in-out infinite;
}

.shape-5 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(90, 112, 88, 0.6) 0%, rgba(90, 112, 88, 0) 70%);
    top: 40%;
    left: 30%;
    animation: float-slow 18s ease-in-out infinite alternate;
}

.shape-6 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(164, 116, 83, 0.3) 0%, rgba(164, 116, 83, 0) 70%);
    bottom: 0%;
    left: 50%;
    animation: float-slow 25s ease-in-out infinite alternate-reverse;
}

/* Content Layout */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    height: 100%;
    position: relative;
    z-index: 1;
    padding: 20px 0;
}

/* Opening Banner */
.opening-banner {
    background: linear-gradient(135deg, #d8cdc0 0%, #f5efe8 100%);
    border-radius: 10px;
    padding: 20px 25px;
    margin-bottom: 30px;
    display: inline-block;
    transform: rotate(-2deg);
    box-shadow: 
        0 10px 25px rgba(0, 0, 0, 0.1),
        0 2px 10px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: visible;
}

.opening-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

.opening-title {
    font-family: var(--font-title);
    color: var(--primary-color);
    font-size: 42px;
    margin: 0;
    line-height: 1.1;
}

.opening-subtitle {
    font-family: var(--font-body);
    color: var(--primary-color);
    font-size: 20px;
    margin: 5px 0 0;
}

/* Nuevo cartel de horarios */
.schedule-banner {
    background: linear-gradient(135deg, #a47453 0%, #8a6245 100%);
    border-radius: 8px;
    padding: 10px 18px;
    position: absolute;
    bottom: -35px;
    right: -35px;
    transform: rotate(3deg);
    box-shadow: 
        0 8px 20px rgba(0, 0, 0, 0.15),
        0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 2;
    overflow: hidden;
    white-space: nowrap;
}

.schedule-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transform: rotate(45deg);
    animation: shine 4s infinite;
    animation-delay: 1s;
}

.schedule-text {
    font-family: var(--font-body);
    color: var(--white-color);
    font-size: 14px;
    font-weight: 600;
    margin: 0;
    line-height: 1.2;
    position: relative;
    z-index: 1;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Hero Content */
.hero__title {
    font-family: var(--font-title);
    font-size: 64px;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(to right, #ffffff, #f5efe8);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.hero__subtitle {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 300;
    line-height: 1.5;
    margin-bottom: 40px;
    max-width: 500px;
    color: rgba(255, 255, 255, 0.9);
}

.hero__cta {
    display: flex;
    gap: 15px;
}

/* Promotion Cards */
.promo-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.promo-card {
    background: linear-gradient(135deg, #d8cdc0 0%, #f5efe8 100%);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1), 0 2px 10px rgba(0, 0, 0, 0.05);
    animation: float 6s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.promo-card::after {
    content: '';
    position: absolute;
    opacity: 0.5;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.03), transparent);
    background-size: 200% 200%;
    animation: shimmer 3s infinite;
}

.promo-offers {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.promo-offer {
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 15px;
}

.promo-offer:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.percentage-container {
    display: flex;
    align-items: flex-start;
}

.promo-percentage {
    font-family: var(--font-title);
    font-size: 60px;
    color: var(--primary-color);
    line-height: 1;
    font-weight: 600;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    position: relative;
}

.percentage-symbol {
    display: flex;
    flex-direction: column;
    margin-left: 5px;
    margin-top: 8px;
}

.percentage-symbol span:first-child {
    font-family: var(--font-body);
    font-size: 24px;
    color: var(--primary-color);
    line-height: 1;
}

.percentage-symbol span:last-child {
    font-family: var(--font-body);
    font-size: 20px;
    color: var(--primary-color);
    line-height: 1;
    margin-top: 3px;
}

.promo-description {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--primary-color);
    margin: 0 0 0 15px;
}

/* Gift Card */
.gift-card {
    background: #b2245b;
    border-radius: 15px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 
        0 15px 30px rgba(0, 0, 0, 0.15),
        0 5px 15px rgba(0, 0, 0, 0.1);
    animation: float 6s ease-in-out infinite;
    animation-delay: 0.5s;
    position: relative;
    overflow: hidden;
}

.gift-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    background-size: 200% 200%;
    animation: shimmer 3s infinite;
    animation-delay: 1s;
}

.gift-icon {
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.gift-text p {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--white-color);
    margin: 0;
    line-height: 1.4;
    position: relative;
    z-index: 1;
}

/* Título de promociones */
.promo-title {
    text-align: center !important;
    margin-bottom: 25px !important;
    background: linear-gradient(135deg, #a47453 0%, #8a6245 100%) !important;
    padding: 15px 20px !important;
    border-radius: 25px !important;
    margin-bottom: 25px !important;
    position: relative !important;
    overflow: hidden !important;
    box-shadow: 0 5px 15px rgba(107, 123, 108, 0.2) !important;
}

.promo-title::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: -100% !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent) !important;
    animation: shine-title 3s infinite !important;
}

.promo-title h3 {
    font-family: var(--font-title) !important;
    font-size: 32px !important;
    color: var(--white-color) !important;
    margin: 0 !important;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3) !important;
    position: relative !important;
    z-index: 1 !important;
    font-weight: 600 !important;
}

.promo-offers {
    display: flex !important;
    flex-direction: column !important;
    gap: 25px !important;
    position: relative !important;
    z-index: 1 !important;
}

.promo-offer {
    display: flex !important;
   /* justify-content: space-between !important; */
    align-items: flex-start !important;
    border-bottom: 1px solid rgba(107, 123, 108, 0.2) !important;
    padding-bottom: 20px !important;
    gap: 15px !important;
}

.promo-offer:last-child {
    border-bottom: none !important;
    padding-bottom: 0 !important;
}

.promo-service {
    flex: 1 !important;
}

.service-name {
    font-family: var(--font-title) !important;
    font-size: 28px !important;
    color: var(--primary-color) !important;
    margin: 0 0 8px 0 !important;
    line-height: 1.2!important;
    font-weight: 600 !important;
}

.service-description {
    font-family: var(--font-body) !important;
    font-size: 18px !important;
    color: var(--primary-color) !important;
    margin: 0 !important;
    opacity: 0.8 !important;
    line-height: 1.3 !important;
}

.price-container {
    flex-shrink: 0 !important;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-primary) 100%) !important;
    border-radius: 50px !important;
    padding: 15px 25px !important;
    box-shadow: 0 5px 15px rgba(107, 123, 108, 0.3) !important;
    transform: rotate(-3deg) !important;
}

.promo-price {
    font-family: var(--font-title) !important;
    font-size: 32px !important;
    color: var(--white-color) !important;
    font-weight: 700 !important;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2) !important;
    display: block !important;
    text-align: center !important;
}

/* Animaciones */
@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes float-slow {
    0% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(10px, -15px);
    }
    100% {
        transform: translate(0, 0);
    }
}

@keyframes pulse {
    0% {
        opacity: 0.4;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
    100% {
        opacity: 0.4;
        transform: scale(1);
    }
}

@keyframes shimmer {
    0% {
        background-position: -100% -100%;
    }
    100% {
        background-position: 100% 100%;
    }
}

@keyframes shine {
    0% {
        left: -100%;
        opacity: 0;
    }
    20% {
        left: 100%;
        opacity: 0.3;
    }
    100% {
        left: 100%;
        opacity: 0;
    }
}

@keyframes shine-title {
    0% {
        left: -100% !important;
    }
    100% {
        left: 100% !important;
    }
}

/* Media Queries MEJORADAS PARA HERO DESIGN */

/* Pantallas muy grandes (1440px+) */
@media (min-width: 1440px) {
    .hero-design {
        height: clamp(700px, 90vh, 1000px);
        max-height: 1000px;
    }
}

/* Pantallas grandes (1200px - 1439px) */
@media (min-width: 1200px) and (max-width: 1439px) {
    .hero-design {
        height: clamp(650px, 85vh, 900px);
        max-height: 900px;
    }
}

/* Tablets landscape y desktop pequeño (993px - 1199px) */
@media (min-width: 993px) and (max-width: 1199px) {
    .hero-design {
        height: clamp(800px, 100vh, 800px);
        max-height: 800px;
    }
}

/* Tablets y pantallas medianas (769px - 992px) */
@media (min-width: 769px) and (max-width: 992px) {
    .hero-design {
        height: auto;
        min-height: clamp(700px, 100vh, 900px);
        max-height: none;
        padding: 60px 0;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 40px 0;
    }
    
    .opening-banner {
        margin-bottom: 20px;
    }
    
    .opening-title {
        font-size: 36px;
    }
    
    .hero__title {
        font-size: 48px;
    }
    
    .promo-title h3 {
        font-size: 28px !important;
    }
    
    .promo-title {
        padding: 12px 18px !important;
    }
    
    .service-name {
        font-size: 26px !important;
    }
    
    .promo-price {
        font-size: 28px !important;
    }
    
    .price-container {
        padding: 12px 20px !important;
    }
}

/* Móviles landscape y tablets pequeñas (577px - 768px) */
@media (min-width: 577px) and (max-width: 768px) {
    .hero-design {
        height: auto;
        min-height: clamp(800px, 120vh, 1000px);
        max-height: none;
        padding: 40px 0;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 30px 0;
    }
    
    .promo-card, .gift-card {
        padding: 20px;
    }
    
    .hero__title {
        font-size: 40px;
    }
    
    .hero__subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .schedule-banner {
        padding: 8px 15px;
        bottom: -30px;
        right: -30px;
    }
    
    .schedule-text {
        font-size: 12px;
    }
    
    .promo-title h3 {
        font-size: 26px !important;
    }
    
    .promo-title {
        padding: 10px 15px !important;
    }
    
    .service-name {
        font-size: 24px !important;
    }
    
    .service-description {
        font-size: 15px !important;
    }
    
    .promo-price {
        font-size: 24px !important;
    }
    
    .price-container {
        padding: 10px 18px !important;
    }
    
    .promo-offer {
        flex-direction: column !important;
        gap: 15px !important;
        text-align: left !important;
    }
    
    .price-container {
        align-self: flex-end !important;
        transform: rotate(-2deg) !important;
    }
}

/* Móviles portrait (hasta 576px) */
@media (max-width: 576px) {
    .hero-design {
        height: auto;
        min-height: clamp(900px, 140vh, 1200px);
        max-height: none;
        padding: 30px 0 40px;
    }
    
    main {
        padding-top: 70px;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px 0;
    }
    
    .opening-title {
        font-size: 30px;
    }
    
    .opening-subtitle {
        font-size: 16px;
    }
    
    .hero__title {
        font-size: 32px;
    }
    
    .hero__subtitle {
        font-size: 15px;
        margin-bottom: 25px;
    }
    
    .gift-card {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .hero__cta {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .schedule-banner {
        padding: 7px 12px;
        bottom: -25px;
        right: -25px;
    }
    
    .schedule-text {
        font-size: 11px;
    }
    
    .promo-title h3 {
        font-size: 24px !important;
    }
    
    .promo-title {
        padding: 8px 12px !important;
    }
    
    .service-name {
        font-size: 22px !important;
    }
    
    .service-description {
        font-size: 15px !important;
    }
    
    .promo-price {
        font-size: 22px !important;
    }
    
    .price-container {
        padding: 8px 15px !important;
    }
}

/* Móviles muy pequeños (hasta 400px) */
@media (max-width: 400px) {
    .hero-design {
        min-height: clamp(1000px, 150vh, 1300px);
        padding: 20px 0 30px;
    }
    
    .opening-title {
        font-size: 26px;
    }
    
    .hero__title {
        font-size: 28px;
    }
    
    .hero__subtitle {
        font-size: 14px;
    }
}

/* Pantallas con orientación landscape en móviles */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-design {
        height: auto;
        min-height: 100vh;
        max-height: none;
        padding: 20px 0;
    }
    
    .hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        align-items: flex-start;
    }
    
    .opening-banner {
        margin-bottom: 15px;
    }
    
    .hero__title {
        font-size: 36px;
        margin-bottom: 15px;
    }
    
    .hero__subtitle {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .promo-container {
        gap: 15px;
    }
    
    .promo-card, .gift-card {
        padding: 15px;
    }
}

/* Para dispositivos con notch o áreas seguras */
@supports (padding: max(0px)) {
    .hero-design {
        padding-top: max(100px, env(safe-area-inset-top));
        padding-bottom: max(100px, env(safe-area-inset-bottom));
    }
}

/* Media Queries ORIGINALES (para el resto de secciones) */
@media (max-width: 992px) {
    .hero__title {
        font-size: 54px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-content {
        padding-right: 0;
    }
    
    .section-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .testimonials-slider {
        grid-template-columns: 1fr;
    }
    
    .cta-card {
        padding: 40px 30px;
    }
    
    .cta-card__title {
        font-size: 30px;
    }
    
    .cta-card__text {
        font-size: 16px;
    }
    
    .cta-card__buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .about-section::before {
        width: 100%;
        height: 40%;
        bottom: 0;
        top: auto;
        clip-path: polygon(0 30%, 100% 0, 100% 100%, 0% 100%);
    }
}

@media (max-width: 576px) {
    .hero {
        min-height: 500px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
}

/* Opción 2: Banner inline debajo del subtitle */
.products-banner-subtitle {
    margin: 20px 0 30px 0;
}

.products-link-inline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    padding: 8px 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    backdrop-filter: blur(10px);
background: linear-gradient(135deg, #a47453 0%, #8a6245 100%);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.products-link-inline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transition: left 0.5s ease;
}

.products-link-inline:hover::before {
    left: 100%;
}

.products-link-inline:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--white-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.1);
}

.products-text-inline {
    white-space: nowrap;
}

.products-arrow {
    transition: transform 0.3s ease;
    font-size: 14px;
}

.products-link-inline:hover .products-arrow {
    transform: translateX(3px);
}

/* Media queries para la opción 2 */
@media (max-width: 992px) {
    .products-banner-subtitle {
        margin: 18px 0 25px 0;
    }
    
    .products-link-inline {
        font-size: 15px;
        padding: 7px 14px;
    }
}

@media (max-width: 768px) {
    .products-banner-subtitle {
        margin: 15px 0 20px 0;
    }
    
    .products-link-inline {
        font-size: 15px;
        padding: 6px 12px;
    }
    
    .products-text-inline {
        white-space: normal;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .products-banner-subtitle {
        margin: 12px 0 18px 0;
        text-align: center;
    }
    
    .products-link-inline {
        font-size: 14px;
        width: 100%;
        justify-content: center;
        padding: 8px 15px;
    }
}

@media (max-width: 400px) {
    .products-link-inline {
        font-size: 13px;
        padding: 6px 12px;
    }
}