/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d1b1b 50%, #1a1a1a 100%);
    color: white;
    line-height: 1.6;
    max-width: 100vw;
    overflow-x: hidden;
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    margin: 0;
    padding: 0;
}

html {
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 86vw;
    margin: 0 auto;
}

/* ===== UTILITY CLASSES ===== */
.red { color: #C13434; }
.gray { color: #F2E7E7; }

/* ===== HEADER & NAVIGATION ===== */
header {
    background: #C13434;
    padding: clamp(0.8rem, 2vh, 1.5rem) 0;
    position: fixed;
    width: 100vw;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    font-weight: bold;
    color: #ffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo img {
    height: clamp(3vh, 5vw, 6vh);
    width: auto;
}

nav ul {
    display: flex;
    list-style: none;
    gap: clamp(1rem, 3vw, 3rem);
    font-size: clamp(0.8rem, 1.2vw, 1.1rem);
}

nav a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

nav a:hover {
    color: #C13434;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.hamburger span {
    width: clamp(20px, 4vw, 30px);
    height: clamp(2px, 0.5vw, 4px);
    background: white;
    margin: clamp(2px, 0.5vw, 4px) 0;
    transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* ===== HERO SECTION ===== */
#inicio {
    background-image: url(img/INICIO.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: clamp(60px, 10vh, 100px) 0 0 0;
    overflow: hidden;
    min-height: 100vh;
}

.hero {
    position: relative;
    display: flex;
    align-items: center;
}

.hero-content {
    margin-top: clamp(3vh, 5vw, 8vh);
    text-align: left;
    padding: clamp(40px, 8vh, 100px) 0;
}

.hero h1 {
    font-size: clamp(2.5rem, 4.7vw, 5rem);
    font-weight: bold;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.1;
}

.hero h2 {
    font-size: clamp(1.8rem, 2.8vw, 3rem);
    font-weight: bold;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.1;
}

.hero h3 {
    font-size: clamp(1.2rem, 1.6vw, 1.8rem);
    margin-bottom: 2rem;
    color: #ffff;
}

.hero p {
    font-size: clamp(1rem, 1.4vw, 1.3rem);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-image {
    position: absolute;
    bottom: -3vw;
    right: -45vw;
    height: clamp(70vh, 70vw, 70vh);
    width: clamp(70vw, 70vw, 70vw);
    overflow: hidden;
    max-width: 80vw;
}

.hero-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* ===== DECORATIVE ELEMENTS ===== */
/* Assets */
.asset {
    position: absolute;
    width: 10vw;
    height: 10vw;
    z-index: 1;
}

.main-image {
    position: relative;
    z-index: 2;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.asset-1 {
    top: clamp(30vh, 40vw, 50vh);
    right: clamp(25vw, 35vw, 45vw);
    z-index: 2;
}

.asset-2 {
    top: clamp(8vh, 12vw, 15vh);
    right: clamp(10vw, 15vw, 20vw);
    z-index: 3;
}

.asset-3 {
    bottom: clamp(8vh, 12vw, 15vh);
    right: clamp(5vw, 10vw, 15vw);
    z-index: 3;
    width: 6vw;
    height: 6vw;
}

.asset-4 {
    bottom: clamp(2vh, 5vw, 7vh);
    left: clamp(2vw, 4vw, 6vw);
    z-index: 1;
    width: 7vw;
    height: 7vw;
}

/* Clouds */
#salas {
    background-image: url(img/SALAS.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 80vh;
    position: relative;
}

#salas .cloud {
    position: absolute;
    width: 10vw;
    height: 10vw;
    z-index: 0;
}

#salas .cloud-1 {
    top: clamp(6vh, 8vw, 12vh);
    left: clamp(2vw, 4vw, 6vw);
    z-index: 0;
}

#salas .cloud-2 {
    top: clamp(2vh, 3vw, 5vh);
    left: clamp(1vw, 2vw, 4vw);
    z-index: 0;
}

/* ===== ANIMATIONS ===== */
@keyframes pulse {
    0% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.2); opacity: 1; }
    100% { transform: scale(1); opacity: 0.7; }
}

/* ===== BUTTONS ===== */
.container-cta-button {
    display: flex;
    justify-content: center;
}

/* Base button styles */
.cta-button, .cta-button-dos, .cta-button-tres, .rooms-button {
    border: none;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
    padding: clamp(12px, 2vh, 20px) clamp(25px, 4vw, 35px);
    font-size: clamp(1rem, 2vw, 1.8rem);
    border-radius: clamp(15px, 3vw, 25px);
}

.cta-button {
    background: #000;
    color: white;
    padding: clamp(12px, 2vh, 20px) clamp(30px, 5vw, 60px);
    border-radius: clamp(30px, 5vw, 60px);
    position: relative;
    z-index: 5;
}

.cta-button:hover {
    background: #cc3333;
}

.cta-button-dos {
    background: #C13434;
    color: white;
    border-radius: clamp(30px, 5vw, 60px);
}

.cta-button-dos:hover {
    background: #000;
}

.cta-button-tres {
    background: #1E1E1E;
    color: white;
    border: clamp(2px, 0.3vw, 4px) solid #ffff;
    margin-top: clamp(1rem, 3vh, 2rem);
    border-radius: clamp(30px, 5vw, 60px);
}

.cta-button-tres:hover {
    background: #C13434;
}

.rooms-button {
    background: #C13434;
    color: white;
    font-size: clamp(1rem, 1.2vw, 1.2rem);
}

