/* SECCIÓN ANCHORS COMBINADOS */

body, html {
    overflow-x: hidden !important;
}

.combinados-anchors-section {
    background-color: #f8f9fa;
    padding: 0px 0;
}

/* Contenedor de fondo con imagen - DENTRO del container */
.combinados-anchors-section .container {
    position: relative;
    background-image: url('/assets/img/Combinados/combinados2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
}

/* Overlay para mejor legibilidad */
.combinados-anchors-section .container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

/* Contenedor de los anchors */
.anchors-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 40px;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
}

/* Botones anchor base */
.anchor-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    padding: 20px;
    min-width: 300px;
    text-align: center;
    position: relative;
    /* SIN bordes ni efectos extras */
}

/* Botón Exótica - Azul con opacidad */
.anchor-exotica {
    background: rgba(0, 105, 156, 0.8); /* #00699C con 80% opacidad */
}

.anchor-exotica:hover {
    background: rgba(0, 105, 156, 0.9);
    transform: translateY(-2px);
}

/* Botón Light - Blanco con opacidad */
.anchor-light {
    background: rgba(255, 255, 255, 0.8); /* Blanco con 80% opacidad */
}

.anchor-light:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

/* Texto del anchor */
.anchor-text {
    font-family: 'Highrise', 'Montserrat', sans-serif;
    font-size: 50px;
    font-weight: 400;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    line-height: 1.2;
}

.textSmoll{
    font-size: 30px;
}

/* Color de texto para botón azul */
.anchor-exotica .anchor-text,
.anchor-exotica .anchor-arrow {
    color: white;
}

/* Color de texto para botón blanco */
.anchor-light .anchor-text,
.anchor-light .anchor-arrow {
    color: #00699C;
}

/* Flecha */
.anchor-arrow {
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 300;
    transition: transform 0.3s ease;
}

.anchor-button:hover .anchor-arrow {
    transform: translateY(3px);
}

/* Estados de focus para accesibilidad */
.anchor-button:focus {
    outline: 3px solid rgba(0, 105, 156, 0.6);
    outline-offset: 4px;
}

/* RESPONSIVE DESIGN */

/* Tablet grande */
@media (max-width: 1200px) {
    .combinados-anchors-section {
        padding: 70px 0;
    }
    
    .combinados-anchors-section .container {
        min-height: 40vh;
        padding: 70px 20px;
    }
    
    .anchors-wrapper {
        gap: 35px;
    }
    
    .anchor-button {
        min-width: 280px;
        padding: 10px;
    }
}

/* Tablet */
@media (max-width: 991px) {
    .combinados-anchors-section {
        padding: 60px 0;
    }
    
    .combinados-anchors-section .container {
        min-height: 40vh;
        padding: 60px 15px;
    }
    
    .anchors-wrapper {
        gap: 30px;
    }
    
    .anchor-button {
        min-width: 250px;
        padding: 10px;
    }
}

/* Móvil grande */
@media (max-width: 768px) {
    .combinados-anchors-section {
        padding: 50px 0;
    }
    
    .combinados-anchors-section .container {
        min-height: 30vh;
        padding: 50px 15px;
       
    }
    
    .anchors-wrapper {
        gap: 25px;
    }
    
    .anchor-button {
        min-width: 200px;
        padding: 10px;
    }
    
    .anchor-text {
        font-size: clamp(2.0rem, 3vw, 1.6rem);
        letter-spacing: 0.03em;
      
    }

     .textSmoll{
       font-size:20px;
    }
    
    .anchor-arrow {
        font-size: clamp(1.8rem, 4vw, 2.3rem);
    }
}

/* Móvil */
@media (max-width: 480px) {
    .combinados-anchors-section {
        padding: 40px 0;
    }
    
    .combinados-anchors-section .container {
        min-height: 20vh;
        padding: 20px 10px;
        
    }
    
    .anchors-wrapper {
        gap: 20px;
    }
    
    .anchor-button {
        min-width: 160px;
        padding: 10px;
    }
    
    .anchor-text {
        font-size: clamp(1.6rem, 3.5vw, 1.4rem);
        letter-spacing: 0.03em;
        line-height: 1.1;
    }

    .textSmoll{
       font-size:15px;
    }
    
    .anchor-arrow {
        font-size: clamp(1.6rem, 4.5vw, 2rem);
    }
}

