@font-face {
    font-family: 'Raleway';
    src: url('assets/fonts/Raleway/static/Raleway-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Raleway';
    src: url('assets/fonts/Raleway/static/Raleway-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Raleway';
    src: url('assets/fonts/Raleway/static/Raleway-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Raleway';
    src: url('assets/fonts/Raleway/static/Raleway-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Raleway';
    src: url('assets/fonts/Raleway/static/Raleway-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Petit Formal Script';
    src: url('assets/fonts/Petit_Formal_Script/PetitFormalScript-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Custom Properties - Palette */
:root {
    --color-navy: #162251;
    --color-brown: #362012;
    --color-gray: #CDCFD6;
    --color-dark: #050505;
    
    --font-primary: 'Raleway', sans-serif;
    --font-script: 'Petit Formal Script', cursive;
    
    --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-dark);
    color: var(--color-gray);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    font-weight: 300;
}

/* Typography */
h1 {
    font-weight: 800;
    letter-spacing: 0.05em;
    color: #ffffff;
}

h2 {
    font-weight: 600;
    letter-spacing: 0.05em;
    color: #ffffff;
}

h3 {
    font-weight: 500;
    letter-spacing: 0.05em;
    color: #ffffff;
}

h4, h5, h6 {
    font-weight: 400;
    letter-spacing: 0.05em;
    color: #ffffff;
}

.script-accent {
    font-family: var(--font-script);
    font-size: 1.8rem;
    display: block;
    margin-bottom: 1rem;
    color: var(--color-gray);
}

/* Header */
#main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem 4rem;
    z-index: 100;
    transition: var(--transition-smooth);
    background: transparent;
}

#main-header.scrolled {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 1rem 4rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

#main-header .logo-img,
#main-header.scrolled .logo-img {
    display: block;
    height: 60px;
    width: auto;
    opacity: 1;
    visibility: visible;
}

#main-header.scrolled .nav-links > li > a {
    color: var(--color-navy);
}

#main-header.scrolled .nav-links > li > a::after {
    background-color: var(--color-navy);
}

#main-header.scrolled .nav-links > li > a:hover {
    color: #000;
}

#main-header.scrolled .menu-toggle span {
    background-color: var(--color-navy);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1600px;
    margin: 0 auto;
}

.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.footer-logo-img {
    height: 80px;
    width: auto;
    margin-bottom: 1.5rem;
    object-fit: contain;
}

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-links > li > a {
    text-decoration: none;
    color: var(--color-gray);
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: var(--transition-smooth);
    position: relative;
    font-weight: 400;
}

.nav-links > li > a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #ffffff;
    transition: var(--transition-smooth);
}

.nav-links > li > a:hover {
    color: #ffffff;
}

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

/* Dropdown Menus */
.nav-item-dropdown {
    position: relative;
    padding-bottom: 1rem;
    margin-bottom: -1rem;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(5, 5, 5, 0.72);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    list-style: none;
    padding: 1rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    min-width: 185px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 14px;
    margin-top: 1rem;
}

#main-header.scrolled .dropdown-menu {
    background: rgba(250, 248, 242, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(22, 34, 81, 0.10);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.10);
}

.nav-item-dropdown:hover .dropdown-menu {
    opacity: 1;
    pointer-events: auto;
    margin-top: 0;
}

.dropdown-menu li {
    text-align: center;
}

.nav-links .dropdown-menu a {
    color: #ffffff;
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    font-weight: 500;
    text-transform: uppercase;
    display: inline-block;
    transition: color 0.3s ease, transform 0.3s ease;
}

.nav-links .dropdown-menu a:hover {
    color: #F28C45;
    transform: translateY(-1px);
}

#main-header.scrolled .nav-links .dropdown-menu a {
    color: var(--color-navy);
}

#main-header.scrolled .nav-links .dropdown-menu a:hover {
    color: #F28C45;
}

.dropdown-menu a::after {
    display: none;
}


.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 200;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 1px;
    background-color: var(--color-gray);
    transition: var(--transition-smooth);
}

/* Overlay Menu */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--color-navy);
    z-index: 150;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.menu-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.overlay-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.4rem;
}

.overlay-nav a {
    text-decoration: none;
    color: var(--color-gray);
    font-size: clamp(1.4rem, 6vw, 2rem);
    line-height: 1.2;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 0.1em;
    transition: var(--transition-smooth);
}

.overlay-nav a:hover {
    color: #ffffff;
    transform: translateY(-5px);
}

.overlay-nav-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.9rem;
    margin: 0.5rem 0;
}

.overlay-nav-group-title {
    color: var(--color-gray);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 0.3rem;
    opacity: 0.55;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
    font-weight: 400;
}

.btn-primary {
    background-color: transparent;
    color: var(--color-gray);
    border-color: rgba(205, 207, 214, 0.3);
}

.btn-primary:hover {
    border-color: #ffffff;
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.05);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-gray);
    border-color: transparent;
    position: relative;
    padding-left: 0;
    padding-right: 0;
}

.btn-secondary::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: rgba(205, 207, 214, 0.4);
    transition: var(--transition-smooth);
}

.btn-secondary:hover {
    color: #ffffff;
}

.btn-secondary:hover::after {
    background-color: #ffffff;
}

.btn-small {
    padding: 0.75rem 1.5rem;
    font-size: 0.75rem;
}

.btn-text {
    background: none;
    border: none;
    color: var(--color-gray);
    padding: 0;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    position: relative;
    padding-bottom: 5px;
    font-weight: 400;
}

.btn-text::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: rgba(205, 207, 214, 0.3);
    transition: var(--transition-smooth);
}

.btn-text:hover {
    color: #ffffff;
}

.btn-text:hover::after {
    background-color: #ffffff;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 2rem;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -2;
    animation: kenBurnsPremium 20s infinite ease-in-out;
}

@keyframes kenBurnsPremium {
    0%, 100% { transform: scale(1.00); }
    50% { transform: scale(1.05); }
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5,5,5,0.7);
    z-index: 1;
}

.hero-content {
    max-width: 900px;
    z-index: 10;
    margin-top: 18vh;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    color: #ffffff;
}

.hero-title .line {
    display: block;
    text-shadow: 0px 4px 15px rgba(0, 0, 0, 0.4);
}

.hero-text {
    font-size: 0.95rem;
    color: rgba(205, 207, 214, 0.95);
    max-width: 550px;
    margin: 0 auto 2rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    line-height: 1.8;
}

.hero-subtitle {
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    color: var(--color-gray);
    margin-bottom: 3.5rem;
    text-transform: uppercase;
    font-weight: 400;
    opacity: 1;
}

.hero-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

/* Internal Hero */
.internal-hero {
    position: relative;
    min-height: 82vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 2rem;
    overflow: hidden;
}

.internal-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5,5,5,0.7);
    z-index: 1;
}

.internal-hero .hero-content {
    margin-top: 10vh;
}

.internal-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 2rem;
    color: #ffffff;
    text-shadow: 0px 4px 15px rgba(0, 0, 0, 0.4);
}

.internal-hero-text {
    font-size: 1.1rem;
    color: rgba(205, 207, 214, 0.95);
    max-width: 600px;
    margin: 0 auto 2rem;
    font-weight: 300;
    line-height: 1.8;
}