.rooms-button:hover {
    background: #000;
}

/* ===== SECTIONS & TYPOGRAPHY ===== */
section {
    padding: clamp(40px, 8vh, 100px) 0;
}

.section-title {
    text-align: center;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    margin-bottom: clamp(2rem, 4vh, 4rem);
}

.section-subtitle {
    text-align: center;
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: 4rem;
    max-width: clamp(600px, 80vw, 900px);
    margin-left: auto;
    margin-right: auto;
}

/* ===== ICONS ===== */
.x-icon, .events-icon, .wsp-icon {
    width: clamp(20px, 3vw, 30px);
    height: clamp(20px, 3vw, 30px);
}

.arrow-icon {
    width: clamp(40px, 6vw, 70px);
    height: clamp(20px, 3vw, 35px);
}

.correo-icon {
    width: clamp(25px, 3vw, 35px);
    height: clamp(18px, 2.5vw, 25px);
}

.ubicacion-icon {
    width: clamp(22px, 3vw, 32px);
    height: clamp(25px, 3vw, 35px);
}

/* Rooms Section */
.rooms-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 14vw;
}

.room-card {
    height: 70vh;
    width: 20vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.room-card h3 {
    font-size: clamp(1.5rem, 2vw, 2rem);
    margin-bottom: 1.5rem;
    color: #ffff;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.room-card p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.golpe {
    background: url(img/el-golpe.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 0%;
    padding: 2.5rem;
    border-radius: clamp(10px, 2vw, 20px);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 75%;
    width: 100%;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.golpe::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.golpe h3,
.golpe p {
    position: relative;
    z-index: 2;
}

.golpe:hover {
    transform: scale(1.02);
    box-shadow: 0 clamp(5px, 1vh, 15px) clamp(15px, 3vh, 35px) rgba(0, 0, 0, 0.5);
}

/* Overlay para información detallada */
.room-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(5px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    border-radius: clamp(10px, 2vw, 20px);
    overflow-y: auto;
    z-index: 10;
}

.golpe:hover .room-overlay {
    opacity: 1;
    visibility: visible;
}

.overlay-content {
    padding: 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Especificaciones del juego */
.game-specs {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: clamp(8px, 1.5vw, 15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    color: white;
}

.spec-item:last-child {
    margin-bottom: 0;
}

.spec-icon {
    font-size: 1.2rem;
    min-width: 25px;
}

/* Descripción del juego */
.game-description {
    color: white;
    line-height: 1.6;
}

.game-description p {
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.game-description p:last-child {
    margin-bottom: 0;
}

.game-description strong {
    color: #C13434;
}

.game-description .highlight {
    color: #C13434;
    font-weight: bold;
    text-align: center;
    font-size: 1rem;
    margin-top: 1rem;
}

/* Recomendaciones */
.game-recommendations {
    background: rgba(193, 52, 52, 0.2);
    padding: 1rem;
    border-radius: clamp(8px, 1.5vw, 15px);
    border: 1px solid rgba(193, 52, 52, 0.3);
}

.recommendation {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    font-size: 0.85rem;
    color: white;
    line-height: 1.4;
}

.recommendation:last-child {
    margin-bottom: 0;
}

.recommendation.highlight-rec {
    background: rgba(193, 52, 52, 0.3);
    padding: 0.8rem;
    border-radius: clamp(6px, 1vw, 12px);
    border: 1px solid rgba(193, 52, 52, 0.5);
}

.rec-icon {
    font-size: 1.1rem;
    min-width: 25px;
    margin-top: 0.1rem;
}

/* Estilos específicos para advertencias */
.recommendation.warning {
    background: rgba(255, 193, 7, 0.2);
    border: 1px solid rgba(255, 193, 7, 0.4);
    padding: 0.8rem;
    border-radius: clamp(6px, 1vw, 12px);
    color: #ffc107;
}

.recommendation.warning .rec-icon {
    color: #ffc107;
}


.maldicion {
    background: url(img/maldicion.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 0%;
    padding: 2.5rem;
    border-radius: clamp(10px, 2vw, 20px);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 75%;
    width: 100%;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.maldicion::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.maldicion h3,
.maldicion p {
    position: relative;
    z-index: 2;
}

.maldicion:hover {
    transform: scale(1.02);
    box-shadow: 0 clamp(5px, 1vh, 15px) clamp(15px, 3vh, 35px) rgba(0, 0, 0, 0.5);
}

.maldicion:hover .room-overlay {
    opacity: 1;
    visibility: visible;
}

.templo {
    background: url(img/templo.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 0%;
    padding: 2.5rem;
    border-radius: clamp(10px, 2vw, 20px);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 75%;
    width: 100%;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.templo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.templo h3,
.templo p {
    position: relative;
    z-index: 2;
}

.templo:hover {
    transform: scale(1.02);
    box-shadow: 0 clamp(5px, 1vh, 15px) clamp(15px, 3vh, 35px) rgba(0, 0, 0, 0.5);
}

.templo:hover .room-overlay {
    opacity: 1;
    visibility: visible;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Pricing Section */

#prices {
    background: #F2E7E7;
    color: #000;
    position: relative;
    overflow: hidden;
}

#prices .cloud {
    position: absolute;
    width: clamp(8vw, 13vw, 15vw);
    height: clamp(8vw, 13vw, 15vw);
    z-index: 1;
    opacity: 0.8;
}

#prices .cloud-2 {
    top: clamp(-60px, -8vh, -100px);
    right: clamp(-40px, -5vw, -70px);
    z-index: 1;
}

#prices .cloud-3 {
    bottom: clamp(-60px, -8vh, -100px);
    left: clamp(-40px, -5vw, -70px);
    z-index: 1;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    margin-bottom: 2rem;
    background: url(img/TB.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: clamp(25px, 5vw, 40px);
    position: relative;
    overflow: hidden;
    max-width: 100%;
}


.pricing-card {
    padding: 4rem;
    text-align: center;
    color: #ffff;
    position: relative;
}

.pricing-card:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 20%;
    right: 0;
    bottom: 20%;
    width: 1px;
    background: rgba(255, 255, 255, 0.8);
    z-index: 1;
}

.pricing-card .price {
    font-size: clamp(1.2rem, 1.6vw, 1.8rem);
    font-weight: bold;
    color: #F2E7E7;
    margin-top: 0.5rem;
    background-color: #000;
    border-radius: clamp(10px, 2vw, 18px);
    padding: 0.8rem 1.2rem;
    display: inline-block;
    min-width: 120px;
}

.persons-icon {
    width: 3.5vw;
    height: 4vh;
}

/* Birthday Packages */
#eventos {
    background-image: url(img/EVENTOS.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    color: #1E1E1E;
    position: relative;
}

#eventos .asset2-1 {
    width: 20vw;
    height: 20vw;
    left: -100px;
    bottom: 70px;
    z-index: 1;
    transform: rotate(100deg);
}

#eventos .asset2-2 {
    width: 7vw;
    height: 7vw;
    top: 350px;
    right: 70px;
    z-index: 1;
    transform: rotate(100deg);
}

.birthday-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 6rem;
    margin-bottom: 3rem;
    color: #F2E7E7;
}

.package-card {
    background: #1E1E1E;
    border-radius: clamp(20px, 4vw, 35px);
    text-align: center;
    overflow: hidden;
}

.package-card h3 {
    font-size: 2vw;
    margin-bottom: 1.5rem;
    background: #C13434;
    border-radius: clamp(20px, 4vw, 35px) clamp(20px, 4vw, 35px) 0px 0px;
    padding: 0.5rem;
}

.package-card ul {
    list-style: none;
    text-align: left;
    padding: 2rem;
}

.package-card li {
    margin-bottom: 3rem;
    padding-left: 1rem;
    position: relative;
}

.package-card li::before {
    content: '●';
    position: absolute;
    left: 0;
}

/* Gift Cards */

#giftcards {
    background: url(img/GIFTCARD.png);
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 100vh;
}

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

.gift-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.gift-features .cta-button {
    background: #333;
    color: white;
    border: 1px solid #ccc;
    padding: 12px 25px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    border-radius: clamp(15px, 3vw, 30px);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    margin: 0 auto;
    white-space: nowrap;
}

.gift-features .cta-button:hover {
    background: #444;
    border-color: #fff;
    transform: scale(1.05);
}

.gift-feature {
    background: #C13434;
    padding: 1.5rem;
    border-radius: clamp(6px, 1vw, 12px);
    text-align: center;
    font-size: clamp(1rem, 1.2vw, 1.3rem);
    font-weight: bold;
}

/* Corporate Section */

#team-building {
    background: url(img/TB.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

#team-building .subtract-1 {
    width: 10vw;
    height: 10vw;
    top: 15vw;
    right: 12vw;
}
#team-building .subtract-2 {
    width: 8vw;
    height: 8vw;
    bottom: 10vw;
    left: 12vw;
}

.team-building-header {
    text-align: center;
    margin-bottom: 2rem;
}

.slogan-banner {
    background: #1E1E1E;
    color: #F2E7E7;
    padding: 8px 20px;
    border-radius: clamp(15px, 3vw, 30px);
    border: 1px solid #000;
    display: inline-block;
    margin-bottom: 1rem;
    font-weight: bold;
    font-size: 1.8rem;
}

.section-title-tb {
    font-size: clamp(2rem, 5vw, 5em);
    font-weight: bold;
    color: #F2E7E7;
    text-align: center;
    line-height: 1.1;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.corporate-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6rem;
    max-width: 60vw;
    margin-bottom: 3rem;
    margin-left: auto;
    margin-right: auto;
}

.corporate-card {
    background: #1E1E1E;
    border-radius: 15px 15px 15px 15px;
    text-align: left;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 280px;
    display: flex;
    flex-direction: column;
}

.corporate-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.card-header {
    background: #F2E7E7;
    padding: 1.2rem 1rem 0.3rem 1rem;
    border-radius: 15px 15px 0 0;
    text-align: center;
    position: relative;
}

.card-header h3 {
    font-size: 1.6rem;
    font-weight: bold;
    color: #c13434;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.corporate-card .duration {
    font-size: 1.8rem;
    font-weight: bold;
    color: #F2E7E7;
    background: #c13434;
    border-radius: clamp(15px, 3vw, 30px);
    padding: 0.8rem 1.5rem;
    margin: 0 auto;
    display: inline-block;
    text-align: center;
    min-width: 150px;
    box-shadow: 0 2px 8px rgba(193, 52, 52, 0.3);
    position: relative;
    z-index: 10;
    transform: translateY(50%);
    margin-bottom: 1rem;
}

.corporate-card ul {
    list-style: none;
    padding: 2.8rem 1.3rem 1.3rem 1.3rem;
    margin: 0;
    background: #1E1E1E;
    border-radius: 0 0 15px 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.corporate-card li {
    margin-bottom: 1.2rem;
    padding-left: 1.4rem;
    position: relative;
    color: #F2E7E7;
    font-size: 1.3rem;
    line-height: 1.5;
    font-weight: 400;
    flex: 1;
    display: flex;
    align-items: flex-start;
}

.corporate-card li:last-child {
    margin-bottom: 0;
}

.corporate-card li::before {
    content: '●';
    position: absolute;
    left: 0;
    color: #F2E7E7;
    font-weight: bold;
    font-size: 1.2rem;
    top: 0.1rem;
}

.whatsapp-button-dos {
    background: #F2E7E7;
    color: #1E1E1E;
    border: none;
    padding: 15px 30px;
    font-size: 2vw;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
    border-radius: clamp(20px, 4vw, 35px);
}

.whatsapp-button-dos:hover {
    background: #128c7e;
}

.customization-message {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1vw;
    color: #F2E7E7;
    line-height: 1.5;
}

.whatsapp-contact {
    text-align: center;
}

/* FAQ Section */
.faq-section {
    background: #f8f8f8;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.faq-section .container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.faq-content {
    z-index: 2;
    position: relative;
}

.faq-title {
    color: #c13434;
    font-size: clamp(1.8rem, 2.5vw, 2.5rem);
    font-weight: bold;
    margin-bottom: 3rem;
    line-height: 1.2;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.8);
    border-radius: clamp(8px, 1.5vw, 15px);
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: bold;
    color: #000;
    font-size: clamp(1rem, 1.1vw, 1.1rem);
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.9);
}

.chevron {
    font-size: clamp(0.8rem, 0.8vw, 0.8rem);
    transition: transform 0.3s ease;
}

.faq-item.active .chevron {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(255, 255, 255, 0.6);
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    margin: 0;
    color: #000;
    line-height: 1.6;
}

.faq-cta-button {
    background: #c13434;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: clamp(1rem, 1.1vw, 1.1rem);
    font-weight: bold;
    border-radius: clamp(15px, 3vw, 30px);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-cta-button:hover {
    background: #660000;
    transform: scale(1.05);
}

.faq-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: clamp(200px, 30vw, 300px);
    height: 100%;
    background: linear-gradient(135deg, #C13434 0%, #cc3333 100%);
    border-radius: 50% 0 0 50%;
    transform: translateX(50%);
    z-index: 1;
}

.faq-decoration::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.1) 100%);
    border-radius: 50% 0 0 50%;
}