/* Móvil muy pequeño */
@media (max-width: 360px) {
    .anchors-wrapper {
        gap: 15px;
    }
    
    .anchor-button {
        min-width: 140px;
        padding: 10px;
    }
    
    .anchor-text {
        font-size: clamp(1.3rem, 4vw, 1.2rem);
        letter-spacing: 0.03em;
      
    }
    
    .anchor-arrow {
        font-size: clamp(1.4rem, 5vw, 1.8rem);
    }
}

/* Animación de entrada */
.anchor-button {
    animation: fadeInUp 0.8s ease-out;
}

.anchor-button:nth-child(1) {
    animation-delay: 0.2s;
    animation-fill-mode: both;
}

.anchor-button:nth-child(2) {
    animation-delay: 0.4s;
    animation-fill-mode: both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.btnComparala{
    text-decoration: none;
}


/* CONSTANTINA HERO STYLES  */

.constantina-hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background-image: url('/assets/img/Combinados/portada-combinados.jpg');
    background-size: cover;
    background-position: bottom center;
    background-repeat: no-repeat;
    overflow: hidden;
    display: flex;
    align-items: center;
    /* NUEVO: Asegurar ancho completo en móvil */
    width: 100%;
    margin-left: 0;
    margin-right: 0;
}

/* Overlay opcional */
.constantina-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

/* Contenedor del contenido */
.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    align-items: end;
    height: 100vh;
    margin-bottom: 100px;
}

/* Contenedor del texto */
.text-container {
    max-width: 1100px;
    margin: 0 auto;
    padding-right: 20px;
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
    gap:25px;
    position: relative;
    bottom: 100px;
}

/* Desktop - subir más el texto */
.hero-content {
    padding-top: 5vh;
}

/* Título principal */
.constantina-main-title {
    font-family: 'Bogart', 'Montserrat', serif;
    font-size: 90px;
    font-weight: 400;
    line-height: 0.85;
    color: white;
    margin-bottom: 30px;
    /*text-transform: uppercase;*/
    letter-spacing: 0.02em;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
    margin-top: -130px;
}

/* Párrafo descriptivo */
.constantina-description {
    font-family: 'Space Grotesk';
    font-size: 22px;
    font-weight: 600;
    line-height: 1.1;
    color: white;
    margin: 0;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.4);
}

/* RESPONSIVE DESIGN */
@media (max-width: 1400px) {
   
    

}

@media (max-width: 1200px) {
    
}

@media (max-width: 991px) {
    .constantina-hero {
        min-height: 550px;
        height:80vh ;
    }
    
    .constantina-main-title {
        font-size: 50px;
        margin-top: -80px;
}
   
}

@media (max-width: 768px) {
    
    
    .hero-content {
    padding-top: 0;
    height: 40vh;;
       margin-bottom: 30px;
    }
    
    .text-container {
        max-width: 100%;
       
    }
    
    .constantina-main-title {
        font-size: 50px;
        margin-top: -60px;
}
    .constantina-description {
        font-size: 16px;
        line-height: 1.3;
    }
}

@media (max-width: 600px) {
    /* Cambiar imagen de fondo desde 600px */
    .constantina-hero {
        background-image: url('/assets/img/Combinados/portada-combinados.jpg');
        min-height: 450px;
        height:70vh ;
        align-items: flex-start;
        padding-top: 20vh;
        background-position: center center;
        /* NUEVO: Forzar ancho completo y eliminar márgenes */
        width: 100vw;
        position: relative;
        left: 50%;
        right: 50%;
        margin-left: -50vw;
        margin-right: -50vw;
    }
    
    .hero-content {
        padding-top: 0;
        height: 40vh;
    }

    .constantina-main-title {
        
        font-size: 40px;
        margin-top: -60px;
}
    .constantina-description {
        font-size: 14px;
        line-height: 1.0;
    }
   

}