.animate-fadein {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scroll-indicator {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    opacity: 0.85;
    color: #ffffff;
    animation: scrollBounce 2.5s infinite ease-in-out;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(6px); }
}

.scroll-indicator span {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 400;
}

.scroll-indicator .line {
    width: 1px;
    height: 80px;
    background-color: #ffffff;
    animation: lineDrop 2s infinite ease-in-out;
}

@keyframes lineDrop {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    50.1% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* Custom Highlights */
.brand-highlight {
    font-weight: 500;
    color: #ffffff;
}

.obsesion-highlight {
    font-weight: 500;
    color: #ffffff;
}

.filosofia-eyebrow {
    font-size: 1.1rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 24px;
}

.filosofia-highlight-q {
    font-size: clamp(2.2rem, 3.5vw, 2.5rem);
    font-weight: 600;
    color: #050814;
    font-style: italic;
    margin: 2rem auto;
    max-width: 650px;
    line-height: 1.3;
}

.text-highlight {
    font-weight: 500;
    color: var(--color-navy);
}

.resenas-section-title {
    font-size: 1rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-brown);
    margin-bottom: 1rem;
}

.map-placeholder {
    width: 100%;
    height: 150px;
    background: rgba(22,34,81,0.05);
    border: 1px dashed rgba(22,34,81,0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: rgba(22,34,81,0.6);
    margin: 2rem 0 1.5rem;
}

/* Filosofía */
.filosofia-section {
    background: linear-gradient(180deg, rgba(5,5,5,1) 0%, rgba(22,34,81,0.45) 6%, #CDCFD6 18%, #CDCFD6 100%);
    padding: 2.8rem 2rem 0;
    text-align: center;
}

.filosofia-container {
    max-width: 800px;
    margin: 0 auto;
    padding-top: 1.5rem;
}

.filosofia-img-container {
    max-width: 900px;
    margin: 1.5rem auto 2rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.filosofia-inline-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 500px;
}

.filosofia-text, .filosofia-remate-container, .filosofia-desc, .filosofia-highlight {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.filosofia-text {
    font-size: clamp(2rem, 4vw, 4rem);
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--color-navy);
}

.filosofia-remate-container {
    margin-bottom: 2.5rem;
}

.filosofia-remate-container .script-accent {
    font-size: clamp(2.5rem, 4vw, 4rem);
    color: var(--color-brown);
    opacity: 0.9;
}

.filosofia-desc p {
    font-size: 1.2rem;
    color: var(--color-navy);
    max-width: 600px;
    margin: 0 auto 1.5rem;
    font-weight: 300;
    letter-spacing: 0.02em;
}

.filosofia-highlight {
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--color-brown);
    margin: 3rem auto !important;
    font-style: italic;
}

.filosofia-dato {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(22,34,81,0.2);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.editorial-dato {
    display: flex;
    flex-direction: column;
    margin-bottom: 2rem;
}

.editorial-dato .numero {
    font-size: 5rem;
    font-weight: 300;
    color: var(--color-brown);
    line-height: 1;
    letter-spacing: -0.02em;
}

.editorial-dato .palabra {
    font-size: 3rem;
    font-weight: 600;
    color: var(--color-navy);
    letter-spacing: 0.1em;
    line-height: 1;
}

.filosofia-dato p {
    font-size: 1rem;
    color: var(--color-navy);
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.dato-fuente {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(22,34,81,0.6);
}

/* Accesos Rápidos */
.accesos-section {
    background-color: var(--color-gray);
    padding: 2rem;
    padding-top: 0; /* Flows directly after filosofia */
}

.accesos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.acceso-card {
    background-color: var(--color-navy);
    padding: 2.5rem 2rem;
    text-align: center;
    text-decoration: none;
    border: 1px solid transparent;
    transition: var(--transition-smooth);
    border-radius: 12px;
    box-shadow: 0 10px 28px rgba(22,34,81,0.10);
    overflow: hidden;
}

.acceso-card h4 {
    font-size: 1rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.acceso-card p {
    font-size: 0.85rem;
    color: rgba(205,207,214,0.7);
    font-weight: 300;
}

.acceso-card:hover {
    background-color: var(--color-brown);
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(22,34,81,0.18);
}

/* Conceptos */
.conceptos-section {
    background-color: var(--color-dark);
    padding: 0;
}

.concepto-block {
    display: flex;
    min-height: 70vh;
    align-items: center;
}

.concepto-block.lorenza {
    background: linear-gradient(135deg, #050505 0%, #362012 100%);
}

.concepto-block.loreto {
    background: linear-gradient(135deg, #050505 0%, #162251 100%);
}

.concepto-block.reverse {
    flex-direction: row-reverse;
}

.concepto-image {
    width: 50%;
    height: 80vh;
    position: relative;
    overflow: hidden;
}

.concepto-image .img-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 2s ease;
}

.concepto-block.lorenza .concepto-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(54,32,18,0.75), transparent 40%, transparent 60%, rgba(54,32,18,0.75));
    pointer-events: none;
}

.concepto-block.loreto .concepto-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to left, rgba(22,34,81,0.85), transparent 40%, transparent 60%, rgba(22,34,81,0.85));
    pointer-events: none;
}

.concepto-block:hover .img-bg {
    transform: scale(1.05);
}

.concepto-content {
    flex: 1;
    padding: 5rem 6rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.concepto-eyebrow {
    font-size: 0.85rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--color-gray);
    margin-bottom: 1rem;
    opacity: 0.8;
}

.lorenza .concepto-eyebrow {
    color: #F28C45;
    opacity: 1;
}
.lorenza .btn-text:hover {
    color: #F28C45;
}

.loreto .concepto-eyebrow {
    color: #3D9CA8;
    opacity: 1;
}
.loreto .btn-text:hover {
    color: #3D9CA8;
}

.concepto-title {
    font-size: 3.5rem;
    margin-bottom: 2.5rem;
    color: #ffffff;
    line-height: 1.1;
}

.concepto-desc {
    margin-bottom: 3.5rem;
    max-width: 450px;
}

.concepto-desc p {
    font-size: 1.1rem;
    color: rgba(205, 207, 214, 0.7);
    margin-bottom: 1rem;
    font-weight: 300;
}

/* Audiencias */
.audiencias-section {
    padding: 3rem 2rem;
    background: linear-gradient(180deg, #050505 0%, #162251 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 8rem;
}

.section-header h2 {
    font-size: 3.5rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.audiencias-intro p {
    font-size: 1.1rem;
    color: rgba(205, 207, 214, 0.6);
    margin-bottom: 0.5rem;
    font-weight: 300;
    letter-spacing: 0.05em;
}

.audiencias-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    max-width: 1600px;
    margin: 0 auto;
}

.audiencia-item {
    position: relative;
    height: 40vh;
    overflow: hidden;
    cursor: pointer;
    background-color: transparent;
    border: 1px solid rgba(205,207,214,0.1);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.8s ease;
}

.audiencia-item:hover {
    border-color: rgba(205,207,214,0.4);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.audiencia-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 2s ease, filter 1s ease, opacity 0.8s ease;
    opacity: 1;
    filter: none;
}

/* Individual experience background assignments */
.audiencia-item:nth-child(1) .audiencia-bg {
    background-image: url('assets/Familia-1.jpeg');
}
.audiencia-item:nth-child(2) .audiencia-bg {
    background-image: url('assets/Pareja-1.jpeg');
}
.audiencia-item:nth-child(3) .audiencia-bg {
    background-image: url('assets/Amigos-3.jpeg');
}
.audiencia-item:nth-child(4) .audiencia-bg {
    background-image: url('assets/Amigos-Universitarios-1.jpeg');
}
.audiencia-item:nth-child(5) .audiencia-bg {
    background-image: url('assets/Amigos-Universitarios-Celebrar.jpeg');
}
.audiencia-item:nth-child(6) .audiencia-bg {
    background-image: url('assets/General-12.jpeg');
}
.audiencia-item:nth-child(7) .audiencia-bg {
    background-image: url('assets/Juriquilla-2.jpg');
}
.audiencia-item:nth-child(8) .audiencia-bg {
    background-image: url('assets/Zibata.jpg');
}

.audiencia-item:hover .audiencia-bg {
    transform: scale(1.08);
    opacity: 1;
    filter: brightness(0.45);
}

.audiencia-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 3rem;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    background: linear-gradient(to top, rgba(5,5,5,0.7), transparent 50%);
    transition: background 0.5s ease;
}

.audiencia-item:hover .audiencia-content {
    background: rgba(5,5,5,0.9);
}

.audiencia-content h3 {
    font-size: 1.2rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-gray);
    font-weight: 500;
}