/* WhatsApp Button */
.whatsapp-button {
    background: #C13434;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 2vw;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
    border-radius: clamp(20px, 4vw, 35px);
}

.whatsapp-button:hover {
    background: #128c7e;
}

.footer-logo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.footer-logo-icon {
    height: 6vh;
}

.footer-logo-text {
    height: 3vh;
}

/* ===== RESPONSIVE DESIGN ===== */

/* TABLETS (768px - 1024px) */
@media (max-width: 1500px) and (min-width: 769px) {
    .container {
        max-width: 90vw;
    }
    
    /* Navigation */
    nav ul {
        gap: clamp(1.5rem, 2.5vw, 2.5rem);
        font-size: clamp(0.9rem, 1.1vw, 1rem);
    }
    
    /* Hero Section */
    .hero {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-image {
        position: relative;
        bottom: auto;
        right: auto;
        height: 45vh;
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
        order: 2;
    }
    
    .hero-content {
        margin-top: 0;
        padding: clamp(20px, 4vh, 40px) 0;
        order: 1;
        text-align: center;
    }
    
    .hero h1 {
        font-size: clamp(2.5rem, 4vw, 4rem);
    }
    
    .hero h2 {
        font-size: clamp(1.8rem, 2.8vw, 2.5rem);
    }
    
    .hero h3 {
        font-size: clamp(1.2rem, 1.6vw, 1.5rem);
    }
    
    .hero p {
        font-size: clamp(1rem, 1.3vw, 1.2rem);
        max-width: 600px;
        margin: 0 auto 2rem auto;
    }
    
    /* Assets - Hide on tablets for cleaner look */
    .asset-1 {
        display: none;
    }

    .asset-2 {
        display: none;
    }

    .subtract-1 {
        display: none;
    }

    .subtract-2 {
        display: none;
    }
    /* Rooms Grid */
    .rooms-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }

    .room-card {
        height: auto;
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
    }

    .golpe, .maldicion, .templo {
        height: 60vh;
        min-height: 400px;
        padding: 2rem;
    }

    /* Pricing Grid */
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        padding: 0 1rem;
    }

    .pricing-card:nth-child(3)::after,
    .pricing-card:nth-child(4)::after,
    .pricing-card:nth-child(5)::after {
        display: none;
    }

    .pricing-card {
        padding: 2rem 1rem;
    }

    .pricing-card .price {
        font-size: clamp(1.1rem, 2.5vw, 1.4rem);
        padding: 0.6rem 1rem;
        min-width: 100px;
    }

    .persons-icon {
        width: 6vw;
        height: 5vh;
        max-width: 50px;
        max-height: 35px;
    }
    
    /* Birthday Grid */
    .birthday-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 500px;
        margin: 0 auto 3rem auto;
    }
    
    /* Corporate Grid */
    .corporate-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 500px;
        margin: 0 auto 3rem auto;
    }
    
    /* Gift Section */
    .gift-section {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    /* FAQ Section */
    .faq-section .container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .faq-decoration {
        display: none;
    }
    
    /* Location Section */
    .location-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        align-items: center;
    }
    
    .location-title {
        font-size: clamp(1.3rem, 2.5vw, 2rem);
        margin-bottom: 1.5rem;
        padding: 0 1rem;
    }
    
    /* Carousel */
    .carrusel {
        height: 45vh;
        border-radius: 2vw;
    }
    
    /* Clouds - Adjust for tablets */
    #prices .cloud {
        width: clamp(6vw, 10vw, 12vw);
        height: clamp(6vw, 10vw, 12vw);
    }
    
    #prices .cloud-2 {
        top: clamp(-60px, -8vh, -100px);
        right: clamp(-40px, -6vw, -70px);
    }
    
    #prices .cloud-3 {
        bottom: clamp(-60px, -8vh, -100px);
        left: clamp(-40px, -6vw, -70px);
    }

    #giftcards {
        background-position: 25%;
    }
}

