
:root {
    --primary-color: #d4af37;
    --secondary-color: #333333;
    --dark-color: #222222;
    --light-color: #f9f9f9;
    --accent-color: #a0a0a0;
    --success-color: #2ecc71;
    --error-color: #e74c3c;
    --background-color-light: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0));
    --nav-bg: rgba(0, 0, 0, 0.8);
    --nav-text: #ffffff;
    --hero-overlay: rgba(0, 0, 0, 0.4);
}

/* ===== RESET Y CONFIGURACIÓN BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--light-color);
    color: var(--secondary-color);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    width: 100%;
    max-width: 100vw;
    font-size: 1.1rem;
}

/* ===== LAYOUT Y CONTENEDORES ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

section {
    padding: 100px 0;
}

.section-title {
    text-align: start;
    margin-bottom: 60px;
}

.section-title h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    position: relative;
    text-align: start;
    width: 100%;
    line-height: 1.1;
}
.section-title h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    position: relative;
    text-align: center;
    width: 100%;
    line-height: 1.1;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.771);
}

.separator {
    width: 280px;
    height: 3px;
    background: var(--primary-color);
    margin: 10px 0;
}


/* ===== ELEMENTOS FLOTANTES ===== */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    left: 20px;
    background-color: #25d366;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: transparent;
    color:var(--primary-color);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(36, 36, 36, 0.3);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    z-index: 999;
    backdrop-filter: blur(1px);
    border: 1px solid var(--primary-color);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    transform: translateY(-3px);
}

.scroll-to-top:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.scroll-to-top i {
    transition: transform 0.3s ease;
}

.scroll-to-top:hover i {
    transform: translateY(-2px);
}

/* ===== HEADER & NAVIGATION ===== */
.main-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: all 0.3s ease;
}

.main-header.scrolled {
    background: rgba(0, 0, 0, 0.14);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

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

.nav-left, .nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-center {
    display: flex;
    align-items: center;
}

.nav-center img {
    height: 100px;
    width: auto;
    transition: all 0.3s ease;
}

.nav-center img:hover {
    transform: scale(1.05);
}

.nav-link {
    color: var(--nav-text);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

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

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

.social-icons {
    display: flex;
    gap: 1rem;
    margin-left: 1rem;
}

.social-icon {
    color: var(--nav-text);
    font-size: 1.1rem;
    transition: all 0.3s ease;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.social-icon:hover {
    color: var(--primary-color);
    background: rgba(212, 175, 55, 0.2);
    transform: translateY(-2px);
}

/* ===== MOBILE MENU ===== */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    z-index: 1002;
}

.hamburger-line {
    width: 30px;
    height: 3px;
    background: var(--nav-text);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger-line:nth-child(2) {
    width: 20px;
    margin-left: 10px;
}

.hamburger-line:nth-child(3) {
    width: 30px;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background:var(--secondary-color);
    backdrop-filter: blur(10px);
    z-index: 1001;
    transition: left 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu-header {
    position: absolute;
    top: 3rem;
    left: 2rem;
    right: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    padding: 0 20px;
}

.mobile-logo {
    height: auto;
    width: 150px;
}

.mobile-menu-close {
    color: var(--nav-text);
    font-size: 3.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.mobile-menu-close:hover {
    color: var(--primary-color);
    background: rgba(212, 175, 55, 0.2);
    transform: rotate(90deg);
}

.mobile-nav {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-nav-links {
    list-style: none;
    text-align: center;
    margin-bottom: 200px;
    padding: 0;
}

.mobile-nav-links li {
    margin: 2rem 0;
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 0.6s ease forwards;
}

.mobile-nav-links li:nth-child(1) { animation-delay: 0.1s; }
.mobile-nav-links li:nth-child(2) { animation-delay: 0.2s; }
.mobile-nav-links li:nth-child(3) { animation-delay: 0.3s; }
.mobile-nav-links li:nth-child(4) { animation-delay: 0.4s; }
.mobile-nav-links li:nth-child(5) { animation-delay: 0.5s; }
.mobile-nav-links li:nth-child(6) { animation-delay: 0.6s; }
.mobile-nav-links li:nth-child(7) { animation-delay: 0.7s; }

.mobile-nav-links a {
    color: var(--nav-text);
    text-decoration: none;
    font-size: 2rem;
    font-weight: 500;
    /* letter-spacing: ; */
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    display: block;
}

.mobile-nav-links a:hover {
    color: var(--primary-color);
    transform: scale(1.05);
}

.mobile-nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

.mobile-social {
    position: absolute;
    bottom: 220px;
    left: 0;
    right: 0;
    margin-top: 1rem;
    text-align: center;
}

.mobile-social h3 {
    color: var(--nav-text);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 1px;
}

.mobile-social-icons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.mobile-social-icons a {
    color: var(--nav-text);
    font-size: 2rem;
    transition: all 0.3s ease;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid transparent;
    text-decoration: none;
}

.mobile-social-icons a:hover {
    color: var(--primary-color);
    background: rgba(212, 175, 55, 0.2);
    transform: translateY(-5px) scale(1.1);
    border-color: var(--primary-color);
}

.mobile-cta {
    position: absolute;
    bottom: 140px;
    left: 0;
    right: 0;
    text-align: center;
}

.mobile-cta-button {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    color: rgb(0, 0, 0);
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.4s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: var(--primary-color);
    padding: 15px 30px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 2px solid var(--primary-color);
}

.mobile-cta-button:hover {
    color: black;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.4);
}

.close-icon {
    font-size: 5rem;
    font-weight: 100;
    color: var(--nav-text);
    transition: all 0.3s ease;
}

.close-icon:hover {
    color: var(--primary-color);
    transform: rotate(90deg);
}

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



/* ===== HERO SECTION ===== */
.hero-section {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
    linear-gradient(135deg, rgba(26, 26, 26, 0.5) 0%, rgba(45, 45, 45, 0.3) 50%, rgba(26, 26, 26, 0.5) 100%),
        url('../assets/img/heroblue.avif');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--hero-overlay);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--nav-text);
    max-width: 1200px;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin-top: 4rem;
}

.hero-content h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    font-weight: 100;
    text-transform: uppercase;
    text-shadow: 2px 5px  4px rgba(0, 0, 0, 0.974);
    color: #fffefbda;
    line-height: 1.1;
    max-width: 400px;
    margin-top: -10px;
}

.hero-content img {
    max-width: 100%;
    height: auto;
    max-height: 50vh;
    object-fit: contain;
    animation: fadeInUp 1s ease-out 0.3s both, float 6s ease-in-out infinite;
    filter: drop-shadow(10PX 20px 10px rgb(0, 0, 0));
    transition: all 0.3s ease;
    position: relative;
}

.hero-cta {
    animation: fadeInUp 1s ease-out 0.5s both;
}

/* ===== BOTONES CTA ===== */
.cta-button {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.4s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: rgba(0, 0, 0, 0.2);
    padding: 15px 30px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    margin-top: 1rem;
    border: 1px solid var(--light-color);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: var(--primary-color);
    transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: -1;
}

.cta-button:hover {
    color: black;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.cta-button:hover::before {
    width: 100%;
}

.cta-button-dark {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    color:var(--secondary-color);
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.4s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color:transparent;
    padding: 15px 30px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    margin-top: 1rem;
    border: 1px solid var(--secondary-color);
}

.cta-button-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: var(--primary-color);
    transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: -1;
}

.cta-button-dark:hover {
    color: black;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.cta-button-dark:hover::before {
    width: 100%;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 4rem 0;
}

.cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    text-align: center;
}

.cta-title {
    margin: 0;
}

/* ===== SCROLL DOWN ===== */
.scroll-down {
    position: absolute;
    bottom: 20px;
    right: 10%;
    transform: translateX(-50%);
    z-index: 100;
}

.scroll-down a {
    text-decoration: none;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
}

.scroll-down a:hover {
    color: var(--primary-color);
    transform: translateY(-5px);
}

.scroll-down-text {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 20px;
    text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.8);
    letter-spacing: 2px;
    transform: rotate(90deg);
    text-transform: uppercase;
}

.sidebar-down {
    width: 2px;
    height: 140px;
    background: linear-gradient(to bottom, var(--light-color), transparent);
    position: relative;
}

/* ===== NAVEGACIÓN ADICIONAL ===== */
.nav-left a {
    text-decoration: none;
    background: transparent;
}

.insta-nav {
    font-size: 1.8rem;
    color: var(--nav-text);
    transition: all 0.3s ease;
    text-decoration: none;
    background: transparent;
}

.insta-nav:hover {
    color: var(--primary-color);
    background: transparent;
}



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

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

/* ===== TEAM SECTION ===== */
.team-section {
    background-color: var(--dark-color);
    color: white;
    padding: 0;
    overflow: hidden;
}

.team-members {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.team-member {
    background: var(--dark-color);
    overflow: hidden;
    text-align: left;
    padding: 0;
    box-shadow: none;
    border-radius: 0;
    position: relative;
    height: 400px;
}

.team-member:hover {
    transform: none;
    box-shadow: none;
}

.member-image {
    height: 100%;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.member-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.6) 25%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0%) brightness(0.8) contrast(0.8);
    transition: transform 0.5s ease;
}