.audiencia-desc-container {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, opacity 0.5s ease;
}

.audiencia-item:hover .audiencia-desc-container {
    max-height: 300px;
    opacity: 1;
}

.audiencia-desc {
    font-size: 0.9rem;
    color: rgba(205,207,214,0.95);
    line-height: 1.5;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.audiencia-sub {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #ffffff;
    margin-top: 0.5rem;
    opacity: 0;
    transform: translateY(5px);
    transition: all 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding-bottom: 0.5rem;
}

.audiencia-item:hover .audiencia-sub {
    opacity: 1;
    transform: translateY(0);
}

.audiencia-item:hover .audiencia-sub {
    opacity: 1;
    transform: translateY(0);
}

.audiencia-desc, .audiencia-cta {
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.audiencia-item:hover .audiencia-desc,
.audiencia-item:hover .audiencia-cta {
    opacity: 1;
    transform: translateY(0);
}

.audiencia-desc {
    font-size: 0.85rem;
    color: rgba(205, 207, 214, 0.8);
    font-weight: 300;
    margin-top: 0.5rem;
    margin-bottom: 1.5rem;
}

/* Reseñas */
.resenas-section {
    padding: 1.5rem 2rem;
    background-color: var(--color-gray);
    text-align: center;
}

.resenas-container {
    max-width: 800px;
    margin: 0 auto;
}

.resenas-title {
    font-size: 2.2rem;
    color: var(--color-navy);
    margin-bottom: 1.5rem;
}

.resenas-intro p {
    font-size: 1.1rem;
    color: var(--color-navy);
    margin-bottom: 0.5rem;
    font-weight: 300;
}

.resenas-carousel-wrapper {
    display: flex;
    align-items: center;
    position: relative;
    margin-top: 3rem;
}

.carousel-arrow {
    background: transparent;
    border: none;
    color: var(--color-navy);
    font-size: 2rem;
    cursor: pointer;
    padding: 0 1rem;
    transition: transform 0.3s ease;
}

.carousel-arrow:hover {
    transform: scale(1.2);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(22,34,81,0.2);
    cursor: pointer;
    transition: background 0.3s ease;
}

.carousel-dot.active {
    background: var(--color-navy);
}

.resenas-carousel {
    flex: 1;
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 0;
    padding: 1rem 0;
    scrollbar-width: none; /* Firefox */
}

.resenas-carousel::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.resena-card {
    flex: 0 0 100%;
    min-width: 100%;
    scroll-snap-align: center;
    background-color: transparent;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

@media (min-width: 768px) {
    .resena-card {
        flex: 0 0 100%;
        min-width: 100%;
    }
}

.stars {
    color: var(--color-brown);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.resena-text {
    font-size: clamp(1.4rem, 3vw, 2rem);
    line-height: 1.5;
    font-weight: 300;
    color: var(--color-navy);
    margin-bottom: 1.25rem;
    font-style: italic;
}

.resena-author {
    font-size: 0.9rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-navy);
    font-weight: 500;
}

/* Ubicaciones */
.ubicaciones-section {
    padding: 2rem 2rem;
    background-color: var(--color-navy);
    color: var(--color-gray);
}

.ubicaciones-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    align-items: stretch;
    justify-content: space-around;
}

.ubicacion-card {
    text-align: center;
    padding: 3rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.ubicacion-card .btn-text {
    margin-top: auto;
}

.map-embed-wrapper {
    width: 100%;
    height: 260px;
    border-radius: 12px;
    overflow: hidden;
    margin-top: 2rem;
    border: 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.map-embed {
    width: 100%;
    height: 100%;
    border: 0;
}

.ubicacion-img-wrapper {
    width: 100%;
    height: 300px;
    margin-bottom: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    position: relative;
    overflow: hidden;
}

.ubicacion-img-wrapper::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(22,34,81,0.15);
    transition: all 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
    pointer-events: none;
}

.ubicacion-card:hover .ubicacion-img-wrapper::after {
    background: rgba(22,34,81,0.05);
}

.ubicacion-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.ubicacion-card:hover .ubicacion-img {
    transform: scale(1.05);
}

.ubicacion-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #ffffff;
    letter-spacing: 0.1em;
    min-height: 2.4em;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ubicacion-desc {
    flex-grow: 1;
}

.ubicacion-divider {
    width: 1px;
    background-color: rgba(205,207,214,0.1);
    margin: 3rem 0;
}

/* Reservaciones */
.reservaciones-section {
    padding: 3.5rem 2rem;
    background-color: var(--color-gray);
    text-align: center;
    color: var(--color-navy);
}

.reservaciones-container {
    max-width: 700px;
    margin: 0 auto;
}

.reservaciones-container h2 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    color: var(--color-navy);
}

.reservaciones-intro {
    margin-bottom: 4rem;
}

.reservaciones-intro p {
    color: rgba(22,34,81,0.6);
    font-weight: 300;
    margin-bottom: 0.5rem;
}

.reservaciones-opciones {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.reserva-opcion {
    border-radius: 12px;
    background: rgba(255,255,255,0.22);
    box-shadow: 0 10px 30px rgba(22,34,81,0.08);
    transition: all 0.35s ease;
    border: 1px solid rgba(22,34,81,0.2);
    padding: 3rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.reserva-opcion:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(22,34,81,0.16);
    border-color: rgba(22,34,81,0.35);
}

.reserva-icon {
    width: 48px;
    height: 48px;
    color: var(--color-brown);
    margin-bottom: 1.5rem;
}

.reserva-opcion h4 {
    color: var(--color-navy);
    font-size: 0.95rem;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
    font-weight: 600;
}

.opcion-frase {
    font-size: 1.1rem;
    color: var(--color-brown);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.opcion-texto {
    font-size: 0.85rem;
    color: rgba(22,34,81,0.7);
    line-height: 1.6;
}

.reserva-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-row {
    display: flex;
    gap: 2rem;
}

.form-row select, .form-row input, .form-row textarea {
    flex: 1;
    padding: 1.2rem 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(22,34,81,0.3);
    color: var(--color-navy);
    font-family: var(--font-primary);
    font-size: 1rem;
    outline: none;
    border-radius: 0;
    -webkit-appearance: none;
    transition: border-color 0.3s ease;
}

.form-row select::placeholder, .form-row input::placeholder, .form-row textarea::placeholder {
    color: rgba(22,34,81,0.5);
}

.form-row select option {
    background-color: var(--color-gray);
    color: var(--color-navy);
}

.form-row select:focus, .form-row input:focus, .form-row textarea:focus {
    border-bottom-color: var(--color-navy);
    color: var(--color-navy);
}

.reserva-form .btn {
    background-color: var(--color-navy);
    color: #ffffff;
    border: none;
}

.reserva-form .btn:hover {
    background-color: var(--color-brown);
    color: #ffffff;
}

/* Footer */
.main-footer {
    background-color: var(--color-gray);
    padding: 4rem 4rem 0rem;
    color: var(--color-navy);
    border-top: 1px solid rgba(22,34,81,0.18);
}

.footer-top-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-bottom: 1px solid rgba(22,34,81,0.18);
    padding-bottom: 3rem;
    margin-bottom: 4rem;
}

.footer-logo-img {
    height: 70px;
    margin-bottom: 2rem;
}

.footer-phrase {
    color: var(--color-brown);
    font-size: 2.2rem;
    font-weight: 300;
    line-height: 1.3;
}

.footer-eyebrow {
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-navy);
    margin-bottom: 2rem;
    font-weight: 600;
}

.footer-content-block p {
    font-size: 0.95rem;
    color: var(--color-navy);
    margin-bottom: 0.5rem;
    font-weight: 300;
}

.footer-content-block p.light-text {
    color: rgba(22,34,81,0.7);
}

.footer-nav-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem 3rem;
}

.footer-nav-grid a {
    color: var(--color-navy);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 300;
    transition: var(--transition-smooth);
}

.footer-nav-grid a:hover {
    color: var(--color-brown);
}





.footer-socials {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid rgba(22,34,81,0.3);
    color: var(--color-navy);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition-smooth);
    overflow: visible;
}

