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

:root {
    --primary-green: #c4dc49;
    --primary-green-dark: #b9d750;
    --beige: #f4e4c3;
    --pink: #fea7ef;
    --text-dark: #000000;
    --white: #ffffff;
    --font-caveat: 'Caveat Brush', cursive;
    --font-nunito: 'Nunito', sans-serif;
    --font-open: 'Open Sauce One', sans-serif;
}

/* Sidebar Menu */
.sidebar {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999999;
    padding: 20px 15px;
}

.sidebar-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-link {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-family: var(--font-nunito);
    font-weight: 700;
    font-size: 7px;
    text-transform: uppercase;
    letter-spacing: -0.1px;
    color: var(--text-dark);
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    position: relative;
    text-align: center;
    line-height: 1.1;
    padding: 2px;
    word-break: break-word;
}

/* Formas de pintura chorreada - cada círculo con forma única */
.sidebar-link:nth-child(1) {
    border-radius: 35% 65% 70% 30% / 65% 35% 30% 70%;
}

.sidebar-link:nth-child(2) {
    border-radius: 60% 40% 45% 55% / 40% 60% 55% 45%;
}

.sidebar-link:nth-child(3) {
    border-radius: 45% 55% 60% 40% / 55% 45% 40% 60%;
}

.sidebar-link:nth-child(4) {
    border-radius: 55% 45% 50% 50% / 45% 55% 50% 50%;
}

.sidebar-link:nth-child(5) {
    border-radius: 40% 60% 55% 45% / 60% 40% 45% 55%;
}

.sidebar-link:nth-child(6) {
    border-radius: 50% 50% 45% 55% / 50% 50% 55% 45%;
}

/* Gotas de pintura alrededor */


.sidebar-link:hover {
    transform: scale(1.2);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* Colores específicos para cada sección */
.sidebar-link[href="#inicio"] {
    background-color: #8B5CF6; /* Violeta aproximado */
}

.sidebar-link[href="#nosotros"] {
    background-color: rgb(49, 167, 104);
}

.sidebar-link[href="#experiencia"] {
    background-color: #FCD34D; /* Amarillo aproximado */
}

.sidebar-link[href="#eventos"] {
    background-color: rgb(254, 167, 239);
}

.sidebar-link[href="#galeria"] {
    background-color: rgb(185, 200, 83);
}

.sidebar-link[href="#contacto"] {
    background-color: rgb(244, 228, 195);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-nunito);
    font-size: 1em;
    font-weight: 400;
    font-style: normal;
    font-kerning: normal;
    line-height: 1.6;
    color: rgb(0, 0, 0);
    text-decoration-line: none;
    text-decoration-thickness: initial;
    text-decoration-style: initial;
    background-color: var(--white);
    overflow-x: hidden;
}

/* Regla general para párrafos */
p {
    font-size: 1em;
    font-weight: 400;
    font-style: normal;
    font-kerning: normal;
    color: rgb(0, 0, 0);
    text-decoration-line: none;
    text-decoration-thickness: initial;
    text-decoration-style: initial;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background-color: rgb(244, 228, 195);
    z-index: 1000;
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border-bottom: 1px solid #000000;
}