@media (min-width: 1500px) {
    .member-image img {
        width: 100%;
        height: 100vh;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .team-member {
        height: 500px;
    }
}

.team-member:hover .member-image img {
    transform: scale(1.05);
    filter: grayscale(0%) brightness(1) contrast(1);
}

.team-member-content {
    position: absolute;
    bottom: 0;
    padding: 40px;
    z-index: 2;
    width: 100%;
}

.team-member h3 {
    margin: 0 0 20px 0;
    font-size: 32px;
    color: white;
    border-bottom: 3px solid white;
    width: fit-content;
    padding-bottom: 10px;
    padding-right: 20px;
    font-family: 'Oswald', sans-serif;
    font-weight: 100;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.member-title,
.team-member p {
    display: none;
}

.team-member .see-work {
    color: white;
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    display: inline-block;
    position: relative;
    font-family: 'Oswald', sans-serif;
}

.team-member h3::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
    bottom: -5px;
    left: 0;
}

.team-member .social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    justify-content: end;
}

.team-member .social-links a {
    color: white;
    font-size: 22px;
    transition: color 0.3s ease;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.team-member .social-links a:hover {
    color: var(--primary-color);
}

/* ===== ABOUT SECTION ===== */
.about-section {
    background: linear-gradient(to bottom, rgba(69, 69, 69, 0.03), rgba(0, 0, 0, 0));
}

.about-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 16px;
}

/* ===== TEXT STRONG CLASSES ===== */
.text-strong-2 {
    font-size: 5rem;
    font-weight: bold;
    letter-spacing: -5px;
    padding-right: 8px;
    color: var(--secondary-color);
    font-family: 'Oswald', sans-serif;
    transition: all 0.5s ease;
}

.text-strong-3 {
    font-size: 5rem;
    font-weight: 100;
    letter-spacing: -5px;
    color: var(--secondary-color);
    font-family: 'Oswald', sans-serif;
    transition: all 0.5s ease;
}

.text-strong-2-light {
    font-size: 5rem;
    font-weight: bold;
    letter-spacing: -5px;
    padding-right: 8px;
    color: var(--light-color);
    font-family: 'Oswald', sans-serif;
    transition: all 0.5s ease;
}