.social-icon {
    width: 20px;
    height: 20px;
    display: block;
    stroke: currentColor;
}

.social-btn svg {
    width: 20px;
    height: 20px;
}

.social-btn:hover {
    background-color: var(--color-navy);
    color: #ffffff;
    border-color: var(--color-navy);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto 4rem auto;
    flex-wrap: wrap;
    gap: 4rem;
}

.footer-bottom {
    background-color: rgba(22,34,81,0.08);
    padding: 2rem 4rem;
    margin: 0 -4rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(22,34,81,0.65);
    letter-spacing: 0.05em;
    font-weight: 400;
}



/* Responsive */
@media (max-width: 1024px) {
    .audiencias-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .accesos-grid, .reservaciones-opciones {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .concepto-block, .concepto-block.reverse {
        flex-direction: column;
        height: auto;
    }
    
    .concepto-image {
        width: 100%;
        height: 60vh;
    }
    
    .concepto-content {
        width: 100%;
        padding: 5rem 3rem;
    }
    
    .ubicaciones-container {
        flex-direction: column;
        gap: 3rem;
    }
    
    .ubicacion-divider {
        width: 100px;
        height: 1px;
    }
}

@media (max-width: 768px) {
    .nav-links, .header-action {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    #main-header {
        padding: 1.5rem 2rem;
    }
    
    .internal-hero {
        min-height: 75vh;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .audiencias-grid, .accesos-grid, .reservaciones-opciones {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        flex-direction: column;
    }
    
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-phrase {
        font-size: 1.8rem;
    }
    
    .footer-links-col {
        gap: 1rem;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-nav-grid {
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    /* Tanda 12.4: Corrección móvil audiencias */
    .audiencias-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .audiencia-item {
        height: auto;
        min-height: 420px;
    }

    .audiencia-content {
        position: relative;
        height: auto;
        min-height: 420px;
        justify-content: flex-end;
        padding: 2rem;
        background: linear-gradient(to top, rgba(5,5,5,0.88), rgba(5,5,5,0.35));
    }

    .audiencia-bg {
        position: absolute;
        opacity: 1;
        filter: brightness(0.45);
    }

    .audiencia-desc-container {
        max-height: none;
        opacity: 1;
        overflow: visible;
    }

    .audiencia-sub,
    .audiencia-desc,
    .audiencia-cta {
        opacity: 1;
        transform: none;
    }

    .audiencia-desc {
        font-size: 0.9rem;
        line-height: 1.55;
        margin-bottom: 1.4rem;
    }

    .audiencia-content h3 {
        font-size: 1rem;
        line-height: 1.25;
    }
}

@media (max-width: 480px) {
    .internal-hero {
        min-height: 65vh;
    }
}

/* Nuevos bloques Tanda 2 - Grupo Cuna / Lorenza / Loreto */
.content-section {
    padding: 3.5rem 2rem;
    background-color: #1B1E2B; /* Dark premium, not flat black */
    color: #ffffff;
}

.content-section.navy {
    background-color: var(--color-navy);
}

.content-section.light {
    background-color: #CDCFD6;
    color: var(--color-navy);
}

.content-section.light h2,
.content-section.light h3,
.content-section.light p,
.content-section.light .editorial-title,
.content-section.light .editorial-text,
.content-section.light .two-col-text h2,
.content-section.light .two-col-text p,
.content-section.light .territory-card .territory-data {
    color: var(--color-navy);
}

.editorial-block {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.editorial-title {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.2;
    margin-bottom: 2rem;
}

.editorial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: inherit;
    font-weight: 300;
}

.content-section.light .editorial-text {
    color: #333333;
}

.stat-block {
    text-align: center;
    padding: 3.5rem 2rem;
    background-color: #1B1E2B;
    color: #ffffff;
}

.stat-block.light {
    background-color: #CDCFD6;
    color: var(--color-navy);
}

.stat-block.light .stat-text {
    color: var(--color-navy);
}

.stat-block.light .stat-source {
    color: #555555;
}

.stat-number {
    font-size: clamp(6rem, 15vw, 10rem);
    font-weight: 700;
    color: var(--color-gray);
    margin-bottom: 1rem;
    line-height: 1;
    letter-spacing: -0.05em;
}

.stat-text {
    font-size: 1.5rem;
    max-width: 900px;
    margin: 0 auto 2rem;
    line-height: 1.6;
    font-weight: 300;
}

.stat-source {
    font-size: 0.8rem;
    color: #888888;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.two-col-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.two-col-text h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.two-col-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
}

.two-col-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 4px;
}

.concept-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 2rem auto 0;
}

.concept-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 14px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.35s ease;
}

.concept-card:hover {
    transform: translateY(-6px);
}

.concept-card:first-child {
    border-top: 4px solid #F28C45;
}

.concept-card:last-child {
    border-top: 4px solid #3D9CA8;
}

.concept-card-img {
    height: 320px;
    width: 100%;
    object-fit: cover;
}

.concept-card-content {
    padding: 3.5rem 2.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.concept-eyebrow {
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
}

.concept-eyebrow.lorenza {
    color: #F28C45;
}

.concept-eyebrow.loreto {
    color: #3D9CA8;
}

.concept-card h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--color-navy);
}