.nav-paint-decoration {
    position: fixed;
    top: 29px;
    left: 50%;
    transform: translateX(-150%);
    z-index: 1001;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.nav-paint-decoration.hidden {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.nav-paint-img {
    height: 100px;
    width: auto;
    display: block;
}

.nav-paint-decoration-red {
    position: fixed;
    top: 0px;
    right: 41%;
    z-index: 1001;
    pointer-events: none;
    overflow: hidden;
    height: 50px;
}

.nav-paint-img-red {
    height: 100px;
    width: auto;
    display: block;
    transform: translateY(-50px);
}

.nav-paint-decoration-turquoise {
    position: fixed;
    top: -6px;
    right: -2%;
    z-index: 1001;
    pointer-events: none;
    overflow: hidden;
    height: 50px;
}

.nav-paint-img-turquoise {
    height: 100px;
    width: auto;
    display: block;
    transform: translateY(-50px);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    position: relative;
}

.nav-logo {
    display: flex;
    align-items: center;
    position: relative;
    height: 100%;
    padding-top: 58.7203px;
}

.nav-logo-img {
    width: 219.521px;
    height: 219.521px;
    transform: translate(0px, -35px) rotate(0deg);
    object-fit: contain;
}

.nav-buttons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-btn {
    padding: 12px 24px;
    border-radius: 32px;
    text-decoration: none;
    font-family: var(--font-nunito);
    font-weight: 700;
    font-size: 13.33px;
    text-transform: uppercase;
    letter-spacing: -0.2px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    background-color: var(--beige);
    color: var(--text-dark);
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.nav-btn-reserva {
    display: inline-flex;
    align-items: center;
    padding: 8px 10px;
    border-radius: 50px;
    background-color: #e67e22;
    color: #fff;
    font-family: var(--font-nunito);
    font-weight: 400;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    border: none;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    white-space: nowrap;
    margin-top: 25px;
}

.nav-btn-reserva:hover {
    background-color: #d35400;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(230, 126, 34, 0.4);
}

/* Parallax Sections */
.parallax-section {
    position: relative;
    overflow: hidden;
    will-change: transform;
    transform-style: preserve-3d;
}

.parallax-content {
    position: relative;
    z-index: 2;
    will-change: transform;
    backface-visibility: hidden;
    transform: translateZ(0);
}

/* Hero Section */
.hero {
    margin-top: 80px;
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('assets/images/fondo-violeta.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    overflow: hidden;
    padding: 100px 40px;
    z-index: 10;
}

.hero-brush-decoration {
    position: absolute;
    left: -8px;
    top: -90px;
    width: 50%;
    height: 100%;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 0;
    overflow: hidden;
}

/* Permitir que Animate.css funcione sin interferencias */
.hero-brush-decoration.animate__animated.animate__rollIn {
    /* Asegurar que el elemento sea visible para la animación */
    opacity: 1;
    /* No interferir con la animación de Animate.css */
    animation-fill-mode: both;
}

.hero-brush-img {
    max-width: 35%;
    max-height: 35%;
    height: auto;
    width: auto;
    object-fit: contain;
}

.hero-flowers-decoration {
    position: absolute;
    left: -8px;
    top: 380px;
    width: 30%;
    height: 100%;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding-left: 0;
    overflow: visible;
}

.hero-flowers-img {
    max-width: 40%;
    max-height: 40%;
    height: auto;
    width: auto;
    object-fit: contain;
}

.hero-coffee-decoration {
    position: absolute;
    right: 30px;
    top: 65%;
    width: 50%;
    height: 100%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 20px;
    overflow: visible;
}

/* Transform base para el café (solo cuando NO tiene animación) */
.hero-coffee-decoration:not(.animate__animated) {
    transform: translateY(-50%) rotate(19deg);
}

.hero-coffee-img {
    max-width: 40%;
    max-height: 40%;
    height: auto;
    width: auto;
    object-fit: contain;
}

.hero-churro-decoration {
    position: absolute;
    right: 80px;
    top: 55%;
    width: 50%;
    height: 100%;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 20px;
    overflow: visible;
}

.hero-churro-img {
    max-width: 30%;
    max-height: 30%;
    height: auto;
    width: auto;
    object-fit: contain;
}

.hero-flower-blue-decoration {
    position: absolute;
    right: 250px;
    bottom: -10px;
    width: 50%;
    height: 100%;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding-right: 20px;
    overflow: visible;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.hero-flower-blue-decoration.hidden {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.hero-flower-blue-img {
    max-width: 17.5%;
    max-height: 17.5%;
    height: auto;
    width: auto;
    object-fit: contain;
}

.hero-content {
    max-width: 500px;
    text-align: center;
    position: relative;
    z-index: 1;
    margin: 0 auto;
}

.hero-title {
    font-family: var(--font-caveat);
    font-size: 59.8287px;
    font-weight: 400;
    line-height: 0.92;
    letter-spacing: -0.7px;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.hero-title-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(-30px);
    animation: slideDownFadeIn 1.2s ease-out forwards;
}

.hero-title-word-1 {
    animation-delay: 0.3s;
}

.hero-title-word-2 {
    animation-delay: 0.6s;
}

.hero-title-word-3 {
    animation-delay: 0.9s;
}

.hero-title-word-4 {
    animation-delay: 1.2s;
}

@keyframes slideDownFadeIn {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-decoration-1:not(.animate__animated),
.hero-decoration-2:not(.animate__animated),
.hero-decoration-3:not(.animate__animated),
.hero-decoration-4:not(.animate__animated),
.hero-decoration-5:not(.animate__animated) {
    opacity: 0;
    animation: slideUpFadeIn 0.8s ease-out forwards;
}

/* Permitir que JavaScript controle el transform después de la animación */
.hero-flowers-decoration:not(.animate__animated),
.hero-coffee-decoration:not(.animate__animated),
.hero-churro-decoration:not(.animate__animated),
.hero-flower-blue-decoration:not(.animate__animated) {
    animation-fill-mode: forwards;
}

/* Asegurar que el JavaScript pueda sobrescribir el transform */
.hero-flowers-decoration[data-parallax-speed],
.hero-coffee-decoration[data-parallax-speed],
.hero-churro-decoration[data-parallax-speed],
.hero-flower-blue-decoration[data-parallax-speed] {
    will-change: transform;
}

/* Pincel usa Animate.css, no la animación personalizada */
/* Removido para permitir que Animate.css funcione */

.hero-decoration-1:not(.animate__animated) {
    animation-delay: 0.1s;
}

.hero-decoration-2:not(.animate__animated) {
    animation-delay: 0.2s;
}

/* Permitir que Animate.css funcione en las rosas */
.hero-flowers-decoration.animate__animated.animate__fadeInBottomLeft {
    /* Asegurar que el elemento sea visible para la animación */
    opacity: 1;
    /* No interferir con la animación de Animate.css */
    animation-fill-mode: both;
}

/* Permitir que Animate.css funcione en el café - EXACTAMENTE igual que pincel */
.hero-coffee-decoration.animate__animated.animate__fadeInBottomRight {
    /* Asegurar que el elemento sea visible para la animación */
    opacity: 1;
    /* No interferir con la animación de Animate.css */
    animation-fill-mode: both;
}

/* Restaurar el transform después de la animación para el parallax */
.hero-coffee-decoration.animate__animated.animate__fadeInBottomRight.animation-complete {
    transform: translateY(-50%) rotate(19deg) !important;
}



.hero-decoration-3:not(.animate__animated) {
    animation-delay: 0.3s;
}

.hero-decoration-4 {
    animation-delay: 0.4s;
}

.hero-decoration-5 {
    animation-delay: 0.5s;
}

@keyframes slideUpFadeIn {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Preservar transforms existentes en las decoraciones */
.hero-coffee-decoration:not(.animate__animated) {
    animation-name: slideUpFadeInCoffee;
}

.hero-churro-decoration:not(.animate__animated) {
    animation-name: slideUpFadeInChurro;
}

/* Permitir que Animate.css funcione en el churro - igual que pincel */
.hero-churro-decoration.animate__animated.animate__fadeInBottomLeft {
    opacity: 1;
    animation-fill-mode: both;
 
}
/* Restaurar el transform después de la animación para el parallax */
.hero-churro-decoration.animate__animated.animate__fadeInBottomLeft.animation-complete {
    transform: translateY(-50%) rotate(-25deg) !important;
}

@keyframes slideUpFadeInCoffee {
    from {
        opacity: 0;
        transform: translateY(calc(-50% + 50px)) rotate(19deg);
    }
    to {
        opacity: 1;
        transform: translateY(-50%) rotate(19deg);
    }
}

@keyframes slideUpFadeInChurro {
    from {
        opacity: 0;
        transform: translateY(calc(-50% + 50px)) rotate(-25deg);
    }
    to {
        opacity: 1;
        transform: translateY(-50%) rotate(-25deg);
    }
}

.hero-description {
    font-family: var(--font-nunito);
    font-size: 20px;
    font-weight: 400;
    font-style: normal;
    font-kerning: normal;
    line-height: 1.4;
    letter-spacing: -0.2px;
    color: rgb(0, 0, 0);
    text-decoration-line: none;
    text-decoration-thickness: initial;
    text-decoration-style: initial;
    max-width: 650px;
    margin: 0 auto;
    text-align: center;
}

/* Hero Decorations */
.hero-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.decoration {
    position: absolute;
    background-color: var(--primary-green);
    border-radius: 50%;
    opacity: 0.3;
}

.decoration-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    left: -100px;
    background-color: var(--primary-green-dark);
}

.decoration-2 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
    background-color: var(--primary-green-dark);
    transform: rotate(180deg);
}

.decoration-3 {
    width: 400px;
    height: 400px;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
    background-color: var(--primary-green-dark);
}

/* Section Title */
.section-title {
    font-family: var(--font-caveat);
    font-size: 63.67px;
    font-weight: 400;
    line-height: 0.92;
    letter-spacing: -4.7px;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 10px;
}

/* Título experiencia: cada letra con animación zoomIn */
/* Títulos animados: ocultos hasta que el efecto empiece (evita ver texto y luego desaparecer) */
#experiencia-title,
#eventos-title,
#galeria-title,
#galeria-subtitle,
#contacto-title,
#nosotros-title,
#nosotros-subtitle {
    opacity: 0;
}

#experiencia-title span,
#eventos-title span,
#galeria-title span {
    display: inline-block;
}

/* Espacio entre palabras en títulos animados letra a letra */
#experiencia-title span.title-word-space,
#eventos-title span.title-word-space,
#galeria-title span.title-word-space {
    min-width: 0.35em;
}

/* Palabras del título eventos: no se cortan al reducir pantalla (cada palabra permanece junta) */
#eventos-title .eventos-title-word {
    white-space: nowrap;
    display: inline-block;
}

/* Palabras del título experiencia: no se cortan al reducir pantalla (cada palabra permanece junta) */
#experiencia-title .experiencia-title-word {
    white-space: nowrap;
    display: inline-block;
}

/* Subtítulo galería: palabras animadas (backInRight) */
#galeria-subtitle span {
    display: inline-block;
}
#galeria-subtitle span.galeria-subtitle-word-space {
    min-width: 0.35em;
}