/* CELULARES (hasta 768px) */
@media (max-width: 768px) {
    .container {
        max-width: 95vw;
        padding: 0 0.8rem;
    }
    
    /* Navigation */
    .hamburger {
        display: flex;
    }
    
    nav ul {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(280px, 80vw);
        height: 100vh;
        background: #C13434;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2.5rem;
        transition: 0.3s ease;
        z-index: 1000;
        padding: 2rem 0;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
    }
    
    nav ul.active {
        right: 0;
    }
    
    nav ul li {
        width: 100%;
        text-align: center;
    }
    
    nav ul li a {
        display: block;
        padding: 1rem 1.5rem;
        font-size: 1.2rem;
        font-weight: bold;
        transition: all 0.3s ease;
        border-radius: 8px;
        margin: 0 0.5rem;
    }
    
    nav ul li a:hover {
        background: rgba(255, 255, 255, 0.1);
        transform: scale(1.05);
    }
    
    /* Header */
    header {
        padding: clamp(0.5rem, 1.5vh, 1rem) 0;
    }

    footer {
        padding: 0.8rem 0;
        max-width: 100vw;
    }
    
    .logo img {
        height: clamp(2.5vh, 4vw, 4vh);
    }
    
    /* Hero Section */
    
    #inicio {
        max-height: 60vh;
        position: relative;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .hero-image {
        position: relative;
        bottom: auto;
        right: auto;
        height: 35vh;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
        order: 2;
    }
    
    .hero-content {
        text-align: center;
        padding: 0;
        margin-top: 0;
        order: 1;
        margin-bottom: 1rem;
    }
    
    .hero h1 {
        font-size: clamp(1.5rem, 2.5vw, 2.2rem);
        line-height: 1.1;
        margin-bottom: 0.5rem;
    }
    
    .hero h2 {
        font-size: clamp(1.1rem, 1.8vw, 1.6rem);
        line-height: 1.1;
        margin-bottom: 0.5rem;
    }
    
    .hero h3 {
        font-size: clamp(0.9rem, 1.1vw, 1rem);
        margin-bottom: 1.5rem;
    }
    
    .hero p {
        font-size: clamp(0.8rem, 1vw, 0.9rem);
        line-height: 1.5;
        margin-bottom: 1.5rem;
        padding: 0 0.8rem;
    }
    
    .cta-button {
        font-size: clamp(0.8rem, 1.3vw, 1rem);
        padding: clamp(10px, 1.5vh, 15px) clamp(20px, 4vw, 30px);
    }
    
    /* Assets - Hide on mobile for cleaner look */
    .asset-1 {
        display: none;
    }

    .subtract-1 {
        display: none;
    }

    .subtract-2 {
        display: none;
    }

    /* Rooms Section */
    .rooms-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0;
    }

    .room-card {
        height: auto;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
        padding: 0.5rem;
    }

    .room-card h3 {
        font-size: clamp(1.2rem, 1.4vw, 1.4rem);
        margin-bottom: 1rem;
    }

    .golpe, .maldicion, .templo {
        height: 42vh;
        min-height: 260px;
        padding: 1rem;
        margin-bottom: 1rem;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
    }

    .overlay-content {
        padding: 0.8rem;
        gap: 0.8rem;
    }

    .game-specs, .game-recommendations {
        padding: 0.6rem;
    }

    .spec-item, .recommendation {
        font-size: 0.75rem;
        margin-bottom: 0.5rem;
    }

    .game-description p {
        font-size: 0.75rem;
        margin-bottom: 0.6rem;
    }

    .rooms-button {
        font-size: clamp(0.8rem, 2.5vw, 1rem);
        padding: 10px 20px;
        width: 100%;
        max-width: 200px;
    }
    
    /* Pricing Section */
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0;
    }

    .pricing-card {
        padding: 1.2rem 0.8rem;
        margin-bottom: 1rem;
    }

    .pricing-card .price {
        font-size: clamp(1rem, 2vw, 1.2rem);
        padding: 0.6rem 1rem;
        min-width: 120px;
    }

    .persons-icon {
        width: 8vw;
        height: 6vh;
        max-width: 45px;
        max-height: 30px;
    }
    
    .section-subtitle {
        font-size: clamp(0.8rem, 1vw, 0.9rem);
        padding: 0 0.8rem;
    }
    
    /* Clouds - Hide on mobile to prevent overflow */
    #prices .cloud {
        display: none;
    }

    /* Birthday Section */
    .birthday-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 320px;
        margin: 0 auto 2rem auto;
    }
    
    .package-card {
        margin-bottom: 1rem;
        border-radius: clamp(12px, 2.5vw, 20px);
        overflow: hidden;
    }
    
    .package-card h3 {
        font-size: clamp(1.1rem, 1.3vw, 1.2rem);
        padding: 0.8rem;
        border-radius: clamp(12px, 2.5vw, 20px) clamp(12px, 2.5vw, 20px) 0px 0px;
    }
    
    .package-card ul {
        padding: 1.2rem;
    }
    
    .package-card li {
        margin-bottom: 1.2rem;
        font-size: clamp(0.8rem, 1vw, 0.9rem);
    }

    /* Gift Section */
    .gift-section {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .image-giftcards {
        height: 40vh;
    }
    
    .gift-feature {
        padding: 1rem;
        font-size: clamp(0.8rem, 1vw, 0.9rem);
    }

    /* Corporate Section */
    .corporate-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 320px;
        margin: 0 auto 2rem auto;
    }

    .corporate-card {
        margin-bottom: 1.5rem;
        min-height: 200px;
    }

    .card-header {
        padding: 0.8rem 0.5rem 0.2rem 0.5rem;
    }

    .card-header h3 {
        font-size: clamp(1.1rem, 1.3vw, 1.2rem);
        margin-bottom: 0.3rem;
    }

    .corporate-card .duration {
        font-size: clamp(1.1rem, 1.3vw, 1.2rem);
        padding: 0.5rem 1rem;
        min-width: 120px;
        transform: translateY(50%);
        margin-bottom: 0.8rem;
    }

    .corporate-card ul {
        padding: 1.6rem 0.6rem 0.6rem 0.6rem;
    }

    .corporate-card li {
        font-size: clamp(0.8rem, 1vw, 0.9rem);
        margin-bottom: 0.6rem;
        padding-left: 1rem;
    }
    
    .customization-message {
        font-size: clamp(0.75rem, 0.9vw, 0.8rem);
        padding: 0 0.8rem;
    }
    
    /* Team Building Title */
    .section-title-tb {
        font-size: clamp(1.5rem, 2.5vw, 2rem);
        margin-bottom: 1rem;
        padding: 0 0.8rem;
    }
    
    .slogan-banner {
        font-size: clamp(0.9rem, 1.2vw, 1rem);
        padding: 5px 12px;
        margin-bottom: 0.6rem;
    }

    /* FAQ Section */
    .faq-section {
        padding: 40px 0;
    }
    
    .faq-section .container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .faq-title {
        font-size: clamp(1.2rem, 1.6vw, 1.4rem);
        margin-bottom: 2rem;
    }
    
    .faq-question {
        padding: 0.8rem;
        font-size: clamp(0.8rem, 1vw, 0.9rem);
    }
    
    .faq-answer p {
        padding: 0 0.8rem 0.8rem;
        font-size: clamp(0.75rem, 0.9vw, 0.8rem);
    }

    .faq-decoration {
        display: none;
    }
    .location-title {
        font-size: clamp(1rem, 1.8vw, 1.3rem);
        margin-bottom: 1rem;
        padding: 0 0.8rem;
        line-height: 1.2;
    }

    /* Location Section */
    .location-content {
        display: flex !important;
        flex-direction: column !important;
        gap: 1rem !important;
        text-align: center !important;
        grid-template-rows: none !important;
        grid-template-columns: none !important;
    }
    
    .map-container {
        order: 1 !important;
    }
    
    .contact-info {
        order: 2 !important;
    }


    .map-placeholder {
        height: 220px;
        padding: 0.8rem;
    }

    .contact-item {
        font-size: clamp(0.75rem, 0.9vw, 0.8rem);
        gap: 0.6rem;
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
        padding: 0.8rem 0.5rem;
        border-radius: 6px;
    }
    
    .contact-item a {
        gap: 0.6rem;
        justify-content: center;
    }
    
    .contact-text {
        font-size: clamp(0.7rem, 0.8vw, 0.75rem);
        line-height: 1.2;
        max-width: 100%;
        word-break: break-all;
        text-align: center;
    }
    
    .contact-details {
        gap: 0.8rem;
        padding: 0 0.8rem;
    }
    
    /* Footer */
    .footer-logo {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 0.8rem 0;
    }
    
    .footer-logo-icon {
        height: 4vh;
    }
    
    .footer-logo-text {
        height: 2vh;
    }
    
    /* Carousel */
    .carrusel {
        height: 32vh;
        border-radius: 2vw;
    }
    
    .carousel-arrow {
        width: 10vw;
        height: 10vw;
        min-width: 35px;
        min-height: 35px;
        font-size: clamp(1.2rem, 3.5vw, 1.6rem);
    }
    
    .carousel-arrow.prev {
        left: 2vw;
    }
    
    .carousel-arrow.next {
        right: 2vw;
    }
    
    .carousel-dot {
        width: 2.5vw;
        height: 2.5vw;
        min-width: 10px;
        min-height: 10px;
    }
    
    .carousel-nav {
        gap: 1.5vw;
        bottom: 2vh;
    }
    
    /* Clouds - Hide on mobile */
    #salas .cloud {
        display: none;
    }
    
    /* WhatsApp Buttons */
    .whatsapp-button, .whatsapp-button-dos {
        font-size: clamp(0.8rem, 1.3vw, 1rem);
        padding: 10px 15px;
        width: 100%;
        max-width: 280px;
    }
    
    /* Section Titles */
    .section-title {
        font-size: clamp(1.2rem, 1.8vw, 1.6rem);
        margin-bottom: 2rem;
        padding: 0 0.8rem;
    }
    
    /* Testimonials */
    .testimonials-title {
        font-size: clamp(1.1rem, 1.6vw, 1.4rem);
        padding: 0 0.8rem;
    }
}