.concept-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #333333;
    margin-bottom: 1rem;
}

.concept-card .cta-wrapper {
    margin-top: auto;
    padding-top: 2rem;
}

.location-territory-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.territory-card {
    background: rgba(255,255,255,0.03);
    border-radius: 8px;
    padding: 2.5rem;
    text-align: left;
}

.territory-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.territory-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.7);
    margin-bottom: 1.5rem;
}

.territory-card .territory-data {
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    color: var(--color-gray);
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.territory-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 4px;
}

.content-section.light .location-territory-grid .btn-secondary,
.content-section.light .territory-card .btn-secondary {
    color: var(--color-navy);
    border-color: var(--color-navy);
    background-color: transparent;
    padding: 1rem 2.5rem;
}

.content-section.light .location-territory-grid .btn-secondary::after,
.content-section.light .territory-card .btn-secondary::after {
    display: none;
}

.content-section.light .location-territory-grid .btn-secondary:hover,
.content-section.light .territory-card .btn-secondary:hover {
    background-color: var(--color-navy);
    color: #ffffff;
    border-color: var(--color-navy);
}

.differential-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 2.5rem auto 0;
}

.differential-item {
    background: #ffffff;
    padding: 3rem 2.5rem;
    border-radius: 14px;
    border-top: 4px solid var(--color-gray);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.differential-item.lorenza-accent {
    border-top: 5px solid #F28C45;
    padding: 2.2rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-self: start;
    height: auto;
    box-shadow: 0 10px 28px rgba(0,0,0,0.08);
}

.differential-item.lorenza-accent .differential-number {
    font-size: 2.3rem;
    font-weight: 800;
    line-height: 1;
    color: #F28C45;
    opacity: 0.8;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.differential-item.lorenza-accent .differential-variable {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: var(--color-navy);
}

.differential-item.lorenza-accent .differential-variable::after {
    content: "";
    display: block;
    width: 45px;
    height: 2px;
    background-color: #F28C45;
    margin-top: 0.6rem;
}

.differential-item.lorenza-accent .differential-desc {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #333333;
    margin-bottom: 1.2rem;
}

.differential-item.lorenza-accent .differential-why {
    font-size: 0.95rem;
    line-height: 1.65;
    color: #2D3748;
    font-style: italic;
    margin-top: 0.4rem;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(22, 34, 81, 0.15);
}

@media (max-width: 768px) {
    .differential-item.lorenza-accent {
        padding: 1.8rem 1.5rem;
    }
}

.differential-item.loreto-accent {
    border-top-color: #3D9CA8;
}

.differential-number {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    opacity: 0.3;
}

.differential-variable {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--color-navy);
}

.differential-desc {
    font-size: 1rem;
    line-height: 1.6;
    color: #444444;
    margin-bottom: 1.5rem;
}

.differential-why {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #666666;
    font-style: italic;
}

.final-cta-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 5rem 2rem;
    min-height: 60vh;
    background-color: #1B1E2B;
    color: #ffffff;
    position: relative;
    background-size: cover;
    background-position: center;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(17, 17, 17, 0.85);
    z-index: 1;
}

.final-cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

.final-cta-section.light {
    background-color: #CDCFD6;
    color: var(--color-navy);
}

.final-cta-section.light h2,
.final-cta-section.light p {
    color: var(--color-navy);
}

.final-cta-section.navy {
    background-color: var(--color-navy);
    color: #ffffff;
}

.final-cta-section h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.final-cta-section p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .two-col-layout,
    .location-territory-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .two-col-image img {
        height: 400px;
    }
    
    .territory-card {
        padding: 2rem;
    }
}

/* Photo Breaks (Tanda 2.5) */
.photo-break {
    width: 100%;
    height: 45vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    box-shadow: inset 0 0 100px rgba(0,0,0,0.5);
    margin: 4rem 0;
}

@media (max-width: 768px) {
    .content-section {
        padding: 3.5rem 1.5rem;
    }
    .photo-break {
        height: 32vh;
    }
    .final-cta-section {
        min-height: 50vh;
    }
}

/* ==========================================================================
   Nuevas Clases - Tanda 3 (Eventos / Empresas)
   ========================================================================== */

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

.event-card {
    background: rgba(255,255,255,0.05);
    padding: 2.5rem;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.35s ease;
}

.event-card:hover {
    transform: translateY(-6px);
}

.event-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.event-card p {
    color: rgba(255,255,255,0.8);
}

.content-section.light .event-card {
    background: #ffffff;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.content-section.light .event-card h3 {
    color: var(--color-navy);
}

.content-section.light .event-card p {
    color: #444;
}