/* Título contacto: palabras animadas (backInLeft) */
#contacto-title span {
    display: inline-block;
}
#contacto-title span.contacto-title-word-space {
    min-width: 0.35em;
}

/* Nosotros: título y subtítulo animados letra a letra (backInUp) */
#nosotros-title span,
#nosotros-subtitle span {
    display: inline-block;
}
#nosotros-title span.title-word-space,
#nosotros-subtitle span.title-word-space {
    min-width: 0.35em;
}

.contacto-title {
    font-family: var(--font-caveat);
    font-size: 50.67px;
    font-weight: 200;
    line-height: 0.92;
    letter-spacing: -3.7px;
    color: var(--text-dark);
    margin-bottom: 50px;
    margin-top: 80px;
}

/* Eventos Section */
.eventos {
    background-color: rgb(254, 167, 239);
    padding: 70px 40px 180px;
    position: relative;
    overflow: visible;
    min-height: 100vh;
    display: flex;
    align-items: center;
    z-index: 1;
}

.eventos-line {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #000000;
    z-index: 100;
}

.eventos-line-top {
    top: 0px;
}

.eventos-line-bottom {
    bottom: 0px;
}

.eventos-line-vertical {
    position: absolute;
    left: 55%;
    top: 0px;
    bottom: 70px;
    width: 2px;
    height: 100%;
    background-color: rgb(0, 0, 0);
    z-index: 100;
}

.eventos-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
}

.eventos-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: start;
    min-height: 80vh;
}

/* Columna Izquierda - Texto */
.eventos-left {
    position: relative;
    padding: 40px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.eventos-left .section-title {
    margin-bottom: 40px;
}

/* Columna Derecha - Imagen */
.eventos-right {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 2% 0% 0% 3%;
}

.eventos-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 600px;
    z-index: 0;
}

.eventos-main-image {
    width: 100%;
    height: auto;
    /* border-radius: 12px; */
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    object-fit: cover;
}

.eventos-churro-overlay {
    position: absolute;
    top: -500px;
    right: 130px;
    z-index: -1;
    pointer-events: none;
}

.eventos-churro-img {
    width: 250px;
    height: auto;
    transform: rotate(25deg);
    display: block;
}

.eventos-text {
    font-family: var(--font-nunito);
    font-size: 20px;
    font-weight: 400;
    font-style: normal;
    font-kerning: normal;
    color: rgb(0, 0, 0);
    text-decoration-line: none;
    text-decoration-thickness: initial;
    text-decoration-style: initial;
    line-height: 1.7;
    /* margin-bottom: 20px; */
    margin-top: 40px;
    width: 100%;
    margin-left: 10%;
}