.text-strong-3-light {
    font-size: 5rem;
    font-weight: 100;
    letter-spacing: -5px;
    color: var(--light-color);
    font-family: 'Oswald', sans-serif;
    transition: all 0.5s ease;
}

.about-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    padding: 10px;
}

.about-image::before {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    border: 3px solid var(--primary-color);
    top: -20px;
    left: -20px;
    z-index: -1;
    opacity: 0.5;
}

.about-image::after {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    border: 3px solid var(--primary-color);
    bottom: -20px;
    right: -20px;
    z-index: -1;
    opacity: 0.5;
}

/* ===== COLLAGE DE IMÁGENES ===== */
.about-image-collage {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(12, 30px);
    gap: 12px;
    width: 100%;
    height: 100%;
    position: relative;
    transition: all 0.8s ease;
}

.about-image-collage:hover {
    filter: saturate(1.5);
}

.collage-item {
    overflow: hidden;
    position: relative;
    background-color: var(--dark-color);
    transform-origin: center;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 3px solid var(--light-color);
}

.collage-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
    opacity: 0.7;
    transition: opacity 0.5s ease;
}

.collage-item:hover {
    transform: scale(1.02);
}

.collage-item:hover::after {
    opacity: 0.3;
}

.collage-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
    display: block;
}

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

.item1 {
    grid-column: 1 / 8;
    grid-row: 1 / 8;
    z-index: 2;
}

.item2 {
    grid-column: 7 / 12;
    grid-row: 2 / 7;
    z-index: 1;
}

.item3 {
    grid-column: 2 / 7;
    grid-row: 6 / 13;
    z-index: 3;
}

.item4 {
    grid-column: 6 / 11;
    grid-row: 7 / 12;
    z-index: 2;
}

/* ===== VIDEO MODAL ===== */
.video-link {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: rgba(239, 239, 239, 0.216);
    border: 1px solid var(--light-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 24px;
    z-index: 5;
    opacity: 0.9;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
}

.play-icon i {
    position: relative;
    left: 2px;
}

.collage-item:hover .play-icon {
    background-color: var(--primary-color);
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 1;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.6);
}
.video-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.video-modal-content {
    position: relative;
    margin: 5% auto;
    width: 80%;
    max-width: 900px;
    animation: modalFadeIn 0.5s ease;
}

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

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 6px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.close-video {
    position: absolute;
    top: -40px;
    right: -10px;
    color: white;
    font-size: 40px;
    font-weight: 100;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1001;
}

.close-video:hover {
    color: var(--primary-color);
    transform: rotate(90deg);
}

@media (max-width: 768px) {
    .video-modal-content {
        width: 95%;
        margin: 15% auto;
    }
    
    .close-video {
        top: -35px;
        right: 0;
    }

    .about-image-collage {
        grid-template-rows: repeat(12, 30px);
        margin-left: 0;
        width: 100%;
        gap: 8px;
      }
    
      .item1 {
        grid-column: 1 / 8;
        grid-row: 1 / 8;
      }
    
      .item2 {
        grid-column: 7 / 12;
        grid-row: 2 / 7;
      }
    
      .item3 {
        grid-column: 2 / 7;
        grid-row: 6 / 13;
      }
    
      .item4 {
        grid-column: 6 / 11;
        grid-row: 7 / 12;
      }
    
      .text-strong-2 {
        line-height: 1.1;
      }
      .text-strong-2-light {
        line-height: 1.1;
      }
      .section-title p {
        line-height: 1.1;
        max-width: 300px;
      }
    }




/* ===== GALLERY SECTION ===== */
.tattoo-gallery-section {
    background-color: var(--dark-color);
    overflow: hidden;
    position: relative;
}

.tattoo-gallery.full-width-gallery {
    width: 100%;
    max-width: 100vw;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.gallery-collage {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 500px;
    gap: 5px;
    width: 100%;
    max-width: 100%;
}

.gallery-item {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    grid-row: span 1;
    text-decoration: none;
    color: inherit;
    display: block;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter:contrast(0.7) sepia(0.2) saturate(1) brightness(0.8);
    transition: transform 0.4s;
}

.gallery-item img:hover {
    transform: scale(1.07);
    filter: grayscale(0%);
}

.gallery-item-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.752) 0%, rgba(0, 0, 0, 0.281) 50%, transparent 100%);
    padding: 30px 20px 20px;
    color: white;
    transition: transform 0.5s ease;
    z-index: 2;
}

.gallery-item:hover .gallery-item-content {
    transform: translateY(0);
}

.gallery-item-content h3 {
    width: fit-content;
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    font-weight: 400;
    margin: 50px 50px;
    margin-top: 150px;
    text-transform: uppercase;
    letter-spacing: -1px;
    color: var(--light-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    border-bottom: 2px solid var(--primary-color);
}

.item-2,
.item-4,
.item-5,
.item-7 {
    grid-row: span 1;
}

.gallery-cta {
    width: 100%;
    text-align: center;
}

.gallery-cta a {
    margin-top: 50px;
    text-align: center;
}


/* ===== EVENTS SECTION ===== */
.events-section {
    position: relative;
    overflow: hidden;
}

.events-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(0, 0, 0, 0.677), rgba(0, 0, 0, 0.5)), url(../assets/img/tresmonosink_tatuador.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    filter: contrast(0.8) sepia(0.2) saturate(1) brightness(0.8);
    z-index: 0;
}

.events-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 40px;
    color: var(--light-color);
}

.events-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.events-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.events-image:hover img {
    transform: scale(1.05);
}

.events-text {
    flex: 1;
    margin-top: 100px;
}

.events-text h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--light-color);
    letter-spacing: -1px;
    font-weight: 100;
    margin-top: -90px;
    font-family: 'Oswald', sans-serif;
}

.events-text-dark h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--dark-color);
    letter-spacing: -1px;
    font-weight: 100;
    margin-top: 40px;
    font-family: 'Oswald', sans-serif;
}

