html {
    scroll-behavior: smooth;
}

:root {
    /* Color Palette */
    --primary-color: #2e7d32;
    --primary-dark: #1b5e20;
    --secondary-color: #0288d1;
    --accent-color: #ff7043;
    --text-dark: #1a1a1a;
    --text-light: #f5f5f5;
    --bg-light: #f8f9fa;
    --glass-bg: rgba(255, 255, 255, 0.15);
    --glass-border: rgba(255, 255, 255, 0.3);

    /* Spacing & Layout */
    --container-width: 1400px;
    --section-padding: 80px 0;
    --border-radius: 24px;

    /* Transitions */
    --transition-fast: 0.3s ease;
}

/* Reset & Global */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: var(--section-padding);
}

.section-title {
    font-family: 'Cooper Black', 'Caprasimo', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.section-desc {
    text-align: center;
    margin-bottom: 3rem;
    color: #666;
    font-size: 1.1rem;
}

.btn {
    font-family: 'Cooper Black', 'Caprasimo', serif;
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(46, 125, 50, 0.3);
}

.btn-submit {
    background-color: var(--accent-color);
    color: white;
    width: 100%;
}

.btn-submit:hover {
    background-color: #f4511e;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    /*background: url('../images/background.webp') no-repeat center center/cover;*/
    padding: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.hero-glass-card {
    position: relative;
    z-index: 2;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--border-radius);
    border: 1px solid var(--glass-border);
    padding: 30px 40px 50px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    width: 85%;
    max-width: 1400px;
    margin: 0 auto;
}

/* Navigation */
.hero-nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 40px;
    position: relative;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    color: white;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: var(--transition-fast);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: white;
    transition: var(--transition-fast);
}

.nav-links a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: var(--transition-fast);
}

/* Hero Content */
.hero-card-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}

.hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.brand-container {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.hero-logo {
    width: 80px;
    height: 80px;
    border-radius: 12px;
}

.brand-name {
    font-family: 'Cooper Black', 'Caprasimo', serif;
    font-size: 2rem;
    color: white;
    line-height: 1.2;
    letter-spacing: 1px;
}

/* CTA Section */
.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cta-heading {
    font-family: 'Cooper Black', 'Caprasimo', serif;
    font-size: 3rem;
    color: white;
    line-height: 1.1;
    letter-spacing: 1px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.btn-ticket {
    font-family: 'Cooper Black', 'Caprasimo', serif;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    padding: 18px 30px;
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    transition: var(--transition-fast);
    max-width: 280px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-ticket:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.btn-ticket .arrow {
    font-size: 2rem;
    transition: var(--transition-fast);
}

.btn-ticket:hover .arrow {
    transform: translateX(5px);
}

.btn-ticket-overlay {
    position: absolute;
    bottom: 10%;
    left: 14%;
    z-index: 10;
    min-width: 300px;
}

/* Hero Right - Background Window */
.hero-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tiny-home-window {
    width: 100%;
    max-width: 550px;
    height: 400px;
    border-radius: 20px;
    border: 3px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.tiny-home-window::before {
    content: '';
    position: absolute;
    top: -40px;
    left: -40px;
    right: -40px;
    bottom: -40px;
    background: url('../images/background.webp') no-repeat center center/cover;
    filter: none;
    z-index: -1;
}

/* Stats Section */
.stats-section {
    background: white;
    padding: 0;
    min-height: 500px;
}

.stats-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 500px;
}

/* Left Side - Countdown */
.countdown-side {
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    position: absolute;
    top: 50px;
    left: 0;
    width: 60%;
    height: 100%;
}

.countdown-side::after {
    display: none;
}

.countdown-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    grid-template-rows: auto;
    gap: 0 100px;
    align-items: center;
    justify-items: center;
    z-index: 1;
    margin-right: 20%;
}

.countdown-item {
    display: contents;
}

.countdown-label {
    font-size: 2.5rem;
    color: #2a2a2a;
    text-align: center;
    font-family: 'Cooper Black', 'Caprasimo', serif;
}

.countdown-card {
    background: #2a2a2a;
    border-radius: 25px;
    width: 170px;
    height: 170px;
    padding: 0;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.countdown-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-50%);
}

.countdown-number {
    font-size: 6rem;
    color: #f5f3ed;
    font-family: 'Cooper Black', 'Caprasimo', serif;
    line-height: 1;
    z-index: 1;
    position: relative;
}

.countdown-separator {
    font-size: 3rem;
    font-weight: 800;
    color: #2a2a2a;
    grid-column: 2;
    grid-row: 1;
    margin-top: -5px;
    opacity: 0.6;
}

/* Explicit Grid Placement */
.countdown-item:nth-child(1) .countdown-label {
    grid-column: 1;
    grid-row: 1;
    margin-bottom: 10px;
}

.countdown-item:nth-child(1) .countdown-card {
    grid-column: 1;
    grid-row: 1;
}

.countdown-item:nth-child(3) .countdown-label {
    grid-column: 3;
    grid-row: 1;
    margin-bottom: 10px;
}

.countdown-item:nth-child(3) .countdown-card {
    grid-column: 3;
    grid-row: 1;
}

/* Right Side - Tickets */
.tickets-side {
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;
    position: absolute;
    top: 50px;
    right: 0;
    width: 40%;
    height: 100%;
}

.tickets-side::before {
    display: none;
}

.tickets-title {
    font-size: 3.5rem;
    color: #f5f3ed;
    text-align: center;
    line-height: 1.1;
    margin-bottom: 40px;
    z-index: 1;
    font-family: 'Cooper Black', 'Caprasimo', serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.tickets-display {
    background: #f1ebd8;
    border-radius: 30px;
    padding: 20px 60px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    z-index: 1;
    margin-top: 0;
    margin-right: 25%;
    position: relative;
    overflow: hidden;
    min-width: 420px;
    height: 170px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tickets-display::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(0, 0, 0, 0.08);
    transform: translateY(-50%);
}

.tickets-number {
    font-size: 5.5rem;
    font-weight: 800;
    color: #2a2a2a;
    font-family: 'Cooper Black', 'Caprasimo', serif;
    position: relative;
    z-index: 2;
}

/* Carousel - Bootstrap Overrides */
.catalogo-section {
    background-color: #f5f3ed;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.catalogo-header {
    position: absolute;
    top: 40px;
    left: 0;
    background: #2a2a2a;
    color: white;
    padding: 15px 40px 15px 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 10;
    border-radius: 0 5px 5px 0;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
}

.catalogo-icon {
    width: 30px;
    height: 30px;
    stroke: white;
}

.catalogo-header h2 {
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 2px;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

.carousel-item {
    height: 700px;
}

.carousel-item img {
    height: 100%;
    object-fit: cover;
}

/* ===== PARTICIPA SECTION REDESIGN ===== */

/* ===== PARTICIPA SECTION REDESIGN ===== */

.participa-section {
    background-color: transparent;
    padding: 0;
    width: 100%;
    margin: 0;
}

.participa-container-split {
    display: flex;
    width: 100%;
    margin: 0;
    min-height: 100vh;
}

.participa-left {
    flex: 0 0 35%;
    display: flex;
    flex-direction: column;
    padding: 0;
    margin: 0;
}

.participa-left-top {
    background-color: #8e9385;
    padding: 0px 40px;
    flex: 1.2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.participa-left-bottom {
    background-color: #222222;
    padding: 40px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.participa-left .section-title {
    text-align: left;
    color: white;
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
    font-family: 'Cooper Black', 'Caprasimo', serif;
}

.participa-description {
    font-size: 1.3rem;
    color: white;
    font-weight: 400;
    max-width: 100%;
    line-height: 1.5;
    font-family: 'Montserrat', sans-serif;
}

.compra-logo-container {
    margin-bottom: 20px;
}

.compra-logo {
    max-width: 100px;
    height: auto;
    margin-top: 30px;
}

/* Cart Widget */
.cart-widget {
    width: 100%;
    color: white;
}

.cart-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.cart-icon {
    font-size: 2rem;
}

.cart-header h3 {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    font-family: 'Cooper Black', 'Caprasimo', serif;
}

.cart-rows {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.cart-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2rem;
    color: #888;
    padding: 5px 0;
}

.cart-label {
    font-family: 'Montserrat', sans-serif;
    color: #999;
}

.ticket-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    background: transparent;
}

.btn-minus,
.btn-plus {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: none;
    background: white;
    color: #2a2a2a;
    font-size: 1.2rem;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
}

#ticket-count {
    background: #f1ebd8;
    border: none;
    border-radius: 8px;
    padding: 10px 10px;
    width: 160px;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: #2a2a2a;
    font-family: 'Montserrat', sans-serif;
}

.total-box {
    background: #f1ebd8;
    border-radius: 8px;
    padding: 10px 15px;
    width: 160px;
    text-align: center;
    display: inline-block;
    margin-right: 8.9%;
}

#total-amount {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2a2a2a;
}

.btn-pay {
    font-family: 'Cooper Black', 'Caprasimo', serif;
    width: 100%;
    background: #f1ebd8;
    color: #2a2a2a;
    border: none;
    padding: 12px;
    border-radius: 12px;
    font-size: 1.5rem;
    cursor: pointer;
    transition: transform 0.2s;
}

.btn-pay:hover {
    transform: translateY(-2px);
    background: white;
}

.participa-right {
    flex: 0 0 65%;
    background-color: #9ca094;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tickets-grid-new {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    width: 100%;
    max-width: 1200px;
}

.ticket-card-new {
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
    border-radius: 15px;
    background: transparent;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.ticket-card-new:hover {
    transform: scale(1.03) translateY(-10px);
    z-index: 10;
}

.ticket-card-new img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.ticket-card-new:hover img {
    transform: scale(1.1);
}

.ticket-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ticket-card-new:hover .ticket-overlay {
    opacity: 1;
}

.btn-add-overlay {
    font-family: 'Cooper Black', 'Caprasimo', serif;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: white;
    color: #2a2a2a;
    border: none;
    font-size: 2.5rem;
    font-weight: 300;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
    line-height: 1;
}

.btn-add-overlay:hover {
    transform: scale(1.1);
    background: #f5f3ed;
}

/* Nosotros Section */
.nosotros-section {
    padding: 80px 0;
    background-color: white;
}

.nosotros-content {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.nosotros-text {
    flex: 1;
}

.nosotros-text p {
    margin-bottom: 1.5rem;
    color: #555;
}

.text-left {
    text-align: left;
}

.features-grid {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--primary-dark);
}

.feature-icon {
    font-size: 2rem;
    background: #e8f5e9;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.nosotros-image {
    flex: 1;
}

.nosotros-image img {
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Contact Section */
.contact-section {
    background-color: #e8f5e9;
    padding: 80px 0;
}

.contacto-logo-container {
    display: inline-block;
    /* o inline-flex */
    width: 411.58px;
    /* Ancho exacto de la imagen */
    height: 252.86px;
    /* Alto exacto de la imagen */
    line-height: 0;
    overflow: hidden;
    /* Por si acaso */
}

.contacto-logo {
    width: 100%;
    /* Ocupa todo el contenedor */
    height: 100%;
    object-fit: contain;
    /* Mantiene proporciones */
}

.contact-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #eee;
    border-radius: 8px;
    font-size: 1rem;
    outline: none;
    transition: var(--transition-fast);
    background: transparent;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-group label {
    position: absolute;
    left: 15px;
    top: 14px;
    color: #999;
    pointer-events: none;
    transition: var(--transition-fast);
    background: white;
    padding: 0 5px;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
}

.form-group input:focus~label,
.form-group input:not(:placeholder-shown)~label,
.form-group textarea:focus~label,
.form-group textarea:not(:placeholder-shown)~label {
    top: -10px;
    font-size: 0.85rem;
    color: var(--primary-color);
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    border-bottom: 1px solid #333;
    padding-bottom: 3rem;
}

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: #888;
}

.footer-social {
    display: flex;
    gap: 1.5rem;
}

.footer-social a {
    color: white;
    font-weight: 500;
    transition: var(--transition-fast);
}

.footer-social a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
}



/* Responsive */
@media (max-width: 992px) {
    .participa-container-split {
        flex-direction: column;
    }

    .participa-left,
    .participa-right {
        flex: 1;
        width: 100%;
    }

    .tickets-grid-new {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .nosotros-content {
        flex-direction: column;
    }
}

@media (max-width: 768px) {

    /* Stats Section Mobile */
    .stats-container {
        display: flex;
        /* Flex instead of grid for better control */
        flex-direction: column;
        height: auto;
        padding-bottom: 40px;
    }

    .countdown-side {
        position: relative;
        width: 100%;
        padding: 40px 20px;
        justify-content: center;
    }

    .countdown-grid {
        gap: 15px;
        margin-right: 0;
    }

    .countdown-card {
        width: 100px;
        height: 100px;
        border-radius: 15px;
    }

    .countdown-number {
        font-size: 3rem;
    }

    .countdown-separator {
        font-size: 2rem;
        margin-top: 0;
    }

    .tickets-side {
        position: relative;
        width: 100%;
        top: 0;
        right: 0;
        padding: 20px 20px 60px;
    }

    .tickets-title {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }

    .tickets-display {
        padding: 20px;
        width: 90%;
        min-width: auto;
        margin-right: 0;
        text-align: center;
    }

    .tickets-number {
        font-size: 3.5rem;
    }

    /* Catalogo Mobile */
    .catalogo-header {
        top: 10px;
        width: fit-content;
        padding: 10px 25px;
        font-size: 0.9rem;
    }

    .carousel-item {
        height: 400px;
    }

    /* Participa Section Mobile */
    .participa-container-split {
        flex-direction: column;
    }

    .participa-left {
        padding: 60px 20px;
        align-items: center;
        text-align: center;
    }

    .participa-left-top {
        padding: 40px 20px;
    }

    .participa-left .section-title {
        font-size: 2.5rem;
        text-align: center;
    }

    .participa-description {
        margin: 0 auto 30px;
        text-align: center;
        font-size: 1.1rem;
    }

    .participa-left-bottom {
        padding: 40px 20px;
        width: 100%;
    }

    .cart-header,
    .cart-row {
        justify-content: space-between;
    }

    .total-box {
        margin-right: 0;
        width: 50%;
    }

    .participa-right {
        padding: 60px 20px;
    }

    .tickets-grid-new {
        grid-template-columns: 1fr;
        max-width: 100%;
        gap: 30px;
    }

    /* Contact Section Mobile */
    .contact-container-split {
        flex-direction: column;
        min-height: auto;
    }

    .contact-left,
    .contact-right {
        padding: 60px 25px;
        gap: 30px;
    }

    .contact-logo-container {
        justify-content: center;
    }

    .contact-logo {
        width: 180px;
        /* Resize logo for mobile */
    }

    .contact-description {
        text-align: center;
    }

    .contact-title {
        text-align: center;
        font-size: 2.5rem;
    }

    /* Footer Mobile */
    .footer-container {
        flex-direction: column;
        gap: 20px;
        padding: 0 20px;
    }

    .footer-logos-right {
        gap: 20px;
        justify-content: center;
    }

    .footer-logo-cte {
        height: 60px;
    }

    .footer-logo-fk {
        height: 40px;
    }
}

/* ===== CONTACT SECTION REDESIGN ===== */
.contact-section-new {
    background-color: #f1efeb;
    /* Color beige claro */
    padding: 0;
    min-height: 600px;
}

.contact-container-split {
    display: flex;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 600px;
}

.contact-left {
    flex: 1;
    padding: 30px 40px 60px 60px;
    /* Ajuste de márgenes */
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    /* Centrar logo */
}

.contact-logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    width: 100%;
    margin-top: -50px;
}

.contact-logo {
    width: 250px;
    /* Aumento de tamaño del logo */
    height: auto;
}

.contact-description {
    color: #7a7a7a;
    font-size: 1rem;
    line-height: 1.6;
    text-align: left;
    /* Texto alineado a la izquierda */
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
}

.contact-description p {
    margin-bottom: 20px;
}

.contact-right {
    flex: 1;
    padding: 80px 80px 80px 40px;
    /* Ajuste de márgenes */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-title {
    font-family: 'Cooper Black', 'Caprasimo', serif;
    font-size: 3.5rem;
    color: #7a7a7a;
    margin-bottom: 40px;
}

.contact-form-new {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group-new {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group-new label {
    font-size: 1.1rem;
    color: #9c9c9c;
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
}

.form-group-new input,
.form-group-new textarea {
    padding: 15px 20px;
    border: none;
    background: #8b8c85;
    /* Color gris verdoso/tierra */
    border-radius: 15px;
    /* Bordes más redondeados */
    font-size: 1rem;
    color: white;
    font-family: 'Montserrat', sans-serif;
    width: 100%;
}

.form-group-new input {
    height: 60px;
    /* Altura específica para los inputs */
}

.form-group-new input::placeholder,
.form-group-new textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-group-new textarea {
    resize: none;
    height: 180px;
    /* Altura para el textarea */
}

.btn-enviar {
    font-family: 'Montserrat', sans-serif;
    align-self: flex-end;
    padding: 12px 50px;
    background: #7a7a7a;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 400;
    cursor: pointer;
    transition: transform 0.2s, background 0.2s;
    margin-top: 10px;
}

.btn-enviar:hover {
    background: #6a6a6a;
    transform: translateY(-2px);
}

/* ===== FOOTER REDESIGN ===== */
.footer-new {
    background-color: #2a2a2a;
    padding: 15px 0;
    /* Reduced height */
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-social-icons {
    display: flex;
    gap: 20px;
}

.social-icon {
    color: white;
    transition: transform 0.2s, opacity 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon svg {
    width: 30px;
    /* Smaller icons */
    height: 30px;
}

.social-icon:hover {
    transform: translateY(-3px);
    opacity: 0.8;
}

.footer-logos-right {
    display: flex;
    align-items: center;
    gap: 5px;
    /* Adjusted gap */
}

.footer-logo-cte {
    height: 75px;
    /* Smaller to match reference */
    width: auto;
    filter: brightness(0) invert(1);
    margin-right: 10px;
}

.footer-logo-fk {
    height: 60px;
    /* Smaller to match reference */
    width: auto;
    filter: brightness(0) invert(1);
}

/* Responsive */
@media (max-width: 992px) {
    .contact-container-split {
        flex-direction: column;
    }

    .contact-left,
    .contact-right {
        padding: 60px 40px;
        width: 100%;
    }

    .footer-container {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
}

/* ===== VIDEO SECTION ===== */
.video-section {
    padding: 60px 0;
    background-color: #f9f9f9;
    /* Light background to separate sections */
    text-align: center;
}

.video-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: #000;
    /* Black background while loading or if no video */
}

.video-container video,
.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-placeholder-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 1.2rem;
    z-index: 1;
    pointer-events: none;
}