@media (max-width: 480px) {
    /* Cambiar a imagen móvil específica */
    .constantina-hero {
        background-image: url('/assets/img/Combinados/portada-combinados.jpg');
        padding-top: 25vh;
        min-height: 400px;
        height: 70vh;
        width: 100vw;
        position: relative;
        left: 50%;
        right: 50%;
        margin-left: -50vw;
        margin-right: -50vw;
    }
    
    .text-container {
        max-width: 100%;
       
    }

    hero-content {
        padding-top: 0;
        height: 70vh;
    }

    .constantina-main-title {
        font-size: 30px;
        margin-top: -60px;
}
    .constantina-description {
        font-size: 14px;
        line-height: 1.0;
    }
    
    
}

@media (max-width: 380px) {
    .text-container {
        padding: 0 12px 0 0;
        max-width: 100%;
    }
    
    .constantina-main-title {
        font-size:18px;
        margin-bottom: 12px;
    }
    
    .constantina-description {
        font-size: 12px;
        line-height: 0.9;
    }
}

/* Animaciones suaves */
.constantina-main-title,
.constantina-description {
    animation: fadeInUp 1s ease-out;
}

.constantina-description {
    animation-delay: 0.3s;
    animation-fill-mode: both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}






/* Título - ¿Y a ti qué te apetece hoy? */
.combinados-hero {
    padding: 80px 0 60px;
    background-color: #f8f9fa;
    position: relative;
}

.hero-title {
    font-family: 'Highrise', 'Montserrat', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 400;
    color: #00699C;
    letter-spacing: 0.02em;
    margin-bottom: 40px;
    text-transform: uppercase;
    line-height: 1.1;
}

.bottles-selector {
    max-width: 800px;
    margin: 0 auto;
}

.bottles-selector img {
    width: 100%;
    height: auto;
}

/* Sección Perfect Serve */
.perfect-serve-section {
    padding: 0;
    background-color: #ffffff;
    min-height: 100vh;
}

.perfect-serve-section .row {
    margin: 0;
}

.perfect-serve-section [class*="col-"] {
    padding: 0;
}

/* Columna A - Imagen de fondo */
.perfect-serve-image {
    background-image: url('/assets/img/Combinados/combinados-perfectserve.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 600px;
}

/* Columna B - Contenido */
.perfect-serve-content {
    background-color: #ffffff;
    color: #00699C;
    position: relative;
    display: flex;
    align-items: center;
}

.content-wrapper {
    padding: 60px 50px;
    width: 100%;
}

.section-title {
    font-family: 'Highrise', 'Montserrat', sans-serif;
    font-size: clamp(2rem, 4vw, 3.7rem);
    font-weight: 400;
    color: #00699C;
    letter-spacing: 0.02em;
    margin-bottom: 25px;
    text-transform: uppercase;
    line-height: 1.1;
}

.intro-text {
    font-family: 'Bogart', 'Montserrat', serif;
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 30px;
    color: #00699C;
}

.recipe-details {
    margin-bottom: 25px;
}

.recipe-subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #00699C;
    line-height: 1.1;
    font-family: 'Space Grotesk';
}

.method {
    font-weight: 400;
}

.recipe-item {
    font-family: 'Space Grotesk';
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 5px;
    color: #00699C;
    line-height: 1.1;
}

.garnish-details {
    margin-bottom: 25px;
    font-family: 'Space Grotesk';
}

.garnish-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #00699C;
    line-height: 1.1;
}

.garnish-desc {
    font-weight: 400;
}

.preparation {
    margin-bottom: 30px;
}

.preparation-title {
   font-family: 'Space Grotesk';
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #00699C;
    line-height: 1.1;
}

.preparation-list {
   font-family: 'Space Grotesk';
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.1;
    list-style: none;
    padding-left: 0;
    color: #00699C;
}