.events-text p {
    margin-bottom: 20px;
    max-width: 700px;
}

/* ===== GIFT CARD SECTION ===== */
.gift-card-section {
    position: relative;
    overflow: hidden;
}

.regalo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 100vw;
    text-align: center;
    font-size: clamp(15rem, 30vw, 30rem);
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    color: var(--dark-color);
    letter-spacing: -5px;
    opacity: 0.07;
    z-index: 1;
    pointer-events: none;
    white-space: nowrap;
}
.regalo-responsive {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 100vw;
    text-align: center;
    font-size: clamp(8rem, 30vw, 30rem);
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    color: var(--dark-color);
    letter-spacing: -5px;
    opacity: 0.07;
    z-index: 1;
    pointer-events: none;
    white-space: nowrap;
    text-align: center;
    display: none;
}

.gift-card-section .container,
.gift-card-content,
.gift-card-text,
.gift-card-image {
    position: relative;
    z-index: 2;
}

.gift-card-content {
    display: flex;
    align-items: center;
    gap: 40px;
    padding-top: 80px;
    margin-top: -100px;
}

.gift-card-text {
    flex: 1;
}

.gift-card-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gift-card-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    border-radius: 10px;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.841)) contrast(0.8);
    transform: rotate(-15deg);
}

.gift-card-text h3 {
    font-size: 2rem;
    font-weight: 100;
    color: var(--dark-color);
    letter-spacing: -1px;
    font-family: 'Oswald', sans-serif;
}

.gift-card-text p {
    margin-bottom: 80px;
    max-width: 700px;
    color: var(--dark-color);
    margin-top: 20px;
    
}

/* ===== CUSTOM BRAND SECTION ===== */
.custom-brand-section {
    margin-top: -100px;
}

.custom-text {
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.custom-text h3 {   
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--dark-color);
    letter-spacing: -1px;
    font-weight: 100;
    margin-top: -90px;
    font-family: 'Oswald', sans-serif;
}
    
.separator-custom {
    margin-top: 20px;
    margin-bottom: 20px;
    width: 280px;
    height: 3px;
    background: var(--primary-color);
}

.bold {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    color: var(--primary-color);
}

/* ===== T-SHIRT SLIDER ===== */
.t-shirt-container {
    width: 100%;
    height: auto;
    background-color: var(--secondary-color);
}
.tshirt-slider-container {
    margin-top: 80px;
    background: var(--secondary-color);
    padding: 80px 20px 40px 20px;
    max-width: 1500px;
    margin: 0 auto;
}

.tshirtSwiper {
    width: 100%;
    height: auto;
    position: relative;
}

.tshirt-product {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: white;
    padding: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.tshirt-product:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.tshirt-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
    margin-bottom: 20px;
    background: white;
}

.tshirt-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.tshirt-product:hover .tshirt-image img {
    transform: scale(1.05);
}

.tshirt-info {
    text-align: center;
    width: 100%;
}

.tshirt-info h4 {
    font-size: 20px;
    margin-bottom: 8px;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    color: var(--dark-color);
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.product-type {
    font-size: 12px;
    color: #666;
    margin-bottom: 8px;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.price {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-family: 'Oswald', sans-serif;
}

.btn-up {
    margin: 10px 0;
    margin-top: -8px;
}

/* Botón Ver Tienda */
.shop-button-container {
    text-align: center;
    margin-top: 40px;
}

.view-shop-button {
    display: inline-block;
    padding: 15px 30px;
    background: var(--primary-color);
    color: var(--dark-color);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.view-shop-button:hover {
    background: #b8941f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* Navegación del slider */
.tshirtSwiper .swiper-button-next,
.tshirtSwiper .swiper-button-prev {
    color: var(--primary-color);
    background: rgba(255, 255, 255, 0.9);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);    
    opacity: 0;

}

.tshirtSwiper .swiper-button-next:hover,
.tshirtSwiper .swiper-button-prev:hover {
    background: white;
    transform: scale(1.1);
}

.tshirtSwiper .swiper-button-next::after,
.tshirtSwiper .swiper-button-prev::after {
    font-size: 20px;
    font-weight: bold;
}

/* Paginación del slider */
.swiper-pagination{
    position: relative;
    margin-top: 40px;
}
.tshirtSwiper .swiper-pagination-bullet {
    background: var(--primary-color);
    opacity: 0.5;
    width: 12px;
    height: 12px;
}

.tshirtSwiper .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--primary-color);
}

/* Responsive para el slider */
@media (max-width: 768px) {
    .custom-brand-section {
        margin-top: -80px;
    }

    .tshirt-slider-container {
        padding: 40px 15px;
    }
    
    .tshirt-image {
        height: 400px;
    }

    .tshirt-info {
        padding-bottom: 20px;
    }
    
    .tshirt-info h4 {
        font-size: 25px;
    }
    
    .price {
        font-size: 20px;
    }
    
    .tshirtSwiper .swiper-button-next,
    .tshirtSwiper .swiper-button-prev {
        width: 40px;
        height: 40px;
    }
    
    .tshirtSwiper .swiper-button-next::after,
    .tshirtSwiper .swiper-button-prev::after {
        font-size: 16px;
    }
    
    .view-shop-button {
        padding: 12px 25px;
        font-size: 14px;
    }
}
/* 
@media (max-width: 480px) {
    
    
    .tshirt-info h4 {
        font-size: 16px;
    }
    
    .product-type {
        font-size: 11px;
    }
    
    .price {
        font-size: 18px;
    }
    
    .buy-button {
        padding: 8px 16px;
        font-size: 12px;
    }
    
    .view-shop-button {
        padding: 10px 20px;
        font-size: 13px;
    }
} */

/* Estilos adicionales para mejorar la experiencia */
.tshirt-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0,0,0,0.1), transparent);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tshirt-slide:hover::before {
    opacity: 1;
}