.eventos-gifs {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.eventos-gif {
    width: auto;
    height: 80px;
    display: block;
}

.evento-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.evento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.evento-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.evento-card h3 {
    font-family: var(--font-nunito);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.evento-card p {
    font-family: var(--font-nunito);
    font-size: 1em;
    font-weight: 400;
    font-style: normal;
    font-kerning: normal;
    color: rgb(0, 0, 0);
    text-decoration-line: none;
    text-decoration-thickness: initial;
    text-decoration-style: initial;
    line-height: 1.6;
}

/* Nosotros Section */
.nosotros {
    background-color: rgb(49, 167, 104);
    padding: 30px 40px 90px 80px;
    position: relative;
    overflow: visible;
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    z-index: 5;
}

.nosotros-line {
    position: absolute;
    left: -90px;
    width: 200%;
    height: 2px;
    background-color: #000000;
    z-index: 2;
}

.nosotros-line-top {
    top: 40px;
}

.nosotros-line-bottom {
    bottom: 70px;
}

.nosotros-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.nosotros-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
    min-height: 80vh;
}

/* Columna Izquierda */
.nosotros-left {
    position: relative;
    padding: 120px 0px 0px 0px;
}

.nosotros-title {
    font-family: var(--font-caveat);
    font-size: 62.67px;
    font-weight: 400;
    line-height: 0.92;
    letter-spacing: -4.7px;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.nosotros-subtitle {
    font-family: var(--font-nunito);
    font-size: 20px;
    font-weight: 700;
    font-style: normal;
    font-kerning: normal;
    color: rgb(0, 0, 0);
    text-decoration-line: none;
    text-decoration-thickness: initial;
    text-decoration-style: initial;
    margin-bottom: 40px;
    line-height: 1.4;
}

.nosotros-text {
    font-family: var(--font-nunito);
    font-size: 20px;
    font-weight: 400;
    font-style: normal;
    font-kerning: normal;
    line-height: 1.7;
    letter-spacing: -0.2px;
    color: rgb(0, 0, 0);
    text-decoration-line: none;
    text-decoration-thickness: initial;
    text-decoration-style: initial;
    margin-bottom: 60px;
}

.nosotros-text p {
    /* margin-bottom: 25px; */
}

/* Decoraciones columna izquierda */
.nosotros-decorations-left {
    position: relative;
    width: 100%;
    min-height: 300px;
    margin-top: -370px;
    /* top: -620px; */
}

.decoration-wrapper {
    position: absolute;
}

.decoration-flores-rosa-wrapper {
    top: 100%;
    left: -120px;
    z-index: 3;
}

.decoration-flores-rosa {
    width: 150px;
    height: auto;
    opacity: 0.9;
    display: block;
}

.decoration-churro-wrapper {
    top: -22%;
    left: -180px;
    z-index: 3;
}

.decoration-churro {
    width: 200px;
    height: auto;
    transform: rotate(29deg);
    display: block;
}

.decoration-carita-wrapper {
    top: 100%;
    right: -100px;
    transform: translateY(-50%);
    z-index: 3;
}

.decoration-carita {
    width: 110px;
    height: auto;
    display: block;
    transform: rotate(15deg);
}

/* Columna Derecha */
.nosotros-right {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 40px 0 40px 0;
    width: 100%;
}

.nosotros-image-wrapper {
    position: relative;
    width: calc(100% + 40px);
    max-width: none;
    margin-right: -40px;
    z-index: 0;
    min-height: 600px;
}

.nosotros-main-image {
    width: 110%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    object-fit: cover;
}

.nosotros-sticker {
    position: absolute;
    top: -38px;
    right: 90%;
    width: 100px;
    height: auto;
    transform: rotate(-1deg);
    z-index: 3;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

/* Experiencia Section */
.experiencia {
    background-image: url(assets/images/fondo-amarillo.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    padding: 100px 40px 200px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    z-index: 20;
}

.experiencia-line {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #000000;
    z-index: 2;
}

.experiencia-line-top {
    top: -30px;
}

.experiencia-line-bottom {
    bottom: -70px;
}

.experiencia-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

/* Decoraciones de la sección experiencia */
.experiencia-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.experiencia-pintura-wrapper {
    position: absolute;
    left: -150px;
    top: 340px;
    z-index: 1;
}

.experiencia-pintura-img {
    width: 200px;
    height: auto;
    display: block;
}

.experiencia-churro-wrapper {
    position: absolute;
    right: -0px;
    top: 5%;
    z-index: 1;
}

.experiencia-churro-img {
    width: 150px;
    height: auto;
    transform: rotate(25deg);
    display: block;
}

.experiencia-pintura-turqueza-mobile {
    display: none;
    position: absolute;
    pointer-events: none;
}

.experiencia-intro {
    font-family: var(--font-nunito);
    font-size: 20px;
    font-weight: 700;
    font-style: normal;
    font-kerning: normal;
    color: rgb(0, 0, 0);
    text-decoration-line: none;
    text-decoration-thickness: initial;
    text-decoration-style: initial;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.6;
}

.experiencia-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.experiencia-item {
    background-color: transparent;
    padding: 30px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.experiencia-item:hover {
    transform: translateY(-5px);
}

.experiencia-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.experiencia-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid rgb(0, 0, 0);
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-nunito);
    font-size: 1.5rem;
    font-weight: 700;
    color: rgb(0, 0, 0);
    flex-shrink: 0;
}

/* Forma blob orgánica reutilizable - Componente para imágenes con recorte orgánico */
.experiencia-image-wrapper {
    width: 100px;
    height: 100px;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    /* Clip-path con forma de paleta de pintura (ovalada con indentación para pulgar) */
    clip-path: polygon(
        20% 12%, 
        25% 8%, 
        30% 5%, 
        50% 2%, 
        70% 5%, 
        80% 8%, 
        90% 15%, 
        98% 25%, 
        100% 40%, 
        100% 55%, 
        98% 70%, 
        90% 82%, 
        80% 90%, 
        70% 95%, 
        50% 98%, 
        30% 95%, 
        20% 90%, 
        10% 82%, 
        2% 70%, 
        0% 55%, 
        0% 40%, 
        2% 25%, 
        10% 15%
    );
}

.experiencia-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Responsive: ajustar tamaño del wrapper en diferentes breakpoints */
@media (max-width: 768px) {
    .experiencia-image-wrapper {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 576px) {
    .experiencia-image-wrapper {
        width: 150px;
        height: 150px;
    }
}

.experiencia-item h3 {
    font-family: var(--font-nunito);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: rgb(0, 0, 0);
    text-align: center;
}

.experiencia-item p {
    font-family: var(--font-nunito);
    font-size: 20px;
    font-weight: 400;
    font-style: normal;
    font-kerning: normal;
    color: rgb(0, 0, 0);
    text-decoration-line: none;
    text-decoration-thickness: initial;
    text-decoration-style: initial;
    line-height: 1.6;
    text-align: center;
    margin: 0;
}

/* Galería Section */
.galeria {
    background-image: url('assets/images/fondo-verde.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    padding: 100px 40px 0 40px;
    min-height: auto;
    position: relative;
    overflow: hidden;
    padding-bottom: 50px;
    z-index: 25;
}

.galeria-line {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #000000;
    z-index: 100;
}

.galeria-line-top {
    top: -30px;
}

.galeria-line-bottom {
    bottom: 70px;
}

.galeria-line-vertical {
    position: absolute;
    left: 55%;
    top: -30px;
    bottom: 70px;
    width: 2px;
    background-color: rgb(0, 0, 0);
    z-index: 100;
}

/* Decoraciones de la galería */
.galeria-brush-decoration {
    position: absolute;
    left: -8px;
    top: -280px;
    width: 50%;
    height: 100%;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 0;
    overflow: hidden;
    pointer-events: none;
}

.galeria-brush-img {
    max-width: 35%;
    max-height: 35%;
    height: auto;
    width: auto;
    object-fit: contain;
}

.galeria-flowers-decoration {
    position: absolute;
    left: -68px;
    top: 60%;
    width: 50%;
    height: 100%;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding-left: 0;
    overflow: visible;
    pointer-events: none;
}

.galeria-flowers-img {
    max-width: 40%;
    max-height: 40%;
    height: auto;
    width: auto;
    object-fit: contain;
}

.galeria-coffee-decoration {
    position: absolute;
    right: 50%;
    top: 47%;
    transform: translateY(-50%) rotate(18deg);
    width: 30%;
    height: 100%;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 20px;
    overflow: visible;
    pointer-events: none;
}

.galeria-coffee-img {
    max-width: 40%;
    max-height: 40%;
    height: auto;
    width: auto;
    object-fit: contain;
}

.galeria-circulos-decoration {
    position: absolute;
    right: 39%;
    top: 40%;
    transform: translateY(-50%) rotate(-10deg);
    width: 40%;
    height: 35%;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 20px;
    overflow: visible;
    pointer-events: none;
}

.galeria-pintura-rosada-mobile {
    display: none;
    position: absolute;
    pointer-events: none;
}

.galeria-pintura-azul-mobile {
    display: none;
    position: absolute;
    pointer-events: none;
}

.galeria-circulos-img {
    max-width: 40%;
    max-height: 40%;
    height: auto;
    width: auto;
    object-fit: contain;
}

.galeria-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
}

.galeria-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Columna Izquierda - Texto */
.galeria-left {
    position: relative;
    padding: 40px 0 0 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 105%;
}

.galeria-subtitle {
    font-family: var(--font-nunito);
    font-size: 20px;
    font-weight: 700;
    font-style: normal;
    font-kerning: normal;
    color: rgb(0, 0, 0);
    text-decoration-line: none;
    text-decoration-thickness: initial;
    text-decoration-style: initial;
    margin-top: 10px;
    margin-bottom: 20px;
    line-height: 1.4;
    letter-spacing: -0.2px;
    margin-left: 10%;
}

.galeria-text {
    font-family: var(--font-nunito);
    font-size: 20px;
    font-weight: 400;
    font-style: normal;
    font-kerning: normal;
    line-height: 1.7;
    letter-spacing: -0.2px;
    color: rgb(0, 0, 0);
    text-decoration-line: none;
    text-decoration-thickness: initial;
    text-decoration-style: initial;
    margin-top: 0px;
    margin-bottom: 10px;
    width: 100%;
    margin-left: -0%;
}

.galeria-text strong {
    font-weight: 700;
}

/* Columna Derecha - Grid de imágenes */
.galeria-right {
    position: relative;
    padding: 40px 0 0 0;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    overflow: hidden;
    max-height: 990px;
}

.galeria-right::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 300px;
    background: linear-gradient(to bottom, transparent 0%, rgba(244, 228, 195, 0.4) 40%, rgba(244, 228, 195, 0.8) 70%, rgb(244, 228, 195) 100%);
    pointer-events: none;
    z-index: 10;
}

.galeria-grid {
    column-count: 2;
    column-gap: 20px;
    width: 90%;
    max-width: 500px;
}

.galeria-item {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    max-height: 280px;
    width: 100%;
    display: inline-block;
    break-inside: avoid;
    margin-bottom: 20px;
}

/* Alturas diferentes para cada imagen, mismo width, limitando a 280px máximo */
.galeria-item:nth-child(1) {
    height: 250px;
}

.galeria-item:nth-child(2) {
    height: 220px;
}

.galeria-item:nth-child(3) {
    height: 280px;
}

.galeria-item:nth-child(4) {
    height: 205px;
}

.galeria-item:nth-child(5) {
    height: 260px;
}

.galeria-item:nth-child(6) {
    height: 180px;
}

.galeria-item:nth-child(7) {
    height: 270px;
}

.galeria-item:nth-child(8) {
    height: 200px;
}

.galeria-item:nth-child(9) {
    height: 240px;
}

.galeria-item:nth-child(10) {
    height: 160px;
}

.galeria-item:nth-child(11) {
    height: 242px;
}

.galeria-item:nth-child(12) {
    height: 190px;
}

.galeria-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.galeria-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


.btn-ver-mas {
    display: inline-block;
    padding: 16px 32px;
    background-color: var(--pink);
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 32px;
    font-family: var(--font-nunito);
    font-weight: 700;
    font-size: 16px;
    letter-spacing: -0.2px;
    text-align: center;
    margin: 0 auto;
    display: block;
    width: fit-content;
    transition: all 0.3s ease;
}

.btn-ver-mas:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(254, 167, 239, 0.4);
}

/* Contacto Section */
.contacto {
    background-color: rgb(244, 228, 195);
    padding: 100px 40px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.contacto-line {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #000000;
    z-index: 100;
}

.contacto-line-top {
    top: -30px;
}

.contacto-line-bottom {
    bottom: -20px;
}

.contacto-line-vertical {
    position: absolute;
    left: calc(30% + 40px);
    top: -30px;
    bottom: 70px;
    width: 2px;
    height: 112%;
    background-color: rgb(0, 0, 0);
    z-index: 100;
}

.contacto-churro-decoration {
    position: absolute;
    left: calc(24% + 20px);
    top: 80%;
    transform: translateY(-50%) rotate(25deg);
    z-index: 50;
    pointer-events: none;
}

.contacto-churro-img {
    width: 150px;
    height: auto;
    display: block;
}

.contacto-content {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.contacto-layout {
    display: grid;
    grid-template-columns: 30% 70%;
    gap: 80px;
    align-items: start;
    width: 100%;
}

/* Panel Izquierdo - Reservas */
.contacto-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    width: 100%;
    padding: 0 20px;
    justify-content: center;
}

.contacto-logo {
    width: 400px;
    height: auto;
    margin-bottom: -80px;
    max-width: 160%;
    margin-top: -50%;
    margin-left: -10%;
}

.contacto-reservas-title {
    font-family: var(--font-nunito);
    font-size: 20px;
    font-weight: 700;
    color: rgb(0, 0, 0);
    margin-bottom: 20px;
    text-align: left;
}

.contacto-reservas-title strong {
    font-weight: 700;
}

.contacto-reservas-text {
    font-family: var(--font-nunito);
    font-size: 20px;
    font-weight: 400;
    font-style: normal;
    font-kerning: normal;
    color: rgb(0, 0, 0);
    text-decoration-line: none;
    text-decoration-thickness: initial;
    text-decoration-style: initial;
    line-height: 1.6;
    /* margin-bottom: 15px; */
    text-align: left;
    max-width: 100%;
}

/* Panel Derecho - Contacto */
.contacto-right {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 0px;
}

.contacto-description {
    font-family: var(--font-nunito);
    font-size: 1em;
    font-weight: 400;
    font-style: normal;
    font-kerning: normal;
    line-height: 1.6;
    letter-spacing: -0.2px;
    color: rgb(0, 0, 0);
    text-decoration-line: none;
    text-decoration-thickness: initial;
    text-decoration-style: initial;
}

.contacto-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.contacto-info-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contacto-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    flex-shrink: 0;
}

.contacto-info-item span,
.contacto-info-item a {
    font-family: var(--font-nunito);
    font-size: 1em;
    font-weight: 400;
    color: rgb(0, 0, 0);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contacto-info-item a:hover {
    color: var(--primary-green);
    text-decoration: underline;
}

.contacto-form {
    background-color: var(--beige);
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid transparent;
    border-radius: 8px;
    font-family: var(--font-nunito);
    font-size: 1rem;
    color: var(--text-dark);
    background-color: var(--white);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(196, 220, 73, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    width: 100%;
    padding: 16px 32px;
    background-color: var(--primary-green);
    color: var(--text-dark);
    border: none;
    border-radius: 32px;
    font-family: var(--font-nunito);
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: -0.2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(196, 220, 73, 0.4);
}

/* Footer */
.footer {
    background-color: var(--beige);
    padding: 30px 40px 20px;
    margin-top: 40px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-social {
    display: flex;
    gap: 20px;
}

.footer-social a {
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    transform: translateY(-3px);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-bottom p {
    font-family: var(--font-nunito);
    font-size: 0.9rem;
    color: var(--text-dark);
    opacity: 0.7;
}

.footer-logo {
    font-family: var(--font-caveat);
    font-size: 2rem;
    font-weight: 400;
    color: var(--text-dark);
}

.footer-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    font-family: var(--font-nunito);
    font-weight: 700;
    font-size: 13.33px;
    text-transform: uppercase;
    color: var(--text-dark);
    text-decoration: none;
    letter-spacing: -0.2px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-green);
}

/* Ajustar background-attachment en móviles para mejor rendimiento */
@media (max-width: 768px) {
    .hero,
    .nosotros,
    .experiencia,
    .eventos,
    .galeria,
    .contacto {
        background-attachment: scroll !important;
    }
}

/* Responsive Design */
@media (max-width: 968px) {
    .sidebar {
        padding: 15px 10px;
        right: 5px;
    }
    
    .sidebar-content {
        gap: 15px;
    }
    
    .sidebar-link {
        width: 50px;
        height: 50px;
        font-size: 7px;
        padding: 2px;
    }

    .nav-container {
        padding: 0 20px;
    }

    .nav-logo-img {
        width: 150px;
        height: 150px;
        transform: translate(0px, -25px) rotate(0deg);
    }
    
    .nav-paint-decoration {
        top: 20px;
        transform: translateX(-120%);
    }
    
    .nav-paint-img {
        height: 70px;
    }
    
    .nav-paint-decoration-red {
        top: 0px;
        right: 35%;
        height: 40px;
    }
    
    .nav-paint-img-red {
        height: 70px;
        transform: translateY(-40px);
    }
    
    .nav-paint-decoration-turquoise {
        top: -5px;
        right: -1%;
        height: 40px;
    }
    
    .nav-paint-img-turquoise {
        height: 70px;
        transform: translateY(-40px);
    }

    .hero {
        padding: 80px 20px;
        margin-top: 60px;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-description {
        font-size: 18px;
        max-width: 100%;
    }

    .nosotros-layout,
    .eventos-layout,
    .galeria-layout,
    .contacto-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .nosotros-right,
    .eventos-right,
    .galeria-right {
        justify-content: center;
        padding: 20px 0;
        max-height: 1800px;
    }

    .nosotros-image-wrapper {
        max-width: 100%;
        margin-right: 0;
        min-height: 500px;
        width: 100%;
    }
    
    .nosotros-main-image {
        height: auto;
        min-height: 500px;
        object-fit: contain;
    }
    
    .nosotros-sticker {
        position: absolute;
        top: -30px;
        right: 90%;
        width: 75px;
        height: auto;
        transform: rotate(-1deg);
        z-index: 3;
        filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
    }

    .eventos-image-wrapper {
        max-width: 100%;
    }

    .galeria-grid {
        column-count: 2;
        max-width: 100%;
    }

    .section-title {
        font-size: 42px;
        margin-left: 0;
        text-align: center;
    }

    .nosotros-subtitle,
    .galeria-subtitle {
        margin-left: 0;
        text-align: center;
    }

    .nosotros-text,
    .galeria-text,
    .eventos-text {
        margin-left: 0;
        width: 100%;
    }

    .eventos-text {
        margin-left: 0;
    }

    .contacto-layout {
        grid-template-columns: 1fr;
    }

    .contacto-left {
        align-items: center;
        text-align: center;
    }

    .contacto-logo {
        width: 250px;
        max-width: 100%;
        margin-left: 0;
    }

    .contacto-reservas-text {
        text-align: center;
    }

    .contacto-line-vertical,
    .eventos-line-vertical,
    .galeria-line-vertical {
        display: none;
    }

    .experiencia-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .sidebar {
        padding: 12px 8px;
        right: 3px;
    }
    
    .sidebar-content {
        gap: 12px;
    }
    
    .sidebar-link {
        width: 45px;
        height: 45px;
        font-size: 6px;
        padding: 1.5px;
    }
    
    .nav {
        height: 60px;
    }
    
    .nav-logo {
        padding-top: 40px;
    }
    
    .nav-logo-img {
        width: 120px;
        height: 120px;
        transform: translate(0px, -20px) rotate(0deg);
    }
    
    .nav-paint-decoration {
        top: 15px;
        transform: translateX(-100%);
    }
    
    .nav-paint-img {
        height: 50px;
    }
    
    .nav-paint-decoration-red {
        top: 0px;
        right: 30%;
        height: 30px;
    }
    
    .nav-paint-img-red {
        height: 50px;
        transform: translateY(-30px);
    }
    
    .nav-paint-decoration-turquoise {
        top: -3px;
        right: 0%;
        height: 30px;
    }
    
    .nav-paint-img-turquoise {
        height: 50px;
        transform: translateY(-30px);
    }
    
    .hero {
        padding: 60px 20px;
        margin-top: 50px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-description {
        font-size: 16px;
    }

    .section-title {
        font-size: 36px;
        margin-top: 40px;
    }
    
    .nosotros-title {
        font-size: 28px;
        line-height: 1.2;
    }

    .contacto-title {
        font-size: 32px;
    }

    .nosotros {
        padding: 20px 20px 60px 20px;
        min-height: 200vh;
        overflow: visible;
        align-items: flex-start;
    }
    
    .nosotros-content {
        padding-top: 0;
    }
    
    .nosotros-line {
        left: 0;
        width: 100%;
    }
    
    .eventos,
    .experiencia,
    .galeria,
    .contacto {
        padding: 60px 20px;
    }

    .nosotros-layout,
    .eventos-layout,
    .galeria-layout,
    .contacto-layout {
        gap: 30px;
    }

    .galeria-grid {
        column-count: 1;
        max-width: 100%;
    }

    .galeria-item {
        max-height: 400px;
    }

    .eventos-gifs {
        flex-direction: column;
        align-items: center;
    }

    .eventos-gif {
        height: 60px;
    }

    /* Ajustar decoraciones para móviles - hacerlas más pequeñas y mejor posicionadas */
    .hero-brush-decoration {
        top: -50px;
        left: -20px;
        width: 30%;
    }
    
    .hero-brush-img {
        max-width: 60%;
        max-height: 60%;
    }
    
    .hero-flowers-decoration {
        top: 200px;
        left: -10px;
        width: 25%;
    }
    
    .hero-flowers-img {
        max-width: 50%;
        max-height: 50%;
    }
    
    .hero-coffee-decoration {
        right: 10px;
        top: 60%;
        width: 35%;
    }
    
    .hero-coffee-img {
        max-width: 50%;
        max-height: 50%;
    }
    
    .hero-churro-decoration {
        right: 20px;
        top: 50%;
        width: 30%;
    }
    
    .hero-churro-img {
        max-width: 40%;
        max-height: 40%;
    }
    
    .hero-flower-blue-decoration {
        right: 50px;
        bottom: 10px;
        width: 30%;
    }
    
    .hero-flower-blue-img {
        max-width: 30%;
        max-height: 30%;
    }
    
    .decoration-churro-wrapper {
        top: -100%;
        left: -100px;
    }
    
    .decoration-churro {
        width: 120px;
    }
    
    .decoration-flores-rosa-wrapper {
        top: -15%;
        left: -80px;
    }
    
    .decoration-flores-rosa {
        width: 100px;
    }
    
    .decoration-carita-wrapper {
        top: -80%;
        right: -80px;
    }
    
    .decoration-carita {
        width: 80px;
    }
    
    .experiencia-pintura-wrapper {
        left: -80px;
        top: 200px;
    }
    
    .experiencia-pintura-img {
        width: 120px;
    }
    
    .experiencia-churro-wrapper {
        right: 10px;
        top: 10%;
    }
    
    .experiencia-churro-img {
        width: 100px;
    }
    
    .galeria-brush-decoration {
        top: -150px;
        left: -5px;
        width: 30%;
    }
    
    .galeria-flowers-decoration {
        left: -30px;
        top: 50%;
        width: 35%;
    }
    
    .galeria-coffee-decoration {
        right: 30%;
        top: 45%;
        width: 25%;
    }
    
    .galeria-coffee-img {
        max-width: 60%;
        max-height: 60%;
    }
    
    .galeria-circulos-decoration {
        right: 25%;
        top: 35%;
        width: 30%;
    }
    
    .contacto-churro-decoration {
        left: calc(50% - 40px);
        top: 70%;
        width: 80px;
    }
    
    .contacto-churro-img {
        width: 80px;
    }

    /* Las líneas horizontales se mantienen visibles en móviles */
    
    .nosotros-line-top {
        top: 30px;
    }
    
    .nosotros-line {
        left: 0;
        width: 100%;
    }
}

@media (max-width: 576px) {
    .sidebar {
        padding: 12px 6px;
        right: 3px;
        top: 225px;
    }
    
    .sidebar-content {
        gap: 10px;
    }
    
    .sidebar-link {
        width: 42px;
        height: 42px;
        font-size: 5.5px;
        padding: 1px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
    }
    
    .sidebar-link:hover {
        transform: scale(1.15);
    }
    
    .nav {
        height: 50px;
        padding: 5px 0;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .nav-logo {
        padding-top: 30px;
    }
    
    .nav-logo-img {
        width: 100px;
        height: 100px;
        transform: translate(0px, -15px) rotate(0deg);
    }
    
    .nav-btn-reserva {
        padding: 4px 8px;
        font-size: 7px;
        margin-top: 8px;
        border-radius: 10px;
    }
    
    .nav-paint-decoration {
        top: 30px;
        transform: translateX(-80%);
    }
    
    .nav-paint-img {
        height: 40px;
    }
    
    .nav-paint-decoration-red {
        top: 0px;
        right: 25%;
        height: 25px;
    }
    
    .nav-paint-img-red {
        height: 40px;
        transform: translateY(-25px);
    }
    
    .nav-paint-decoration-turquoise {
        top: -2px;
        right: 2%;
        height: 25px;
    }
    
    .nav-paint-img-turquoise {
        height: 40px;
        transform: translateY(-25px);
    }

    .hero {
        padding: 40px 15px;
        margin-top: -20px;
        min-height: 70vh;
    }
    
    .hero-content {
        max-width: 240px;
    }

    .hero-title {
        font-size: 28px;
        line-height: 1.2;
    }

    .hero-description {
        font-size: 16px;
        padding: 0 10px;
    }

    .section-title {
        font-size: 28px;
        margin-top: 50px;
        margin-bottom: 20px;
        letter-spacing: -0.7px;
    }
    
    .nosotros-title {
        font-size: 38px;
        line-height: 1.2;
        letter-spacing: -1.7px;
    }
    
    .nosotros-left {
        position: relative;
        padding: 50px 0px 0px 0px;
    }
    
    .nosotros-line-top {
        top: 50px;
    }
    
    .nosotros-line {
        margin-bottom: 270px;
        left: 0;
        width: 100%;
    }

    .contacto-title {
        font-size: 24px;
        margin-top: 20px;
        margin-bottom: 20px;
        letter-spacing: -0.7px;
    }

    .nosotros {
        /* padding: 10px 15px 40px 15px; */
        min-height: 80vh;
        overflow: visible;
        align-items: flex-start;
    }
    
    .nosotros-content {
        padding-top: 0;
    }

    .eventos,
    .experiencia,
    .galeria,
    .contacto {
        padding: 40px 15px;
    }

    .nosotros-subtitle,
    .galeria-subtitle,
    .experiencia-intro,
    .eventos-text,
    .nosotros-text,
    .galeria-text,
    .contacto-description,
    .contacto-reservas-text {
        font-size: 16px;
    }

    .nosotros-layout,
    .eventos-layout,
    .galeria-layout,
    .contacto-layout {
        gap: 20px;
        margin-top: 30px;
    }
    
    .nosotros-image-wrapper {
        min-height: 800px;
        width: 100%;
    }
    
    .nosotros-main-image {
        height: auto;
        min-height: 200px;
        object-fit: contain;
    }
    
    .nosotros-sticker {
        position: absolute;
        top: -30px;
        right: 90%;
        width: 75px;
        height: auto;
        transform: rotate(-1deg);
        z-index: 3;
        filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
    }

    .contacto-logo {
        width: 200px;
    }

    .contacto-info-item {
        flex-wrap: wrap;
        gap: 10px;
    }

    .contacto-icon {
        width: 20px;
        height: 20px;
    }

    .experiencia-grid {
        gap: 20px;
    }

    .experiencia-item {
        padding: 20px;
    }

    .experiencia-header {
        gap: 15px;
    }

    .experiencia-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .experiencia-image-wrapper {
        width: 150px;
        height: 150px;
    }

    .galeria-item {
        margin-bottom: 15px;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }

    .footer-links a {
        font-size: 12px;
    }
    
    /* Ajustes adicionales de decoraciones para móviles pequeños */
    .hero-brush-decoration {
        top: -17%;
        left: -45px;
        width: 75%;
    }
    
    .hero-brush-img {
        max-width: 50%;
        max-height: 50%;
    }
    
    .hero-flowers-decoration {
        top: 75%;
        left: -5px;
        width: 50%;
    }
    
    .hero-flowers-img {
        max-width: 40%;
        max-height: 40%;
    }
    
    .hero-coffee-decoration {
        right: 5px;
        top: 79%;
        width: 60%;
    }
    
    .hero-coffee-img {
        max-width: 45%;
        max-height: 45%;
    }
    
    .hero-churro-decoration {
        right: -50px;
        top: 43%;
        width: 100%;
    }
    
    .hero-churro-img {
        max-width: 35%;
        max-height: 35%;
    }
    
    .hero-flower-blue-decoration {
        right: 30%;
        bottom: 30px;
        width: 45%;
    }
    
    .hero-flower-blue-img {
        max-width: 25%;
        max-height: 25%;
    }
    
    .decoration-churro-wrapper {
        top: 44%;
        left: -50px;
    }
    
    .decoration-churro {
        width: 80px;
        margin-top: -300px;
        margin-left: -30px;
    }
    
    .decoration-flores-rosa-wrapper {
        top: 115%;
        left: -50px;
    }
    
    .decoration-flores-rosa {
        width: 70px;
        margin-top: -200px;
        margin-left: -20px;
    }
    
    .decoration-carita-wrapper {
        top: 60%;
        right: -50px;
    }
    
    .decoration-carita {
        width: 60px;
        margin-top: -139px;
        margin-left: -80px;
    }
    
    .experiencia-pintura-wrapper {
        left: -210px;
        top: 420px;
        z-index: -1;
    }
    
    .experiencia-pintura-img {
        width: 100%;
    }
    
    .experiencia-churro-wrapper {
        right: -95px;
        top: 12%;
        width: 70%;
        z-index: -1;
    }
    
    .experiencia-churro-img {
        width: 100%;
    }
    
    .experiencia-pintura-turqueza-mobile {
        display: block;
        position: absolute;
        pointer-events: none;
        z-index: -1;
        top: 64%;
        left: 10px;
    }
    
    .experiencia-pintura-turqueza-img {
        width: 100%;
        height: auto;
    }
    
    .galeria-brush-decoration {
        top: -650px;
        left: -70px;
        width: 175%;
    }
    
    .galeria-flowers-decoration {
        left: -195px;
        top: 53%;
        width: 340%;
    }
    
    .galeria-coffee-decoration {
        right: -30%;
        top: 50%;
        width: 100%;
        z-index: -1;
    }
    
    .galeria-coffee-img {
        max-width: 50%;
        max-height: 50%;
    }
    
    .galeria-circulos-decoration {
        right: -30%;
        top: 10%;
        width: 85%;
        z-index: -1;
    }
    
    .contacto-churro-decoration {
        left: calc(50% - 25px);
        top: 45%;
        width: 40%;
    }
    
    .contacto-churro-img {
        width: 100%;
    }
    
    .experiencia-line-top {
        top: 20px;
    }
    
    .eventos-line-top {
        top: 30px;
    }
    
    .eventos-left {
        padding: 0px 0;
    }
    
    .galeria-left {
        padding: 0px 0 0 0;
    }
    
    .galeria-line-top {
        top: 10px;
    }
    
    .contacto-line-bottom {
        bottom: -60px;
    }
    
    .contacto-line-top {
        top: -70px;
    }
    
    .contacto-reservas-text {
        max-width: 90%;
    }
    
    .contacto-reservas-title {
        margin-top: 40px;
    }
    
    .galeria-pintura-rosada-mobile {
        display: block;
        position: absolute;
        pointer-events: none;
        z-index: -1;
        left: -120px;
        top: 20%;
        width: 90%;
    }
    
    .galeria-pintura-rosada-img {
        width: 100%;
        height: auto;
    }
    
    .galeria-pintura-azul-mobile {
        display: block;
        position: absolute;
        pointer-events: none;
        z-index: -1;
        right: -170px;
        top: 79%;
        width: 200%;
    }
    
    .galeria-pintura-azul-img {
        width: 100%;
        height: auto;
    }
    
    .experiencia {
        padding: 60px 15px 120px 15px;
        min-height: auto;
    }
    
    .experiencia-line-bottom {
        bottom: 500px;
    }
    
    .experiencia-content {
        min-height: 2150px;
    }
}