.ldos li{
  padding-bottom: 15px;
}

.preparation-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 8px;
    line-height: 1.1;
}

.preparation-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #00699C;
    font-size: 1.2rem;
}

.recommendations {
    margin-bottom: 0;
}


.recommendations-wrapper {
    display: flex;
    align-items: flex-end;
    
}

.recommendations-wrapper2 {
    display: flex;
    /*align-items: flex-end;*/
    
}

.pbtncombinados{
    width: 100%;
    text-align: right;
}

.recommendations-content {
    flex: 1;
}

.recommendations-content2 {
    flex: 1;
    display: flex;  
    justify-content: flex-end;
    flex-wrap: wrap;
}

.divpbtncombinados{
    display: flex;
    align-items: end;
}

.recommendations-title {
    font-family: 'Space Grotesk';
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #00699C;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1.1;
}

.recommendations-text {
    font-family: 'Space Grotesk';
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #00699C;
}

.btn-comprala {
    font-family: 'Bogart', 'Montserrat', serif;
    font-size: 1rem;
    font-weight: 600;
    padding: 12px 30px;
    border: none;
    border-radius: 0;
    background-color: #00B6DB;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    text-transform: capitalize;
    display: inline-block;
    margin-left: auto;
    display: block;
    width: fit-content;
    position: relative;
    right: -15px;
}


.btn-compralapserve:hover,
.btn-comprala:hover {
    background-color: #00699C;
    color: white;
}


.btn-compralapserve{
     font-family: 'Bogart', 'Montserrat', serif;
    font-size: 1rem;
    font-weight: 600;
    padding: 12px 30px;
    border: none;
    border-radius: 0;
    background-color: #00B6DB;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    text-transform: capitalize;
    display: inline-block;
    margin-left: auto;
    display: block;
    width: fit-content;
    position: relative;
    right: -15px;
}

.bottles-container {
    flex-shrink: 0;
    display: flex;
    align-items: flex-end;
}

.bottles-image {
    position: relative;
    max-width: 100px;
    bottom: -30px;
}

.bottles-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Sección Título Cócteles */
.cocteles-title-section {
    padding: 80px 0 60px;
    background-color: #f8f9fa;
    text-align: center;
}

.cocteles-main-title {
    font-family: 'Highrise', 'Montserrat', sans-serif;
    font-size: clamp(2.5rem, 6vw, 6.5rem);
    font-weight: 400;
    color: #00699C;
    letter-spacing: 0.02em;
    margin-bottom: 0;
    text-transform: uppercase;
    line-height: 1.1;
}

/* Estilos compartidos para secciones de cócteles */
.cocktail-section {
    padding: 0;
    background-color: #ffffff;
    /*min-height: 100vh;*/
}

.cocktail-section .row {
    margin: 0;
}

.cocktail-section [class*="col-"] {
    padding: 0;
}

/* Columnas de imagen */
.cocktail-image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 600px;
}

.clover-club-image {
    background-image: url('/assets/img/Combinados/combinados-cloverclub.jpg');
}

.capri-image {
    background-image: url('/assets/img/Combinados/combinados-capri.jpg');
}

.exotic-mojito {
    background-image: url('/assets/img/Combinados/combinados-exotic-mojito.jpg');
}

.constantina-passion {
    background-image: url('/assets/img/Combinados/combinados-constantina.jpg');
}

.san-francisco-exotica{
    background-image: url('/assets/img/Combinados/combinados-sanfrancisco.jpg');
}

.exotica-pina-colada {
    background-image: url('/assets/img/Combinados/combinados-pinacolada.jpg');
}





/* Columnas de contenido */
.cocktail-content {
    background-color: #ffffff;
    color: #00699C;
    position: relative;
    display: flex;
    align-items: center;
}

.cocktail-content .content-wrapper {
    padding: 60px 50px;
    width: 100%;
}

/* Sección de ingredientes */
.ingredients-section {
    margin-bottom: 25px;
}