.split-option-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.option-card {
    background: #ffffff;
    padding: 3rem;
    border-radius: 14px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.option-card h3 {
    font-size: 1.8rem;
    color: var(--color-navy);
    margin-bottom: 1rem;
}

.option-card p {
    color: #444;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 2rem auto 0;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: rgba(255,255,255,0.03);
    padding: 2rem;
    border-radius: 14px;
}

.benefit-number {
    font-size: 2rem;
    font-weight: 700;
    color: #F28C45;
    line-height: 1;
}

.benefit-item p {
    margin: 0;
    color: rgba(255,255,255,0.9);
}

.form-row textarea { resize: vertical; min-height: 100px; }


/* ==========================================================================
   TANDA 7.5 - LANDING VISUAL DISTINCTIONS
   ========================================================================== */

/* Overlays */
.hero-background.amber-overlay { filter: sepia(0.3) contrast(1.1) brightness(0.8); }
.hero-background.cinematic-overlay { filter: contrast(1.2) brightness(0.6) saturate(1.2); }
.hero-background.dynamic-overlay { filter: contrast(1.1) brightness(0.7) saturate(1.3); }
.hero-background.fresh-overlay { filter: contrast(1.05) brightness(0.85); }

/* Familiar: Editorial Stat Block */
/* Familiar: Editorial Stat Block */
.stat-block.editorial {
    background: #fdfbf7;
    padding: 5rem 2rem; /* Adjusted for better transition */
    color: var(--color-navy);
}
.stat-block.editorial .stat-number {
    color: #D4AF37;
    font-family: var(--font-accent);
    font-size: clamp(3rem, 6vw, 4rem);
    display: block;
    margin-bottom: 1rem;
}
.stat-block.editorial .stat-text {
    color: #444;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 2rem;
}
.stat-block.editorial .stat-source {
    font-size: 0.8rem;
    opacity: 0.7;
}
.editorial-text + .editorial-text {
    margin-top: 1rem;
}
.final-cta-title {
    font-size: clamp(3rem, 6vw, 5rem);
    color: #ffffff;
    text-shadow: 0 4px 15px rgba(0,0,0,0.5);
}
.final-cta-accent {
    font-family: var(--font-accent);
    font-style: italic;
    color: #D4AF37;
}
.final-cta-subtitle {
    font-size: 1.3rem;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
.final-cta-buttons-wrapper {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
.btn-secondary-white {
    border-color: #ffffff !important;
    color: #ffffff !important;
}
.btn-secondary-white:hover {
    background: rgba(255,255,255,0.1);
}

/* Familiar: Illustrated Cards */
.illustrated-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: transform 0.4s ease;
}
.illustrated-card:hover {
    transform: translateY(-8px);
}
.illustrated-card svg {
    width: 48px;
    height: 48px;
    margin-bottom: 1.5rem;
    color: #F28C45;
}

/* Pareja: Magazine Cards */
.magazine-card {
    background: transparent;
    border-top: 2px solid var(--color-navy);
    padding: 3rem 0;
    border-radius: 0;
    box-shadow: none;
}
.magazine-card h3 {
    font-family: var(--font-accent);
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-style: italic;
}
.magazine-card p {
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Pareja: Special Event Block */
.event-special-block {
    background: #111;
    color: #fff;
    padding: 5rem 2rem;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.event-special-block h2 {
    font-family: var(--font-accent);
    font-size: clamp(3rem, 5vw, 4.5rem);
    color: #D4AF37;
    margin-bottom: 2rem;
    font-style: italic;
}

/* Amigos: Duel Grid */
.duel-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}
@media (max-width: 768px) {
    .duel-grid { grid-template-columns: 1fr; }
}
.duel-card {
    padding: 6rem 4rem;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.duel-card.lorenza-side {
    background: #F28C45;
}
.duel-card.loreto-side {
    background: #3D9CA8;
}
.duel-card h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}
.duel-card p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
}

/* Amigos: Impact Cards */
.impact-card {
    background: #1a1a1a;
    border: 1px solid rgba(255,255,255,0.05);
}
.impact-card h3 {
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #F28C45;
}

/* Universidad: Lifestyle Cards */
.lifestyle-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(0,0,0,0.04);
    box-shadow: 0 15px 35px rgba(0,0,0,0.04);
}
.lifestyle-card h3 {
    font-size: 1.8rem;
    color: var(--color-navy);
}

/* Universidad: Promo Badge */
.promo-badge-container {
    display: flex;
    justify-content: center;
    padding: 4rem 2rem;
    background: #f4f6f8;
}
.promo-badge {
    background: linear-gradient(135deg, #162251, #2a3b7d);
    color: #ffffff;
    padding: 2.5rem 4rem;
    border-radius: 50px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(22,34,81,0.2);
    display: inline-block;
    max-width: 800px;
}
.promo-badge h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}
.promo-badge p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    margin: 0;
}


/* ==========================================================================
   TANDA 8 - COMMERCIAL LANDINGS
   ========================================================================== */

/* Comparison Module */
.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}
@media (max-width: 768px) {
    .comparison-grid { grid-template-columns: 1fr; }
}
.compare-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 3rem 2.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.compare-card.negative {
    border-top: 4px solid #D9534F;
    background: #fdfdfd;
}
.compare-card.positive {
    border-top: 4px solid #3D9CA8;
}
.compare-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0 0 0;
}
.compare-list li {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 2rem;
    color: #444;
}
.compare-card.negative .compare-list li::before {
    content: '✗';
    color: #D9534F;
    position: absolute;
    left: 0;
    font-weight: bold;
}
.compare-card.positive .compare-list li::before {
    content: '✓';
    color: #3D9CA8;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Process Steps */
.step-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    box-shadow: 0 8px 24px rgba(0,0,0,0.04);
}
.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--color-navy);
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: bold;
    font-family: var(--font-accent);
    margin: 0 auto 1.5rem;
}
.step-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-navy);
}


/* ==========================================================================
   TANDA 9 - GEO LANDINGS
   ========================================================================== */
.hero-background.teal-overlay { filter: sepia(0.5) hue-rotate(160deg) contrast(1.1) brightness(0.6) saturate(1.5); }

/* Map Block */
.location-showcase {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    margin-top: 2rem;
}

/* --- PAREJA 2.1 ADJUSTMENTS --- */

.hero-quote {
    font-family: var(--font-accent);
    font-style: italic;
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    margin-top: 1rem;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    text-align: center;
}

.premium-card {
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
    backdrop-filter: blur(5px);
    padding: 3.5rem 2.5rem;
}

.content-section.navy .premium-card h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.6rem;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.content-section.navy .premium-card p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1rem;
    line-height: 1.6;
}

.premium-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
    color: #E2C275;
    opacity: 1;
}

/* PAREJA 2.3 REFINAMIENTO */
.hero-bg-pareja {
    background-image: url('assets/Landing-Pareja-6.jpeg');
}

.viernes-bg-pareja {
    background-image: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.8)), url('assets/Eventos-1.jpeg');
    background-size: cover;
    background-position: center;
}

.hero-editorial-list {
    margin: 2.5rem auto 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.15);
    max-width: 900px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.hero-editorial-item {
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    color: rgba(255,255,255,0.85);
    text-transform: uppercase;
    font-weight: 400;
}

.hero-editorial-dot {
    width: 4px;
    height: 4px;
    background-color: #D4AF37;
    border-radius: 50%;
    opacity: 0.8;
}

.hero-editorial-conclusion {
    font-size: 1.3rem;
    font-weight: 300;
    color: #ffffff;
    font-family: var(--font-accent);
    font-style: italic;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .hero-editorial-list {
        flex-direction: column;
        gap: 0.8rem;
        padding-top: 1.5rem;
    }
    .hero-editorial-dot {
        display: none;
    }
}

.pareja-context-section {
    padding-top: 3rem;
    padding-bottom: 1.5rem;
}

.pareja-attributes-section {
    padding-top: 0;
    padding-bottom: 3.5rem;
}