.tshirt-overlay {
    z-index: 2;
}

/* Animación de entrada para las slides */
.swiper-slide-active .tshirt-slide {
    animation: slideIn 0.8s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .gift-card-content {
        display: flex;
        align-items: center;
        gap: 40px;
        margin-top: -80px;
        flex-direction: column;
    }

    .regalo {
       display: none;
    }

    .regalo-responsive {
        display: block;
    }
}

/* ===== BANNER STUDIO ===== */
.banner-studio-container {
    width: 100%;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: linear-gradient(rgba(0, 0, 0, 0.181), rgba(0, 0, 0, 0.192)), url(../assets/img/colage2.avif);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-bottom: 100px;
    position: relative;
}

.banner-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-image h2{
    text-align: center;
    font-size: 4rem;
    font-family: 'Oswald', sans-serif;
    font-weight: 100;
    letter-spacing: -5px;
    color: var(--light-color);
    text-transform: uppercase;
    line-height: 1.1;
    max-width: 800px;
    text-shadow: 2px 5px 5px rgba(0, 0, 0, 0.9);
}


/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    background-image: linear-gradient(rgba(0, 0, 0, 0.488), rgba(0, 0, 0, 0.308)), url(../assets/img/tienda_vintage.avif);
    color: white;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.testimonials-section .section-title h2 {
    color: white;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.9);
    max-width: 600px;
}

.testimonial {
    background-color: rgba(255, 255, 255, 0.151);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    height: 100%;
}

.rating {
    color: #FFD700;
    margin-bottom: 20px;
    font-size: 20px;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 20px;
    font-size: 20px;
    line-height: 1.7;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.9);
}

.client h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

/* ===== GOOGLE REVIEWS ===== */
.google-reviews {
    margin-top: 20px;
    width: 100%;
    text-align: center;
}

.google-review-btn {
    display: flex;  
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--light-color);
    font-size: 18px;
    font-weight: 500;
    margin: 0 auto;
    justify-content: center;
    font-family: 'Oswald', sans-serif;
}   

.google-logo {
    width: 40px;
    height: 40px;
}

.google-logo:hover {
    transform: scale(1.1);
}

.google-review-btn:hover {
    color: var(--primary-color);
}

/* ===== LOCATION SECTION ===== */
.location-section {
    background-color: var(--light-color);
    padding: 100px 0 0 0;
    position: relative;
    overflow: hidden;
}
  
  .location-section .container {
    margin-bottom: 60px;
  }

  .location-text {
    max-width: 650px;
  }
  
  .full-width-map {
    position: relative;
    width: 100%;
    max-width: 100vw;
    margin: 0;
    height: 500px;
    overflow: hidden;
  }
  
  .map-container {
    width: 100%;
    height: 100%;
    position: relative;
  }
  
  .map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(30%) brightness(0.9);
    transition: filter 0.3s ease;
  }
  
  .map-container:hover iframe {
    filter: grayscale(0%) brightness(1);
  }
  
  .map-overlay-1 {
    position: absolute;
    top: 50px;
    right: 50px;
    z-index: 15;
    max-width: 400px;
    transform: translateZ(0);
  }
  
  .map-overlay-2 {
    display: none;
  }
  
  .location-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 0;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border-left: 4px solid var(--primary-color);
    position: relative;
    overflow: hidden;
    z-index: 9999;
    margin-top: -50px;
  }
  
  .location-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
  }
  
  .location-header i {
    font-size: 28px;
    color: var(--primary-color);
  }
  
  .location-header h3 {
    font-family: "Oswald", sans-serif;
    font-size: 1.8rem;
    color: var(--secondary-color);
    font-weight: 100;
    letter-spacing: -1px;
    margin: 0;
  }
  
  .location-info {
    position: relative;
    z-index: 2;
    margin-bottom: 25px;
  }
  
  .location-info p {
    color: var(--accent-color);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
  }
  
  .location-info p strong {
    color: var(--secondary-color);
    font-weight: 600;
    min-width: 80px;
  }
  
  .location-actions {
    display: flex;
    gap: 15px;
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
  }
  
  .location-actions .btn {
    flex: 1;
    min-width: 140px;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: "Oswald", sans-serif;
    font-size: 0.9rem;
    letter-spacing: -0.5px;
    transition: all 0.3s ease;
    padding: 12px 20px;
  }
  
  .location-actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  }
  
  /* Efecto de partículas en el mapa */
  .full-width-map::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
      radial-gradient(2px 2px at 20px 30px, rgba(212, 175, 55, 0.2), transparent),
      radial-gradient(2px 2px at 40px 70px, rgba(212, 175, 55, 0.15), transparent),
      radial-gradient(1px 1px at 90px 40px, rgba(212, 175, 55, 0.25), transparent),
      radial-gradient(1px 1px at 130px 80px, rgba(212, 175, 55, 0.2), transparent),
      radial-gradient(2px 2px at 160px 30px, rgba(212, 175, 55, 0.15), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: floatingParticles 25s linear infinite;
    z-index: 1;
    pointer-events: none;
  }
  
  @keyframes floatingParticles {
    0% {
      transform: translateY(0px) rotate(0deg);
    }
    100% {
      transform: translateY(-100px) rotate(360deg);
    }
  }
  
  /* Responsive para la sección de ubicación */
  @media (max-width: 1200px) {
    .map-overlay-1 {
      right: 30px;
      max-width: 350px;
    }
    
    .map-overlay-2 {
      display: none;
    }
    
    .location-card {
      padding: 25px;
    }
    
    .location-header h3 {
      font-size: 1.6rem;
    }
  }
  
  @media (max-width: 768px) {
    .location-section {
      padding: 70px 0 100px 0;
      min-height: 100vh;
      position: relative;
      z-index: 1;
    }
    
    .location-section .container {
      margin-bottom: 40px;
    }
    
    .full-width-map {
      height: 60vh;
      min-height: 400px;
      position: relative;
    }
    
    .map-overlay-1 {
        display: none;
      position: relative;
      top: 0;
      right: 0;
      max-width: 100%;
      width: 100%;
      height: auto;
      padding: 0;
      margin-top: -50px;
      z-index: 90;
      position: relative;
      left: 0;
      transform: none;
    }
    .map-overlay-2 {
        display: block;
      position: relative;
      top: 0;
      right: 0;
      width: 90%;
      max-width: 90%;
      height: auto;
      padding: 0;
      margin: 30px auto 0;
      z-index: 90;
      position: relative;
      left: 0;
      transform: none;
    }
    
    .location-card {
      padding: 20px;
      margin: 0 auto 50px;
      max-width: 90%;
      width: 90%;
      z-index: 9999;
      position: relative;
      background: rgba(255, 255, 255, 0.98);
      left: 0;
      transform: none;
    }
    
    .location-header {
      margin-bottom: 20px;
    }
    
    .location-header h3 {
      font-size: 1.4rem;
    }
    
    .location-info {
      margin-bottom: 20px;
    }
    
    .location-info p {
      font-size: 0.9rem;
    }
    
    .location-actions {
      flex-direction: column;
      gap: 10px;
    }
    
    .location-actions .btn {
      min-width: auto;
      width: 100%;
    }

    .testimonials-section .section-title h2 {
        color: white;
        text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.9);
        max-width: 300px;
    }
  }
  
  @media (max-width: 480px) {
    .full-width-map {
      height: 50vh;
      min-height: 350px;
    }
    
    .location-card {
      padding: 15px;
      z-index: 9999;
      position: relative;
      max-width: 95%;
      width: 95%;
      left: 0;
      transform: none;
    }
    
    .location-header h3 {
      font-size: 1.2rem;
    }
    
    .location-info p {
      font-size: 0.85rem;
    }
    
    .location-actions .btn {
      font-size: 0.85rem;
      padding: 10px 15px;
    }
  }