.ingredients-section .recipe-item {
    margin-bottom: 3px;
}

/* Texto de preparación */
.preparation-text {
    font-family: 'Bogart', 'Montserrat', serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.1;
    color: #00699C;
    margin: 0;
}

/* Contenido inferior con botón y botella */
.bottom-content {
    margin-top: 30px;
}

.bottom-wrapper {
    display: flex;
    align-items: flex-end;
    gap: 20px;
}

/* Clase para controlar el tamaño de la botella */
.bottle-image {
    max-width: 100px; /* Tamaño más pequeño en desktop */
}

.bottle-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Botella responsive - oculta en desktop, visible en móvil */
.bottle-image-mobile {
    display: none;
}

/* RESPONSIVE DESIGN */

@media (max-width: 1200px){
   .bottles-container{
        width: 20% !important;
   }



}



/* Tablet */
@media (max-width: 991px) {
    .combinados-hero {
        padding: 60px 0 40px;
    }
    
    .hero-title {
        font-size: clamp(2rem, 7vw, 3.5rem);
        margin-bottom: 30px;
    }
    
    .perfect-serve-image {
        min-height: 400px;
    }
    
    .content-wrapper {
        padding: 40px 30px;
        position: relative;
    }
    
    .section-title {
        font-size: clamp(1.8rem, 5vw, 3rem);
        margin-bottom: 20px;
    }

    .recipe-subtitle,
    .recipe-item,
    .garnish-details,
    .preparation,
    .recommendations{
        font-family: 'Space Grotesk';
    }


    
    .intro-text,
    .recipe-subtitle,
    .garnish-title,
    .preparation-title {
        font-size: 1rem;
    }
    
    .recipe-item,
    .preparation-list,
    .recommendations-text,
    .preparation-text {
        font-size: 0.9rem;
    }
    
    .recommendations-title {
        font-size: 1.3rem;
    }
    
    .btn-compralapserve,
    .btn-comprala {
        margin-left: none;
	
    }
    
    .bottles-container {
        align-self: flex-end;
    }
    
    .bottles-image {
        max-width: 120px;
    }
    
    /* Cócteles secciones */
    .cocteles-title-section {
        padding: 60px 0 40px;
    }
    
    .cocteles-main-title {
        font-size: clamp(2rem, 7vw, 3.5rem);
    }
    
    .cocktail-image {
        min-height: 400px;
    }
    
    .cocktail-content .content-wrapper {
        padding: 40px 30px;
        position: relative;
    }
    
    /* Ajuste del layout para botón y botella en tablet */
    .bottom-content {
        margin-top: 20px;
    }
    
    .bottom-wrapper {
        justify-content: space-between;
        align-items: center;
    }
    
    .bottom-wrapper .bottle-image {
        display: none; /* Ocultar botella junto al botón */
    }
    
    /* Mostrar botella en posición diferente */
    .bottle-image-mobile {
        display: block;
        position: absolute;
        bottom: 30px;
        right: 30px;
        max-width: 100px;
        z-index: 2;
    }
    
    .btn-compralapserve{
    width: auto;
    padding: 10px 30px;
    
    }

    .btn-comprala {
        width: auto;
        padding: 10px 30px;
    }
}

/* Breakpoint específico para column-reverse - desde 665px hacia abajo */
@media (max-width: 765px) {
    /* Column-reverse para Perfect Serve */
     
    .perfect-serve-image {
        min-height: 300px;
        width: 100%;
    }
    
    .perfect-serve-content {
        min-height: auto;
        width: 100%;
    }
    
    /* Column-reverse para todas las secciones de cócteles */
    .columnreverse{
        display: flex;
        flex-direction: column-reverse !important;
    }
    
    .cocktail-image {
        min-height: 400px;
        width: 100%;
    }
    
    .cocktail-content {
        min-height: auto;
        width: 100%;
    }
}