.duel-logo-badge {
    width: 260px;
    height: 170px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 60px;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.duel-logo {
    max-width: 75%;
    max-height: 70%;
    object-fit: contain;
    display: block;
    margin: 0;
}

@media (max-width: 768px) {
    .duel-logo-badge {
        width: 220px;
        height: 145px;
    }
}

/* Amigos 1.3: Clean classes */
.hero-title-amigos {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(2.5rem, 4.5vw, 3.5rem);
}
.stat-number-amigos {
    font-size: clamp(3rem, 5.5vw, 4rem);
    font-weight: 700;
    color: var(--color-gray);
    line-height: 1.1;
    display: block;
    margin-bottom: 0.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}
.stat-number-amigos .stat-number-secondary {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 400;
    display: block;
    margin-top: 0.2rem;
}
.stat-text-amigos {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0.5rem auto 2rem;
    color: #ffffff;
}
.stat-source-amigos {
    font-size: 0.8rem;
    opacity: 0.7;
    color: #ffffff;
}

.footer-phrase .script-accent {
    color: var(--color-brown);
    display: inline-block;
}

.ubicaciones-section .section-header {
    margin-bottom: 2rem;
}

/* Form Backend Styles */
/* Honeypot Anti-Spam */
.form-honeypot{
    position:absolute;
    left:-9999px;
    top:auto;
    width:1px;
    height:1px;
    overflow:hidden;
    opacity:0;
    pointer-events:none;
}
.form-response {
    margin-top: 15px;
}

/* ==========================================================================
   Promotions Component (Home & Page)
   ========================================================================== */

/* Page Styles */
.promotions-page-section {
    padding: 4rem 1.5rem;
    background-color: #ffffff;
}
.promotions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}
.promotion-card {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
}
.promotion-day {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--color-gray);
    margin-bottom: 0.5rem;
}
.promotion-brand {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}
.promotion-title {
    font-size: 1.8rem;
    color: var(--color-navy);
    margin-bottom: 1rem;
    line-height: 1.2;
}
.promotion-description {
    color: #555555;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}
.promotion-note {
    font-size: 0.85rem;
    color: #888888;
    margin-bottom: 2rem;
    font-style: italic;
}
.promotion-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}
.promotion-actions .btn {
    width: 100%;
}
.promotions-disclaimer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid #eeeeee;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.promotions-disclaimer h4 {
    font-size: 1.1rem;
    color: var(--color-navy);
    margin-bottom: 0.5rem;
}
.promotions-disclaimer p {
    font-size: 0.9rem;
    color: #777777;
}

/* Home Block Styles */
.promotions-home-section {
    background-color: var(--color-navy);
    color: #ffffff;
    padding: 5rem 1.5rem;
    text-align: center;
}
.promotions-home-container {
    max-width: 1000px;
    margin: 0 auto;
}
.promotions-home-section .section-eyebrow {
    color: #ffffff;
    opacity: 0.8;
}
.promotions-home-section .section-title {
    color: #ffffff;
    margin-bottom: 3rem;
}
.promotions-home-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}
.promotions-home-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}
.promotions-home-item p {
    font-size: 1rem;
    opacity: 0.9;
}
.promotions-home-section .promotion-note {
    color: #cccccc;
    margin-bottom: 3rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .promotions-home-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

/* Visual & Responsive Adjustments for Promotions */
.promotion-day {
    color: var(--color-navy);
    opacity: 0.72;
}
.promotion-card .btn-primary {
    background-color: var(--color-navy);
    color: #ffffff;
    border-color: var(--color-navy);
}
.promotion-card .btn-primary:hover {
    background-color: var(--color-brown);
    border-color: var(--color-brown);
    color: #ffffff;
}
.promotion-card .btn-secondary {
    color: var(--color-navy);
}
.promotion-card .btn-secondary::after {
    background-color: rgba(22, 34, 81, 0.55);
}
.promotion-card .btn-secondary:hover {
    color: var(--color-brown);
}
.promotion-card .btn-secondary:hover::after {
    background-color: var(--color-brown);
}
.promotion-actions {
    margin-top: auto;
}
.promotions-final-cta {
    background-color: var(--color-gray);
    color: var(--color-navy);
    padding: 6rem 1rem;
    text-align: center;
}
.promotions-final-cta .section-title,
.promotions-final-cta p {
    color: var(--color-navy);
}
.promotions-final-cta .cta-image {
    width: 100%;
    max-width: 800px;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 3rem;
}
#hero-promociones .hero-background {
    background-position: center 45%;
}

@media (max-width: 768px) {
    .promotions-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 1.5rem;
    }
    .promotion-card {
        padding: 2rem 1.25rem;
        width: 100%;
        min-width: 0;
    }
    .promotion-actions .btn {
        width: 100%;
        white-space: normal;
        line-height: 1.35;
    }
    .promotions-final-cta .cta-image {
        height: 260px;
        width: 100%;
    }
}

/* ==========================================================================
   Promotions Component Detailed Visual Fixes
   ========================================================================== */
.promotion-card .promotion-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 50px;
    padding: 0.9rem 1.25rem;
    border: 1px solid var(--color-navy);
    border-radius: 4px;
    font-family: var(--font-primary);
    font-size: 0.72rem;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 0.14em;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    opacity: 1;
    visibility: visible;
    position: relative;
    transition: background-color 0.3s ease,
                color 0.3s ease,
                border-color 0.3s ease,
                transform 0.3s ease;
}

.promotion-card .promotion-btn::after {
    display: none;
    content: none;
}

.promotion-card .promotion-btn-solid {
    background-color: var(--color-navy);
    border-color: var(--color-navy);
    color: #ffffff;
}

.promotion-card .promotion-btn-solid:hover,
.promotion-card .promotion-btn-solid:focus-visible {
    background-color: var(--color-brown);
    border-color: var(--color-brown);
    color: #ffffff;
    transform: translateY(-2px);
}

.promotion-card .promotion-btn-outline {
    background-color: transparent;
    border-color: var(--color-navy);
    color: var(--color-navy);
}

.promotion-card .promotion-btn-outline:hover,
.promotion-card .promotion-btn-outline:focus-visible {
    background-color: var(--color-navy);
    border-color: var(--color-navy);
    color: #ffffff;
    transform: translateY(-2px);
}

.promotions-final-cta .promotion-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    min-height: 52px;
    padding: 1rem 1.6rem;
    border: 1px solid var(--color-navy);
    border-radius: 4px;
    font-family: var(--font-primary);
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 0.16em;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    opacity: 1;
    visibility: visible;
    position: relative;
}

.promotions-final-cta .promotion-cta-btn::after {
    display: none;
    content: none;
}

.promotions-final-cta .promotion-cta-btn-solid {
    background-color: var(--color-navy);
    border-color: var(--color-navy);
    color: #ffffff;
}

.promotions-final-cta .promotion-cta-btn-solid:hover,
.promotions-final-cta .promotion-cta-btn-solid:focus-visible {
    background-color: var(--color-brown);
    border-color: var(--color-brown);
    color: #ffffff;
}

.promotions-final-cta .promotion-cta-btn-outline {
    background-color: transparent;
    border-color: var(--color-navy);
    color: var(--color-navy);
}

.promotions-final-cta .promotion-cta-btn-outline:hover,
.promotions-final-cta .promotion-cta-btn-outline:focus-visible {
    background-color: var(--color-navy);
    border-color: var(--color-navy);
    color: #ffffff;
}

.promotion-actions {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    width: 100%;
    margin-top: auto;
    align-items: stretch;
}

.promotions-final-actions {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 1rem;
}

.promotion-card {
    background-color: #f9f9f9;
    border: 1px solid rgba(22, 34, 81, 0.10);
    border-radius: 10px;
    padding: 2.5rem 2rem;
    box-shadow: 0 12px 30px rgba(22, 34, 81, 0.08);
    display: flex;
    flex-direction: column;
    height: 100%;
    min-width: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.promotion-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 38px rgba(22, 34, 81, 0.13);
}

.promotion-day {
    color: rgba(22, 34, 81, 0.72);
}

.promotion-title {
    color: var(--color-navy);
}

.promotion-description {
    color: #4b4b4b;
}

.promotion-note {
    color: #6f6f6f;
}