/* ===== FOOTER ===== */
footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    padding: 80px 0 30px;
    position: relative;
    margin-top: 0;
    border-top: 3px solid var(--primary-color);
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 50px;
    align-items: start;
}

/* Footer Logo Section */
.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo img {
    width: 200px;
    height: auto;
}

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

.logo-text {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    background: linear-gradient(45deg, var(--primary-color), #f4d03f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Oswald', sans-serif;
}

.logo-text .text-strong {
    color: var(--primary-color);
    -webkit-text-fill-color: var(--primary-color);
}

.logo-text .text-strong-1 {
    color: #f4d03f;
    -webkit-text-fill-color: #f4d03f;
}

.footer-links h3 {
    font-size: 1.4rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
    font-family: 'Oswald', sans-serif;
    color: white;
    font-weight: 400;
}


.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    position: relative;
    padding-left: 0;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 10px;
}

/* Contact Items */
.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    gap: 15px;
}

.contact-item i {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-top: 2px;
    min-width: 20px;
}

.contact-item p {
    color: #b0b0b0;
    margin: 0;
    line-height: 1.5;
    font-size: 0.95rem;
}

/* Newsletter Section */
.footer-newsletter h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    font-family: 'Oswald', sans-serif;
    color: white;
    font-weight: 600;
}

.footer-newsletter p {
    margin-bottom: 25px;
    color: #b0b0b0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    gap: 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 0.95rem;
    backdrop-filter: blur(10px);
}

.newsletter-form input::placeholder {
    color: #b0b0b0;
}