/* ===== DISPOSITIVOS MUY PEQUEÑOS (hasta 480px) ===== */
@media (max-width: 480px) {
    .container {
        max-width: 98vw;
        padding: 0 0.5rem;
    }

    #inicio {
        max-height: 80vh;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .hero h1 {
        font-size: clamp(1.5rem, 2.5vw, 2.2rem);
    }
    
    .hero h2 {
        font-size: clamp(1.1rem, 1.8vw, 1.6rem);
    }
    
    .hero h3 {
        font-size: clamp(0.9rem, 1.1vw, 1rem);
    }
    
    .hero p {
        font-size: clamp(0.8rem, 1vw, 0.9rem);
        padding: 0 0.5rem;
    }
    
    .room-card {
        max-width: 300px;
    }
    
    .golpe, .maldicion, .templo {
        height: 40vh;
        min-height: 250px;
        padding: 1rem;
    }
    
    .pricing-card {
        padding: 1rem 0.5rem;
    }
    
    .package-card {
        border-radius: clamp(12px, 2.5vw, 20px);
        overflow: hidden;
    }
    
    .package-card h3 {
        border-radius: clamp(12px, 2.5vw, 20px) clamp(12px, 2.5vw, 20px) 0px 0px;
    }
    
    .package-card ul {
        padding: 1rem;
    }
    
    .package-card li {
        margin-bottom: 1rem;
        font-size: clamp(0.8rem, 1vw, 0.9rem);
    }
    
    .corporate-card {
        min-height: 200px;
    }
    
    .corporate-card ul {
        padding: 1.6rem 0.6rem 0.6rem 0.6rem;
    }
    
    .corporate-card li {
        font-size: clamp(0.8rem, 1vw, 0.9rem);
        margin-bottom: 0.6rem;
    }
    
    .faq-question {
        padding: 0.8rem;
        font-size: clamp(0.8rem, 1vw, 0.9rem);
    }
    
    .faq-answer p {
        padding: 0 0.8rem 0.8rem;
        font-size: clamp(0.75rem, 0.9vw, 0.8rem);
    }
    
    .map-placeholder {
        height: 200px;
        padding: 0.5rem;
    }

    
    .location-title {
        font-size: clamp(1rem, 1.8vw, 1.3rem);
        margin-bottom: 1rem;
        padding: 0 0.5rem;
        line-height: 1.2;
    }
    
    /* Location Section - Very Small Devices */
    .location-content {
        display: flex !important;
        flex-direction: column !important;
        gap: 1rem !important;
        text-align: center !important;
        grid-template-rows: none !important;
        grid-template-columns: none !important;
    }
    
    .map-container {
        order: 1 !important;
    }
    
    .contact-info {
        order: 2 !important;
    }
    
    .contact-item {
        font-size: clamp(0.75rem, 0.9vw, 0.8rem);
        gap: 0.6rem;
        flex-direction: column;
        text-align: center;
        padding: 0.8rem 0.5rem;
        border-radius: 6px;
    }
    
    .contact-item a {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }
    
    .contact-text {
        font-size: clamp(0.7rem, 0.8vw, 0.75rem);
        word-break: break-all;
        line-height: 1.2;
        text-align: center;
    }
    
    .contact-details {
        gap: 0.8rem;
        padding: 0 0.5rem;
    }
    
    .carrusel {
        height: 30vh;
    }
    
    .carousel-arrow {
        width: 10vw;
        height: 10vw;
        min-width: 35px;
        min-height: 35px;
    }
    
    .whatsapp-button, .whatsapp-button-dos {
        font-size: clamp(0.8rem, 1.3vw, 1rem);
        padding: 10px 15px;
    }
    
    /* Team Building Title - Very Small Devices */
    .section-title-tb {
        font-size: clamp(1.5rem, 2.5vw, 2rem);
        margin-bottom: 1rem;
        padding: 0 0.5rem;
    }
    
    .slogan-banner {
        font-size: clamp(0.9rem, 1.2vw, 1rem);
        padding: 5px 12px;
        margin-bottom: 0.6rem;
    }

    #giftcards {
        background-position: 25%;
    }
}