/* Móvil */
@media (max-width: 768px) {
    .combinados-hero {
        padding: 40px 0 30px;
    }
    
    .hero-title {
        font-size: clamp(1.8rem, 8vw, 3rem);
        margin-bottom: 25px;
    }
    
    .perfect-serve-section {
        min-height: auto;
    }
    
    .content-wrapper {
        padding: 30px 20px 70px; /* Extra padding para la botella */
        position: relative;
    }
    
    .section-title {
        font-size: clamp(1.6rem, 6vw, 2.5rem);
        margin-bottom: 18px;
    }
    
    .intro-text {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
    
    .recipe-details,
    .garnish-details,
    .preparation,
    .ingredients-section {
        margin-bottom: 20px;
    }
    
    .preparation-list li {
        margin-bottom: 6px;
    }
    
    .recommendations-title {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
   
    
    .recommendations-content2,
    .recommendations-content {
        width: 100%;
    }
    
    .btn-compralapserve{
        padding: 10px 25px;
        font-size: 0.9rem;
        width: 100%;
        max-width: 200px;
        position: relative;
        right: -10px;
    
    }

    .btn-comprala {
        padding: 10px 25px;
        font-size: 0.9rem;
        width: 100%;
        max-width: 200px;
    
    }
    

    
    /* Cócteles secciones */
    .cocteles-title-section {
        padding: 40px 0 30px;
    }
    
    .cocteles-main-title {
        font-size: clamp(1.8rem, 8vw, 3rem);
    }
    
    .cocktail-content .content-wrapper {
        padding: 30px 20px 70px;
        position: relative;
    }
    
    .preparation-text {
        font-size: 0.9rem;
    }
    
    /* Layout móvil para botón y botella */
    .bottom-content {
        margin-top: 20px;
    }
    
    .bottom-wrapper {
        justify-content: flex-start;
    }
    
    .bottom-wrapper .bottle-image {
        display: none;
    }
    
    .bottle-image-mobile {
        display: block;
        position: absolute;
        bottom: 20px;
        right: 20px;
        max-width: 80px;
        z-index: 2;
    }
}

/* Móvil pequeño */
@media (max-width: 480px) {
    .combinados-hero {
        padding: 30px 0 20px;
    }
    
    .hero-title {
        font-size: clamp(1.5rem, 9vw, 2.5rem);
        margin-bottom: 20px;
    }
    
    /* Mantener column-reverse y ajustar altura de imagen */
    .perfect-serve-image,
    .cocktail-image {
        min-height: 350px;
    }
    
    .content-wrapper {
        padding: 25px 15px 60px;
        position: relative;
    }
    
    .section-title {
        font-size: clamp(1.4rem, 7vw, 2rem);
        margin-bottom: 15px;
    }
    
    .intro-text,
    .recipe-subtitle,
    .garnish-title,
    .preparation-title {
        font-size: 0.9rem;
    }
    
    .recipe-item,
    .preparation-list,
    .recommendations-text,
    .preparation-text {
        font-size: 0.85rem;
    }
    
    .recommendations-title {
        font-size: 1.1rem;
    }
    
    .bottles-image {
        max-width: 100px;
    }
    
    /* Cócteles secciones */
    .cocteles-title-section {
        padding: 30px 0 20px;
    }
    
    .cocteles-main-title {
        font-size: clamp(1.5rem, 9vw, 2.5rem);
    }
    
    .cocktail-content .content-wrapper {
        padding: 25px 15px 60px;
    }

    .btn-compralapserve{
        padding: 10px 25px;
        font-size: 0.9rem;
        width: 100%;
        max-width: 200px;
        position: relative;
        right: -15px;
    
    }
    
    .btn-comprala {
        width: 100%;
        max-width: 180px;
        padding: 8px 20px;
    }
    
    .bottle-image-mobile {
        max-width: 70px;
        bottom: 15px;
        right: 15px;
    }
}

/* Animaciones */
.hero-title {
    animation: fadeInDown 1s ease-out;
}

.bottles-selector {
    animation: fadeInUp 1s ease-out;
    animation-delay: 0.3s;
    animation-fill-mode: both;
}

@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);
    }
}