.newsletter-form input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-form button {
    padding: 15px 25px;
    background: linear-gradient(45deg, var(--primary-color), #f4d03f);
    color: white;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.newsletter-form button:hover {
    background: linear-gradient(45deg, #b8941f, #e6c547);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: #b0b0b0;
    font-size: 0.9rem;
    margin: 0;
}

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

.footer-bottom-links a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
    position: relative;
}

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

.footer-bottom-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.footer-bottom-links a:hover::after {
    width: 100%;
}

.codigodigital {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    color: var(--primary-color);
}

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

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}











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




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

/* ===== TABLET Y DESKTOP PEQUEÑO (1024px) ===== */
@media (max-width: 1024px) {
    .nav-left, .nav-right {
        gap: 1.5rem;
    }
    
    .nav-link {
        font-size: 0.8rem;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-newsletter {
        grid-column: 1 / -1;
        margin-top: 20px;
    }
    
    .nav-center img {
        height: 50px;
    }

    .about-content,
    .events-content {
        flex-direction: column;
    }

    .animated-title {
        font-size: 4rem;
    }

    .about-image-collage {
        margin-top: 40px;
        grid-template-rows: repeat(12, 30px);
        gap: 8px;
    }
    
    .about-image::before,
    .about-image::after {
        width: 100px;
        height: 100px;
    }
}

/* ===== MÓVIL (768px) ===== */
@media (max-width: 768px) {
    .nav-left, .nav-right {
        display: none;
    }
    
    .size-h1 {
        font-size: 4rem;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .main-nav {
        justify-content: space-between;
        align-items: center;
    }
    
    .main-nav img {
        width: 150px;
        height: auto;
        margin-left: 0;
        margin-right: auto;
        display: block;
    }
    
    .nav-center {
        margin: 0;
        justify-content: flex-start;
    }
    
    .hero-content {
        margin-top: 10px;
        padding: 0 1rem;
    }
    
    .hero-content img {
        max-height: 50vh;
    }
    
    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    /* Mobile menu responsive adjustments */
    .mobile-nav-links a {
        font-size: 1.8rem;
    }
    
    .mobile-social-icons a {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .mobile-menu {
        padding: 1rem;
    }
    
    .mobile-menu-header {
        top: 1rem;
        left: 1rem;
        right: 1rem;
    }
    
    .mobile-logo {
        height: 50px;
    }

    /* Video Modal */
    .video-modal-content {
        width: 95%;
        margin: 15% auto;
    }
    
    .close-video {
        top: -35px;
        right: 0;
    }

    .about-image-collage {
        grid-template-rows: repeat(12, 30px);
        margin-left: 0;
        width: 100%;
        gap: 8px;
    }
    
    .item1 {
        grid-column: 1 / 8;
        grid-row: 1 / 8;
    }
    
    .item2 {
        grid-column: 7 / 12;
        grid-row: 2 / 7;
    }
    
    .item3 {
        grid-column: 2 / 7;
        grid-row: 6 / 13;
    }
    
    .item4 {
        grid-column: 6 / 11;
        grid-row: 7 / 12;
    }
    
    .text-strong-2 {
        line-height: 1.1;
    }
    
    .text-strong-2-light {
        line-height: 1.1;
    }
    
    .section-title p {
        line-height: 1.1;
        max-width: 300px;
    }

    /* Gallery */
    .gallery-collage {
        display: grid;
        grid-template-columns: 1fr;
        grid-auto-rows: 500px;
        gap: 5px;
        width: 100%;
        max-width: 100%;
        padding: 8px;
    }

    .gallery-item {
        grid-row: span 1 !important;
    }
    
    .gallery-item-content {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .gallery-item-content h3 {
        width: fit-content;
        font-size: 3rem;
        text-align: center;
    }

    /* Gift Card */
    .gift-card-content {
        display: flex;
        align-items: center;
        gap: 40px;
        margin-top: -80px;
        flex-direction: column;
    }

    .regalo {
       display: none;
    }

    .regalo-responsive {
        display: block;
    }

    /* T-shirt Slider */
    .custom-brand-section {
        margin-top: -80px;
    }

    .tshirt-slider-container {
        padding: 40px 15px;
    }
    
    .tshirt-image {
        height: 400px;
    }

    .tshirt-info {
        padding-bottom: 20px;
    }
    
    .tshirt-info h4 {
        font-size: 25px;
    }
    
    .price {
        font-size: 20px;
    }
    
    .tshirtSwiper .swiper-button-next,
    .tshirtSwiper .swiper-button-prev {
        width: 40px;
        height: 40px;
    }
    
    .tshirtSwiper .swiper-button-next::after,
    .tshirtSwiper .swiper-button-prev::after {
        font-size: 16px;
    }
    
    .view-shop-button {
        padding: 12px 25px;
        font-size: 14px;
    }

    /* Location Section */
    .location-section {
        padding: 70px 0 100px 0;
        min-height: 100vh;
        position: relative;
        z-index: 1;
    }
    
    .location-section .container {
        margin-bottom: 40px;
    }
    
    .full-width-map {
        height: 60vh;
        min-height: 400px;
        position: relative;
    }
    
    .map-overlay-1 {
        display: none;
        position: relative;
        top: 0;
        right: 0;
        max-width: 100%;
        width: 100%;
        height: auto;
        padding: 0;
        margin-top: -50px;
        z-index: 90;
        position: relative;
        left: 0;
        transform: none;
    }
    
    .map-overlay-2 {
        display: block;
        position: relative;
        top: 0;
        right: 0;
        width: 90%;
        max-width: 90%;
        height: auto;
        padding: 0;
        margin: 30px auto 0;
        z-index: 90;
        position: relative;
        left: 0;
        transform: none;
    }
    
    .location-card {
        padding: 20px;
        margin: 0 auto 50px;
        max-width: 90%;
        width: 90%;
        z-index: 9999;
        position: relative;
        background: rgba(255, 255, 255, 0.98);
        left: 0;
        transform: none;
    }
    
    .location-header {
        margin-bottom: 20px;
    }
    
    .location-header h3 {
        font-size: 1.4rem;
    }
    
    .location-info {
        margin-bottom: 20px;
    }
    
    .location-info p {
        font-size: 0.9rem;
    }
    
    .location-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .location-actions .btn {
        min-width: auto;
        width: 100%;
    }

    .testimonials-section .section-title h2 {
        color: white;
        text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.9);
        max-width: 300px;
    }

    /* Scroll Down */
    .scroll-down {
        right: -15px;
    }

    .whatsapp-btn {
        bottom: 20px;
        left: 15px;
    }

    .social-header {
        display: none;
    }

    .menu-btn {
        right: 5px;
    }

    .menu-btn span {
        display: none;
    }

    .logo {
        left: 20px;
    }

    .menu-content {
        padding: 30px 20px;
    }

    .menu-header {
        top: 30px;
        padding: 0 20px;
    }

    .close-btn {
        right: 20px;
    }

    .nav-links a {
        font-size: 18px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .animated-title {
        font-size: 3rem;
    }

    .animated-subtitle {
        font-size: 1.5rem;
    }

    section {
        padding: 70px 0;
    }

    .team-members {
        display: block !important;
        width: 100%;
    }

    .team-member {
        width: 100%;
        height: auto;
        min-height: 350px;
        display: block;
    }

    .member-image {
        height: 350px;
    }

    .team-member-content {
        padding: 30px;
    }

    .team-member h3 {
        font-size: 28px;
    }

    .social-menu {
        gap: 15px;
    }

    .social-menu a {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .hero-content img {
        width: clamp(450px, 95%, 600px);
        max-width: 95%;
        margin-bottom: 1.5rem;
    }

    .hero {
        padding: 100px 10px 40px;
    }

    .about-image-collage {
        grid-template-rows: repeat(12, 30px);
        margin-left: 16px;
        width: 100%;
        gap: 8px;
        filter: drop-shadow(4px 3px 5px rgba(0, 0, 0, 0.4));
    }
    
    .item1 {
        grid-column: 1 / 8;
        grid-row: 1 / 8;
    }
    
    .item2 {
        grid-column: 7 / 12;
        grid-row: 2 / 7;
    }
    
    .item3 {
        grid-column: 2 / 7;
        grid-row: 6 / 13;
    }
    
    .item4 {
        grid-column: 6 / 11;
        grid-row: 7 / 12;
    }

    .text-strong-2{
        line-height: 1.1;
    }

    .text-strong-2-light {
        line-height: 1.1;
    }

    .section-title p{
        line-height: 1.1;
        max-width: 300px;
    }

    .banner-image h2{
        padding-top: 80px;
    }

    .footer-links{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    /* Carousel */
    .carousel-item {
        font-size: 2.5rem;
        padding: 0 20px;
        letter-spacing: 1px;
    }
    
    .carousel-section {
        padding: 10px 0;
    }
    
    .carousel-track {
        display: flex;
        animation: scroll 5s linear infinite !important;
        white-space: nowrap;
    }
    .gift-card-image img {
        width: 90%;
        height: auto;
        margin-bottom: 50px;
        margin-top: 50px;
        max-width: 100%;
        border-radius: 10px;
        filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.841)) contrast(0.8);
        transform: rotate(-15deg);
    }
}

/* ===== MÓVIL PEQUEÑO (480px) ===== */
@media (max-width: 480px) {
    .hero-content img {
        max-height: 40vh;
    }
    
    .hero-content {
        gap: 1rem;
    }
    
    /* Mobile menu adjustments for small screens */
    .mobile-nav-links a {
        font-size: 1.5rem;
    }
    
    .mobile-nav-links li {
        margin: 1.5rem 0;
    }
    
    .mobile-social-icons {
        gap: 1rem;
    }
    
    .mobile-social-icons a {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .mobile-cta-button {
        font-size: 1rem;
        padding: 12px 25px;
    }
    
    .mobile-menu {
        padding: 0.5rem;
    }
    
    .mobile-menu-header {
        top: 0.5rem;
        left: 0.5rem;
        right: 0.5rem;
    }
    
    .mobile-logo {
        height: 40px;
    }

    /* Gallery */
    .gallery-item-content {
        padding: 15px 10px 10px;
    }
    
    .gallery-item-content h3 {
        font-size: 3rem;
        text-align: center;
    }

    /* Location */
    .full-width-map {
        height: 50vh;
        min-height: 350px;
    }
    
    .location-card {
        padding: 15px;
        z-index: 9999;
        position: relative;
        max-width: 95%;
        width: 95%;
        left: 0;
        transform: none;
    }
    
    .location-header h3 {
        font-size: 1.2rem;
    }
    
    .location-info p {
        font-size: 0.85rem;
    }
    
    .location-actions .btn {
        font-size: 0.85rem;
        padding: 10px 15px;
    }

    /* General */
    .logo {
        left: 15px;
    }

    .menu-header .logo {
        left: 15px;
    }

    .animated-title {
        font-size: 2.5rem;
    }

    .team-members,
    .care-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-logo {
        align-items: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .footer-bottom-links {
        margin-top: 10px;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .footer-bottom-links a {
        margin: 0;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 10px;
    }

    .newsletter-form input,
    .newsletter-form button {
        border-radius: 8px;
    }

    .scroll-to-top {
        bottom: 20px;
        right: 15px;
        width: 45px;
        height: 45px;
        font-size: 16px;
    }

    .hero-content {
        padding: 0 5px;
    }

    .hero-content img {
        width: 78%;
        margin-bottom: 1.2rem;
        max-width: none;
    }

    .hero {
        padding: 80px 5px 30px;
    }

    .about-image-collage {
        grid-template-rows: repeat(12, 30px);
        gap: 6px;
    }
    
    .item1 {
        grid-column: 1 / 8;
        grid-row: 1 / 8;
    }
    
    .item2 {
        grid-column: 7 / 12;
        grid-row: 2 / 7;
    }
    
    .item3 {
        grid-column: 2 / 7;
        grid-row: 6 / 13;
    }
    
    .item4 {
        grid-column: 6 / 11;
        grid-row: 7 / 12;
    }
    
    .about-image::before,
    .about-image::after {
        display: none;
    }
}

/* ===== MEDIA QUERIES ADICIONALES ===== */

/* ===== ALTURA ESPECÍFICA ===== */
@media (max-height: 800px) {
    .hero {
        padding: 0px 0 30px;
    }

    p.animated-subtitle {
        display: none;
    }

    .reserva-cita {
        padding: 10px 20px;
        margin-top: -5rem;
    }
}

/* ===== PORTÁTILES CON ALTURA ESPECÍFICA ===== */
@media (min-width: 1024px) and (max-width: 1430px) and (min-height: 600px) {
    .hero-content img {
        max-height: 85vh !important;
        width: clamp(450px, 65%, 900px) !important;
        margin-top: 0 !important;
    }
}

/* ===== MÓVIL MEDIANO (600px) ===== */
@media (max-width: 600px) {
    .hero-content img {
        width: 85%;
        min-width: 350px;
        max-width: 550px;
    }
}

/* ===== CAROUSEL INFINITO ===== */
.carousel-section {
    width: 100%;
    overflow: hidden;
    background: transparent;
    padding: 10px 0;
    position: relative;
}

.carousel-container {
    width: 100%;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    animation: scroll 25s linear infinite;
    white-space: nowrap;
}

.carousel-item {
    flex: 0 0 auto;
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    font-weight: 400;
    color: #000;
    background: transparent;
    padding: 0 40px;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: -2px;
    user-select: none;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