/* ===== MEJORAS DE ACCESIBILIDAD Y TÁCTIL ===== */
@media (hover: none) and (pointer: coarse) {
    /* Mejoras para dispositivos táctiles */
    .room-card:hover {
        transform: none;
    }
    
    .golpe:hover, .maldicion:hover, .templo:hover {
        transform: none;
    }
    
    .corporate-card:hover {
        transform: none;
    }
    
    .cta-button:hover, .cta-button-dos:hover, .cta-button-tres:hover {
        transform: none;
    }
    
    .rooms-button:hover {
        transform: none;
    }
    
    .whatsapp-button:hover, .whatsapp-button-dos:hover {
        transform: none;
    }
    
    /* Aumentar área táctil */
    .carousel-arrow {
        min-width: 44px;
        min-height: 44px;
    }
    
    .carousel-dot {
        min-width: 12px;
        min-height: 12px;
    }
    
    nav ul li a {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* ===== ORDENADORES (más de 1024px) ===== */
/* Los estilos base ya están optimizados para ordenadores */

/* Ajustes específicos para resoluciones de 1920px */
@media (min-width: 1920px) {
    .hero-image {
        height: clamp(80vh, 80vw, 80vh);
        width: clamp(80vw, 80vw, 80vw);
        max-width: 90vw;
        right: -45vw;
    }
}

/* Ajustes para monitores de 27" (2560x1440) - limitar el crecimiento */
@media (min-width: 2560px) {
    .hero-image {
        height: clamp(70vh, 70vw, 70vh);
        width: clamp(70vw, 70vw, 70vw);
        right: -35vw;
        max-width: 80vw;
    }
}

/* Testimonials Title Section */
.testimonials-title-section {
    background: #1a1a1a;
    padding: 4rem 0;
    position: relative;
}

.testimonials-title-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

.testimonials-title {
    color: white;
    font-size: clamp(1.8rem, 2.5vw, 2.5rem);
    font-weight: bold;
    text-align: right;
    line-height: 1.2;
    position: relative;
    z-index: 1;
}

/* Responsive for testimonials title */
@media (max-width: 768px) {
    .testimonials-title {
        font-size: clamp(1.5rem, 2vw, 2rem);
        padding: 0 1rem;
    }
}

/* Location Section */
.location-section {
    background: url(img/TB.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    padding: 80px 0;
    position: relative;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.map-container {
    position: relative;
}

.map-placeholder {
    background: #f5f5f5;
    border-radius: clamp(10px, 2vw, 20px);
    padding: 0;
    height: 400px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.map-content {
    width: 100%;
    height: 100%;
    position: relative;
}

.map-content iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: clamp(10px, 2vw, 20px);
}

.map-temp {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #e0e0e0 0%, #f0f0f0 100%);
    border-radius: clamp(10px, 2vw, 20px);
}

.map-pin {
    font-size: clamp(1.5rem, 2vw, 2rem);
    margin-bottom: 1rem;
    animation: bounce 2s infinite;
}

.location-text {
    font-weight: bold;
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.map-instruction {
    color: #666;
    font-size: 0.9rem;
    text-align: center;
    font-style: italic;
    padding: 0 1rem;
}

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

.contact-info {
    color: white;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.location-title {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: bold;
    margin-bottom: 2rem;
    line-height: 1.2;
    text-transform: uppercase;
    text-align: center;
    word-wrap: break-word;
    overflow-wrap: break-word;
    padding: 0 1rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: clamp(1rem, 1.1vw, 1.1rem);
    font-weight: 500;
    word-wrap: break-word;
    overflow-wrap: break-word;
    padding: 0.8rem 0;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.contact-item:hover {
    background-color: rgba(242, 231, 231, 0.1);
}

.contact-item a {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
    text-decoration: none;
    color: inherit;
}

.contact-icon {
    font-size: 1.5rem;
    min-width: 30px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-text {
    text-transform: uppercase;
    letter-spacing: 0.5px;
    word-break: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    flex: 1;
    line-height: 1.4;
}

/* Iconos de contacto específicos */
.contact-item img {
    width: clamp(20px, 3vw, 24px);
    height: clamp(20px, 3vw, 24px);
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

.contact-item:hover img {
    transform: scale(1.1);
}

/* Image placeholder */
.image-giftcards {
    position: relative;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-giftcards img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Triptych Carousel Styles */
#carousel-section {
    position: relative;
    background: #1E1E1E;
    padding: 0;
    height: 60vh;
}

.triptych-carousel {
    position: relative;
    width: 100vw;
    height: 60vh;
    overflow: hidden;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.triptych-container {
    display: flex;
    width: 600%; /* 6 groups of 3 panels each */
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.triptych-group {
    display: flex;
    width: 16.67%; /* 100% / 6 groups */
    height: 100%;
}

.triptych-panel {
    flex: 1; /* Each panel takes equal space within the group */
    height: 100%;
    border: 4px solid #000;
    box-shadow: 
        inset 0 0 15px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(0, 0, 0, 0.6);
    overflow: hidden;
}

.triptych-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: sepia(0.3) contrast(1.4) brightness(0.8) saturate(1.3) hue-rotate(8deg);
    transition: all 0.3s ease-in-out;
}

/* Triptych Navigation */
.triptych-nav {
    position: absolute;
    bottom: 5vh;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1vw;
    z-index: 10;
}

.triptych-dot {
    width: 1.2vw;
    height: 1.2vw;
    min-width: 10px;
    min-height: 10px;
    max-width: 15px;
    max-height: 15px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s ease;
}

.triptych-dot.active {
    background: #C13434;
}

/* Triptych Arrows */
.triptych-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 4vw;
    height: 4vw;
    min-width: 40px;
    min-height: 40px;
    max-width: 60px;
    max-height: 60px;
    border-radius: 50%;
    cursor: pointer;
    font-size: clamp(1.2rem, 2vw, 1.8rem);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
    z-index: 10;
}

.triptych-arrow:hover {
    background: rgba(0, 0, 0, 0.7);
}

.triptych-arrow.prev {
    left: 3vw;
}

.triptych-arrow.next {
    right: 3vw;
}