.promotions-disclaimer h4 {
    color: var(--color-navy);
}

.promotions-disclaimer p {
    color: #555555;
}

.promociones-intro .section-eyebrow,
.promociones-intro .section-title,
.promociones-intro p {
    color: var(--color-navy);
}

.promotions-final-cta {
    background-color: var(--color-gray);
    color: var(--color-navy);
    padding: 6rem 1.5rem;
    text-align: center;
}

.promotions-final-cta .container {
    max-width: 1000px;
    margin: 0 auto;
}

.promotions-final-cta .cta-image {
    display: block;
    width: 100%;
    max-width: 850px;
    height: 420px;
    margin: 0 auto 3rem;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
}

.promotions-final-cta .section-title {
    color: var(--color-navy);
    margin-bottom: 1.25rem;
}

.promotions-final-cta p {
    color: rgba(22, 34, 81, 0.78);
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

#hero-promociones .btn-primary {
    background-color: #ffffff;
    border-color: #ffffff;
    color: var(--color-navy);
    padding-left: 2rem;
    padding-right: 2rem;
}

#hero-promociones .btn-primary:hover {
    background-color: #F28C45;
    border-color: #F28C45;
    color: #ffffff;
}

#hero-promociones .btn-secondary {
    color: #ffffff;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

#hero-promociones .btn-secondary::after {
    display: none;
    content: none;
}

#hero-promociones .btn-secondary:hover {
    background-color: #ffffff;
    border-color: #ffffff;
    color: var(--color-navy);
}

.promotion-brand--lorenza {
    color: #F28C45;
}

.promotion-brand--loreto {
    color: #3D9CA8;
}

.promotion-brand--cuna {
    color: var(--color-navy);
}

@media (max-width: 768px) {
    .promotions-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .promotion-card {
        padding: 2rem 1.25rem;
    }
    .promotion-card .promotion-btn {
        min-height: 52px;
        width: 100%;
        white-space: normal;
    }
    .promotions-final-actions {
        flex-direction: column;
        width: 100%;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
    }
    .promotions-final-cta .promotion-cta-btn {
        width: 100%;
        min-width: 0;
    }
    .promotions-final-cta .cta-image {
        height: 260px;
    }
    #hero-promociones .hero-actions {
        width: 100%;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
    }
    #hero-promociones .hero-actions .btn {
        width: 100%;
    }
}

/* ==========================================================================
   Commercial Architecture - Quick Actions & Brand Promotions
   ========================================================================== */
.promotion-card[id] {
    scroll-margin-top: 120px;
}

.brand-quick-actions {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 1200px;
    margin: 0 auto;
}

.brand-quick-action {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 78px;
    padding: 1rem 1.25rem;
    text-decoration: none;
    font-family: var(--font-primary, 'Raleway', sans-serif);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    border-right: 1px solid rgba(255,255,255,0.12);
    transition: all 0.3s ease;
    text-align: center;
}

.brand-quick-action:last-child {
    border-right: none;
}

/* La Lorenza Actions */
.brand-quick-actions--lorenza {
    background: #362012;
}
.brand-quick-actions--lorenza .brand-quick-action {
    color: #ffffff;
}
.brand-quick-actions--lorenza .brand-quick-action:hover,
.brand-quick-actions--lorenza .brand-quick-action:focus-visible {
    background: #F28C45;
    color: #111111;
}

/* Loreto Actions */
.brand-quick-actions--loreto {
    background: var(--color-navy);
}
.brand-quick-actions--loreto .brand-quick-action {
    color: #ffffff;
}
.brand-quick-actions--loreto .brand-quick-action:hover,
.brand-quick-actions--loreto .brand-quick-action:focus-visible {
    background: #3D9CA8;
    color: #111111;
}

/* Brand Promotions Section */
.brand-promotions {
    padding: 3.5rem 1.5rem;
}
.brand-promotions-inner {
    max-width: 1100px;
    margin: 0 auto;
}
.brand-promotions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}
.brand-promotion-item {
    padding: 2rem;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
}
.brand-promotion-item .section-eyebrow {
    margin-bottom: 1rem;
    font-size: 0.8rem;
}
.brand-promotion-item h3 {
    margin-bottom: 0.5rem;
}
.brand-promotion-item p {
    flex-grow: 1;
    margin-bottom: 0.5rem;
}
.brand-promotion-item .promotion-note {
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}

.brand-promotions-link {
    display: inline-block;
    padding: 0.8rem 1.25rem;
    text-transform: uppercase;
    font-family: var(--font-primary, 'Raleway', sans-serif);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-align: center;
    border: 1px solid transparent;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    align-self: flex-start;
}

/* La Lorenza Promotions */
.brand-promotions--lorenza {
    background: #f6f3f0;
    color: var(--color-brown);
}
.brand-promotions--lorenza .section-eyebrow,
.brand-promotions--lorenza h3 {
    color: #F28C45;
}
.brand-promotions--lorenza .promotion-note {
    color: rgba(54, 32, 18, 0.7);
}
.brand-promotions--lorenza .brand-promotions-link {
    color: #F28C45;
    border-color: #F28C45;
}
.brand-promotions--lorenza .brand-promotions-link:hover {
    background: #F28C45;
    color: #ffffff;
}
.brand-promotions--lorenza .brand-promotion-item {
    border-color: rgba(242, 140, 69, 0.2);
}

/* Loreto Promotions */
.brand-promotions--loreto {
    background: #eef5f6;
    color: var(--color-navy);
}
.brand-promotions--loreto .section-eyebrow,
.brand-promotions--loreto h3 {
    color: #3D9CA8;
}
.brand-promotions--loreto .promotion-note {
    color: rgba(22, 34, 81, 0.7);
}
.brand-promotions--loreto .brand-promotions-link {
    color: #3D9CA8;
    border-color: #3D9CA8;
}
.brand-promotions--loreto .brand-promotions-link:hover {
    background: #3D9CA8;
    color: #ffffff;
}
.brand-promotions--loreto .brand-promotion-item {
    border-color: rgba(61, 156, 168, 0.2);
}

@media (max-width: 768px) {
    .brand-quick-actions {
        grid-template-columns: repeat(2, 1fr);
    }
    .brand-quick-action {
        min-height: 68px;
    }
    /* Fix border for 2x2 grid */
    .brand-quick-action:nth-child(2) {
        border-right: none;
    }
    .brand-quick-action:nth-child(1),
    .brand-quick-action:nth-child(2) {
        border-bottom: 1px solid rgba(255,255,255,0.12);
    }
    .brand-promotions-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Promociones Intro Surgical Adjustments
   ========================================================================== */
.promociones-intro {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
}

.promociones-intro .container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.promociones-intro .section-eyebrow {
    text-align: center;
    margin-bottom: 1rem;
}

.promociones-intro .section-title {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.promociones-intro .editorial-desc {
    max-width: 760px !important;
    margin: 1.5rem auto 0 !important;
    text-align: center;
}

.promociones-intro .editorial-desc p:last-child {
    font-size: 0.9em;
    opacity: 0.75;
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .promociones-intro {
        padding-left: 24px;
        padding-right: 24px;
    }
}
