/* ========================================
   VARIABLES Y RESET
======================================== */
:root {
    --primary-color: #2250fc;
    --secondary-color: #CA0027;
    --dark-bg: #101010;
    --light-bg: #f8f8f8;
    --text-dark: #111;
    --text-light: #fff;
    --text-grey: #666;
    --border-color: rgba(255, 255, 255, 0.5);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', serif;
     font-size: 16px;
    line-height: 1.6;
    color: #000;
    overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6{
    font-family: 'Libre Baskerville', serif;
}
img {
    max-width: 100%;
    height: auto;
}

a {
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-color);
}
@media (max-width: 991px) {
    .main-menu.collapse:not(.show) {
        display: none !important;
    }
}
/* ========================================
   TYPOGRAPHY
======================================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 20px 0;
    color: var(--text-dark);
}

h1 { font-size: 42px; }
h2 { font-size: 30px; }
h3 { font-size: 24px; }
h4 { font-size: 18px; }
h5 { font-size: 14px; }
h6 { font-size: 12px; }

p {
    margin-bottom: 20px;
}

/* ========================================
   HEADER
======================================== */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    border-bottom: 1px solid var(--border-color);
    z-index: 999;
    transition: var(--transition);
}

#header.header-transparent {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

#header.header-sticky {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

#header-wrap {
    padding: 0;
}

#header .row {
    margin: 0;
}

#logo {
    padding: 15px 0;
}

#logo img {
    max-height: 60px;
    width: auto;
    transition: var(--transition);
}

#header.header-sticky #logo img {
    max-height: 50px;
}

/* Main Menu */
.main-menu {
    display: flex  !important;
    justify-content: flex-end;
}

.main-menu .navbar-nav {
    gap: 5px;
    flex-direction: row;
}

.main-menu .nav-link {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 10px 15px;
    color: var(--text-dark);
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.main-menu .nav-link:hover {
    color: var(--primary-color);
}

.main-menu .nav-link i {
    font-size: 16px;
}

/* MADISONALLEY.TV Button */
.main-menu .btn-matv {
    background: linear-gradient(90deg, 
    #00D4FF 0%,    /* Cyan/Turquesa */
    #5B4FFF 25%,   /* Azul/Morado */
    #B24FFF 50%,   /* Morado */
    #FF4FCD 75%,   /* Magenta */
    #FF4F8B 100%   /* Rosa */
);
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.8px;
    transition: var(--transition);
    margin-left: 10px;
}

.main-menu .btn-matv:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(34, 80, 252, 0.3);
}

/* Dropdown Menu */
.main-menu .dropdown {
    position: relative;
}

.main-menu .dropdown-menu {
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 10px;
    min-width: 230px;
    margin-top: 0;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    list-style: none;
}

/* Hover en desktop */
@media (min-width: 992px) {
    .main-menu .dropdown:hover .dropdown-menu {
        display: block;
    }
}

/* Click en móvil usando checkbox hack */
@media (max-width: 991px) {
    .main-menu .dropdown-menu {
        position: static !important;
        box-shadow: none;
        border: none;
        padding-left: 0px !important;
        margin-top: 0;
            transform: translate3d(0px, 0px, 0px) !important;
    }

    /* Checkbox invisible para toggle en móvil */
    .dropdown-toggle-input {
        display: none;
    }

    .dropdown-toggle-input:checked~.dropdown-menu {
        display: block !important;
    }
}

.main-menu .dropdown-item {
    font-size: 12px;
    font-weight: 500;
    padding: 12px 20px;
    color: #444;
    transition: var(--transition);
    border-radius: 3px;
    display: block;
    text-decoration: none;
}

.main-menu .dropdown-item:hover {
    background-color: rgba(34, 80, 252, 0.05);
    color: var(--primary-color);
    padding-left: 25px;
}

.main-menu .dropdown-toggle::after {
    font-family: "Font Awesome 5 Free";
    content: "\f107";
    border: none;
    font-weight: 600;
    font-size: 10px;
    margin-left: 5px;
    vertical-align: middle;
}

/* Mobile Menu Button */
.nav-main-menu-responsive {
    display: none;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}

.lines-button {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lines {
    display: block;
    height: 2px;
    width: 24px;
    background-color: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition);
    position: relative;
}

.lines::before,
.lines::after {
    content: '';
    display: block;
    height: 2px;
    width: 24px;
    background-color: var(--text-dark);
    border-radius: 2px;
    position: absolute;
    left: 0;
    transition: var(--transition);
}

.lines::before {
    top: -7px;
}

.lines::after {
    top: 7px;
}

.lines-button[aria-expanded="true"] .lines {
    background: transparent;
}

.lines-button[aria-expanded="true"] .lines::before {
    transform: rotate(45deg);
    top: 0;
}

.lines-button[aria-expanded="true"] .lines::after {
    transform: rotate(-45deg);
    top: 0;
}

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 991px) {
    #header .col-3 {
        width: 50%;
    }

    #header .col-9 {
        width: 50%;
    }

    .nav-main-menu-responsive {
        display: block;
    }

    .main-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #fff;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        padding: 20px;
    }

    .main-menu .navbar-nav li{
        width: 100%;
        border-bottom: 1px solid #e6e6e6;
    }
        .main-menu .navbar-nav {
            flex-direction: column;
            gap: 0;
            width: 100%;
            margin: 0;
            padding: 0 !important;
            text-align: left;
        }

    .main-menu .nav-link {
        padding: 12px 0;
        border-bottom: 1px solid var(--border-color);
        width: 100%;
        justify-content: flex-start;
    }

    .main-menu .btn-matv {
        margin-left: 0;
        margin-top: 10px;
        text-align: center;
        justify-content: center;
    }

    .main-menu .dropdown-menu {
        position: static;
        box-shadow: none;
        border: none;
        padding-left: 20px;
        margin-top: 0;
    }
}

/* ========================================
   HERO SECTION
======================================== */
.hero {
    height: 100vh; 
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 20%, rgba(0,0,0,0.9) 100%);
    opacity: 0.4;
}

.hero .container {
    position: relative;
    z-index: 2;
}

/* ========================================
   CONTENT SECTIONS
======================================== */
.content {
    padding: 80px 0;
}

.content.no-padding-top {
    padding-top: 0;
}

.content.no-padding-bottom {
    padding-bottom: 0;
}

/* Background Utilities */
.background-dark {
    background-color: var(--dark-bg);
    color: var(--text-light);
}

.background-light {
    background-color: var(--light-bg);
}

.background-white {
    background-color: #fff;
}
/* ========================================
   MODERN FOOTER STYLES
======================================== */
.footer-modern {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    color: #a0a0a0;
}

.footer-main {
    padding: 80px 0 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo-link {
    display: inline-block;
    margin-bottom: 20px;
}

.footer-logo {
    max-width: 200px;
    height: auto;
    transition: var(--transition);
}

.footer-logo:hover {
    opacity: 0.8;
}

.footer-description {
    font-size: 14px;
    line-height: 1.7;
    color: #9a9a9a;
    margin-bottom: 25px;
    max-width: 350px;
}

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

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    font-size: 16px;
    transition: var(--transition);
}

.social-link:hover {
    background: linear-gradient(90deg, 
    #00D4FF 0%,    /* Cyan/Turquesa */
    #5B4FFF 25%,   /* Azul/Morado */
    #B24FFF 50%,   /* Morado */
    #FF4FCD 75%,   /* Magenta */
    #FF4F8B 100%   /* Rosa */
);
    border-color: transparent;
    color: #fff;
    transform: translateY(-3px);
}

.footer-title {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, 
    #00D4FF 0%,    /* Cyan/Turquesa */
    #5B4FFF 25%,   /* Azul/Morado */
    #B24FFF 50%,   /* Morado */
    #FF4FCD 75%,   /* Magenta */
    #FF4F8B 100%   /* Rosa */
);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    font-size: 14px;
    color: #9a9a9a;
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
    position: relative;
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, 
    #00D4FF 0%,    /* Cyan/Turquesa */
    #5B4FFF 25%,   /* Azul/Morado */
    #B24FFF 50%,   /* Morado */
    #FF4FCD 75%,   /* Magenta */
    #FF4F8B 100%   /* Rosa */
);
    transition: var(--transition);
}

.footer-links a:hover {
    color: #fff;
    padding-left: 8px;
}

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

.footer-address {
    font-size: 14px;
    color: #9a9a9a;
    display: block;
    line-height: 1.6;
}

.footer-bottom {
    padding: 25px 0;
    background: rgba(0, 0, 0, 0.3);
}

.copyright-text {
    font-size: 13px;
    color: #7a7a7a;
}

.footer-legal {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 25px;
    justify-content: flex-end;
}

.footer-legal li {
    display: inline-block;
}

.footer-legal a {
    font-size: 13px;
    color: #7a7a7a;
    text-decoration: none;
    transition: var(--transition);
}

.footer-legal a:hover {
    color: #fff;
}

/* Responsive */
@media (max-width: 991px) {
    .footer-main {
        padding: 60px 0 30px;
    }

    .footer-title {
        margin-top: 30px;
    }

    .footer-title:first-of-type {
        margin-top: 0;
    }
}

@media (max-width: 767px) {
    .footer-main {
        padding: 40px 0 20px;
    }

    .footer-description {
        max-width: 100%;
    }

    .footer-legal {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }

    .copyright-text {
        margin-bottom: 15px;
    }
}

/* ========================================
   UTILITIES
======================================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

/* Margins */
.m-0 { margin: 0; }
.m-b-20 { margin-bottom: 20px; }
.m-b-40 { margin-bottom: 40px; }
.m-b-60 { margin-bottom: 60px; }
.m-t-20 { margin-top: 20px; }
.m-t-40 { margin-top: 40px; }
.m-t-60 { margin-top: 60px; }

/* Paddings */
.p-0 { padding: 0; }
.p-20 { padding: 20px; }
.p-40 { padding: 40px; }
.p-60 { padding: 60px; }
.p-t-60 { padding-top: 60px; }
.p-b-60 { padding-bottom: 60px; }

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 991px) {
    #header {
        background-color: #fff;
    }
    
    .nav-main-menu-responsive {
        display: block;
    }
    
    .main-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #fff;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }
    
    .main-menu .navbar-nav {
        flex-direction: column;
        padding: 20px;
    }
    
    .main-menu .nav-link {
        padding: 15px 0;
        border-bottom: 1px solid var(--border-color);
    }
    
    .main-menu .dropdown-menu {
        position: static;
        box-shadow: none;
        border: none;
        padding-left: 20px;
    }
    
    h1 { font-size: 30px; }
    h2 { font-size: 24px; }
    
    .footer-menu {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 767px) {
    .content {
        padding: 40px 0;
    }
    
    h1 { font-size: 28px; }
    h2 { font-size: 22px; }
}


.section-mod {
    padding: 80px 0px
}

.overlay:before {
    content: '';
    position: absolute;
    background: rgba(0, 0, 0, 0.45);
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.overlay {
    position: relative;
}
.overlay .container{
    position: relative;
    z-index: 99;
}
/* MadisonAlley.tv Section */
.matv-section .swiper {
    width: 100%;
    padding: 20px 0 50px;
}

.matv-section .guest-card {
    display: block;
    text-align: center;
    text-decoration: none;
    transition: var(--transition);
}

.matv-section .guest-card img {
    width: 100%;
    height: auto;
    transition: transform 0.4s ease;
}

.matv-section .guest-card:hover img {
    transform: scale(1.1);
}

.matv-section .guest-caption {
    margin-top: 15px;
    text-align: center;
}

.matv-section .guest-caption p {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    transition: var(--transition);
}

.matv-section .guest-card:hover .guest-caption p {
    color: var(--primary-color);
}

/* Swiper Navigation for Guests */
.matv-section .swiper-button-next,
.matv-section .swiper-button-prev {
    width: 50px;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.matv-section .swiper-button-next:after,
.matv-section .swiper-button-prev:after {
    font-size: 20px;
    font-weight: bold;
    color: #333;
}

.matv-section .swiper-button-next:hover,
.matv-section .swiper-button-prev:hover {
    background-color: var(--primary-color);
}

.matv-section .swiper-button-next:hover:after,
.matv-section .swiper-button-prev:hover:after {
    color: #fff;
}

/* Swiper Pagination for Guests */
.matv-section .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #ccc;
    opacity: 1;
}

.matv-section .swiper-pagination-bullet-active {
    background: linear-gradient(90deg, 
    #00D4FF 0%,    /* Cyan/Turquesa */
    #5B4FFF 25%,   /* Azul/Morado */
    #B24FFF 50%,   /* Morado */
    #FF4FCD 75%,   /* Magenta */
    #FF4F8B 100%   /* Rosa */
);
}

.height-100 {
    height: 100vh;
}

.vertical-align {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

p {
    font-size: 16px
}

/* Hero Styles */
.hero.home-hero {
    background-image: url("../images/home-hero-bg.jpg");
    background-size: cover;
    background-position: center;
    min-height: 600px;
}

.hero-content h1 { 
    font-size: 42px;
    line-height: 1.3;
}

/* Video Section */
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Home Gallery */
.home-gallery {
    display: flex;
    gap: 10px;
}

.gallery-left {
    flex: 1;
}

.gallery-right {
    flex: 1;
}

/* Button Gradient */
.btn-gradient {
    background: linear-gradient(90deg, 
    #00D4FF 0%,    /* Cyan/Turquesa */
    #5B4FFF 25%,   /* Azul/Morado */
    #B24FFF 50%,   /* Morado */
    #FF4FCD 75%,   /* Magenta */
    #FF4F8B 100%   /* Rosa */
);
    color: var(--text-light);
    padding: 12px 30px;
    border-radius: 4px;
    display: inline-block;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    transition: var(--transition);
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    color: var(--text-light);
}

/* Insight Section Swiper Styles */
.insight-section .swiper {
    width: 100%;
    padding: 20px 0 50px;
}

.insight-section .swiper-slide {
    height: auto;
}

.insight-card {
    background: #fff;
    padding: 30px;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    min-height: 280px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.insight-card:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.insight-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
    line-height: 1.4;
    flex-grow: 1;
}

.insight-card p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-grey);
}

.insight-meta {
    display: flex;
    gap: 15px;
    font-size: 12px;
    color: var(--text-grey);
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.insight-meta span {
    display: inline-block;
}

.insight-meta .category {
    margin-left: auto;
    background: linear-gradient(90deg, 
    #00D4FF 0%,    /* Cyan/Turquesa */
    #5B4FFF 25%,   /* Azul/Morado */
    #B24FFF 50%,   /* Morado */
    #FF4FCD 75%,   /* Magenta */
    #FF4F8B 100%   /* Rosa */
);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

/* Swiper Navigation Buttons */
.insight-section .swiper-button-next,
.insight-section .swiper-button-prev {
    width: 50px;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.insight-section .swiper-button-next:after,
.insight-section .swiper-button-prev:after {
    font-size: 20px;
    font-weight: bold;
    color: #333;
}

.insight-section .swiper-button-next:hover,
.insight-section .swiper-button-prev:hover {
    background-color: var(--primary-color);
}

.insight-section .swiper-button-next:hover:after,
.insight-section .swiper-button-prev:hover:after {
    color: #fff;
}

/* Swiper Pagination */
.insight-section .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #ccc;
    opacity: 1;
}

.insight-section .swiper-pagination-bullet-active {
    background: linear-gradient(90deg, 
    #00D4FF 0%,    /* Cyan/Turquesa */
    #5B4FFF 25%,   /* Azul/Morado */
    #B24FFF 50%,   /* Morado */
    #FF4FCD 75%,   /* Magenta */
    #FF4F8B 100%   /* Rosa */
);
}

/* Founder/Buyer Section */
.founder-buyer-section .founder-box,
.founder-buyer-section .buyer-box {
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.founder-box {
    background-image: url("../images/bg2.jpg");
}

.buyer-box {
    background-image: url("../images/buyer-bg.jpg");
}

.box-content {
    text-align: center;
    color: var(--text-light);
    z-index: 2;
    position: relative;
    padding: 0px 40px
}

.box-content h2 {
    color: var(--text-light);
    font-size: 36px;
    margin-bottom: 20px;
}

.box-hover-text {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    margin-bottom: 20px;
}

.founder-box:hover .box-hover-text,
.buyer-box:hover .box-hover-text {
    opacity: 1;
    max-height: 200px;
}

/* Guest Cards */
.guest-card {
    text-align: center;
    margin-bottom: 30px;
    overflow: hidden;
}

.guest-card img {
    transition: var(--transition);
}

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

.guest-caption p {
    margin-top: 15px;
    font-weight: 600;
    font-size: 14px;
}

/* Email Link */
.email-link {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    display: inline-block;
    margin-top: 20px;
}

.email-link:hover {
    color: var(--secondary-color);
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.carousel-control-prev i,
.carousel-control-next i {
    font-size: 20px;
    color: var(--text-light);
}
 
.transaction-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}
/* cuando abres la pagina al detalle */
.transaction-logos-detail .transaction-logos ul {justify-content: center !important;}
.transaction-logos-detail .transaction-logos li:nth-child(2){
    width: 10px;
}
.transaction-logos-detail .transaction-logos li{width: 33%;}
.transaction-logos-detail .transaction-logos li img{
    object-fit: contain;height: 150px !important;
}
/* END cuando abres la pagina al detalle */
.transaction-card .transaction-logos img,
 .transaction-item .transaction-logos img{
height: 70px;
    width: auto !important;
    object-fit: contain;
 }

.transaction-logos .plus {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}
/* Margin Bottom Utilities - 0 to 220 */
.m-b-0 {
    margin-bottom: 0px;
}

.m-b-10 {
    margin-bottom: 10px;
}

.m-b-20 {
    margin-bottom: 20px;
}

.m-b-30 {
    margin-bottom: 30px;
}

.m-b-40 {
    margin-bottom: 40px;
}

.m-b-50 {
    margin-bottom: 50px;
}

.m-b-60 {
    margin-bottom: 60px;
}

.m-b-70 {
    margin-bottom: 70px;
}

.m-b-80 {
    margin-bottom: 80px;
}

.m-b-90 {
    margin-bottom: 90px;
}

.m-b-100 {
    margin-bottom: 100px;
}

.m-b-110 {
    margin-bottom: 110px;
}

.m-b-120 {
    margin-bottom: 120px;
}

.m-b-130 {
    margin-bottom: 130px;
}

.m-b-140 {
    margin-bottom: 140px;
}

.m-b-150 {
    margin-bottom: 150px;
}

.m-b-160 {
    margin-bottom: 160px;
}

.m-b-170 {
    margin-bottom: 170px;
}

.m-b-180 {
    margin-bottom: 180px;
}

.m-b-190 {
    margin-bottom: 190px;
}

.m-b-200 {
    margin-bottom: 200px;
}

.m-b-210 {
    margin-bottom: 210px;
}

.m-b-220 {
    margin-bottom: 220px;
}

/* Contact Hero */
.hero.contact-hero {
    background-image: url("../images/contact-wave.png");
    background-size: 100%;
    background-position: bottom;
    background-repeat: no-repeat;
}

.hero.contact-hero h2 {
    color: var(--text-light);
    font-size: 20px;
    font-weight: 400;
    margin-top: 20px;
}

/* Contact Intro */
.contact-intro h2 {
    font-size: 24px;
    color: var(--text-dark);
    font-weight: 400;
}

/* Contact Items */
.contact-item {
    background: #fff;
    padding: 30px 40px;
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.contact-item:hover {
    border-left-color: var(--secondary-color);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-item h2 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.contact-item p {
    margin: 0;
    font-size: 16px;
}

.contact-item a {
    color: var(--primary-color);
    font-weight: 600;
}

.contact-item a:hover {
    color: var(--secondary-color);
}

/* Address Card */
.address-card {
    background: #fff;
    padding: 30px;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.address-card h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.map-wrapper {
    width: 100%;
    height: 450px;
    border-radius: 4px;
    overflow: hidden;
}

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

/* CEO Hero */
.hero.ceo-hero {
    background-image: url("../images/founder-ceo-bg.png");
    background-size: 100%;
    background-position: bottom;
    background-repeat: no-repeat;
}

.hero.ceo-hero h2 {
    color: var(--text-light);
    font-size: 20px;
    font-weight: 400;
    margin-top: 20px;
}

.hero.ceo-hero .color {
    color: #E5780F;
    font-weight: 700;
}

/* Work Section */
.work-section .whitebg {
    background: #fff;
    padding: 40px;
    border-radius: 4px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Distinction Cards */
.distinction-card {
    text-align: center;
    padding: 30px;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.distinction-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.distinction-card img {
    max-width: 150px;
    margin-bottom: 20px;
}

.distinction-card h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.distinction-card p {
    font-size: 14px;
    color: var(--text-grey);
}

/* Transaction Cards */
.transaction-card {
    background: #fff;
    padding: 30px;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: var(--transition);
}

.transaction-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}


.transaction-body h3 {
    font-size: 16px;
    margin-bottom: 15px;
    line-height: 1.4;
}

.transaction-body p {
    font-size: 14px;
    color: var(--text-grey);
    margin-bottom: 20px;
}

.btn-readmore {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary-color);
    letter-spacing: 0.6px;
}

.btn-readmore:hover {
    color: var(--secondary-color);
}

.m-r-20 {
    margin-right: 20px;
}
/* Buyer Hero */
.hero.buyer-hero {
    background-image: url("../images/buyer.png");
}
.transaction-section {
    background: #3E3E54; 
}
.hero.buyer-hero h2 {
    color: var(--text-light);
    font-size: 18px;
    font-weight: 400;
    margin-top: 20px;
    line-height: 1.6;
}






/* ========================================
   MADISON ALLEY TV - VIDEO PAGES STYLES
======================================== */

/* Hero Section */
.matv-hero {
    min-height: 400px;
    display: flex;
    align-items: center;
    position: relative;
}

.matv-hero h1 {
    font-size: 48px;
    color: #fff;
    margin-bottom: 15px;
}

.matv-hero h2 {
    font-weight: 300;
    opacity: 0.95;
}

/* Video Tabs Container */
.video-tabs-container {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

/* Video Tabs Navigation */
.video-nav-tabs {
    border-bottom: 3px solid #f0f0f0;
    background: #fafafa;
    padding: 0;
    margin: 0;
    display: flex;
}

.video-nav-tabs .nav-item {
    flex: 1;
}

.video-nav-tabs .nav-link {
    border: none;
    border-radius: 0;
    padding: 20px 30px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #666;
    background: transparent;
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
    position: relative;
}

.video-nav-tabs .nav-link:hover {
    color: var(--primary-color);
    background: rgba(16, 68, 238, 0.05);
}

.video-nav-tabs .nav-link.active {
    color: #fff;
    background: linear-gradient(90deg, 
    #00D4FF 0%,    /* Cyan/Turquesa */
    #5B4FFF 25%,   /* Azul/Morado */
    #B24FFF 50%,   /* Morado */
    #FF4FCD 75%,   /* Magenta */
    #FF4F8B 100%   /* Rosa */
);
    border-bottom: none;
}

.video-nav-tabs .nav-link i {
    font-size: 18px;
}

/* Video Tab Content */
.video-tab-content {
    padding: 0;
    background: #000;
}

.video-tab-content .tab-pane {
    padding: 0;
}

/* Video Wrapper */
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Insights Content */
.insights-content {
    background: #fff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.insight-header {
    text-align: center;
    padding-bottom: 40px;
    border-bottom: 1px solid #e6e6e6;
}

.matv-logo {
    max-width: 300px;
    margin-bottom: 30px;
}

.fireside-info {
    margin-top: 30px;
}

.fireside-info h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.fireside-info p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 8px;
}

/* Executive Highlights */
.executive-highlights h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.highlight-section {
    margin-bottom: 35px;
}

.highlight-section h4 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.highlight-section ul {
    list-style: none;
    padding-left: 0;
}

.highlight-section ul li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 12px;
    line-height: 1.7;
}

.highlight-section ul li:before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Interview Section */
.interview-section {
    border-top: 1px solid #e6e6e6;
    padding-top: 40px;
}

.interview-title {
    font-size: 22px;
    font-style: italic;
    color: var(--text-grey);
    margin-bottom: 40px;
}

.interview-topic {
    margin-bottom: 40px;
}

.interview-topic h4 {
    font-size: 20px;
    margin-bottom: 20px;
    text-decoration: underline;
    text-decoration-color: var(--secondary-color);
    text-decoration-thickness: 2px;
    text-underline-offset: 5px;
}

.interview-topic p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 15px;
}

/* Q&A Section with Accordion */
.qa-section {
    border-top: 1px solid #e6e6e6;
    padding-top: 40px;
}

.qa-section h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.qa-section .accordion {
    border-radius: 8px;
    overflow: hidden;
}

.qa-section .accordion-item {
    border: 1px solid #e6e6e6;
    margin-bottom: 15px;
    border-radius: 6px !important;
    overflow: hidden;
}

.qa-section .accordion-item:last-child {
    margin-bottom: 0;
}

.qa-section .accordion-button {
    padding: 20px 25px;
    background: #fafafa;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    border: none;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    transition: all 0.3s ease;
}

.qa-section .accordion-button:not(.collapsed) {
    background: linear-gradient(90deg, 
    #00D4FF 0%,    /* Cyan/Turquesa */
    #5B4FFF 25%,   /* Azul/Morado */
    #B24FFF 50%,   /* Morado */
    #FF4FCD 75%,   /* Magenta */
    #FF4F8B 100%   /* Rosa */
);
    color: #fff;
}

.qa-section .accordion-button:hover {
    background: rgba(16, 68, 238, 0.1);
}

.qa-section .accordion-button:not(.collapsed):hover {
    background: linear-gradient(90deg, #0d3ace 0%, #a80020 100%);
}

.qa-section .accordion-button::after {
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-family: "Font Awesome 5 Free";
    content: "\f107";
    font-weight: 900;
    background-image: none;
    width: auto;
    height: auto;
    font-size: 18px;
}

.qa-section .accordion-button:not(.collapsed)::after {
    transform: translateY(-50%) rotate(180deg);
    color: #fff;
}

.qa-question-text {
    font-size: 16px;
    font-style: italic;
    line-height: 1.5;
    padding-right: 40px;
}

.qa-asker {
    font-size: 13px;
    font-weight: 500;
    opacity: 0.8;
    font-style: normal;
}

.qa-section .accordion-body {
    padding: 25px;
    background: #fff;
    font-size: 15px;
    line-height: 1.8;
    color: #333;
    border-top: 1px solid #e6e6e6;
}

.qa-section .accordion-body p {
    margin-bottom: 15px;
}

.qa-section .accordion-body p:last-child {
    margin-bottom: 0;
}

/* Guest Video Cards (Related Videos) */
.guest-video-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    height: 100%;
}

.guest-video-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.guest-image {
    overflow: hidden;
    position: relative;
}

.guest-image img {
    width: 100%;
    transition: transform 0.5s ease;
}

.guest-video-card:hover .guest-image img {
    transform: scale(1.1);
}

.guest-info {
    padding: 25px 20px;
}

.guest-info h3 {
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 20px;
    min-height: 70px;
    color: var(--text-dark);
}

.guest-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-guest {
    display: inline-block;
    padding: 10px 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border-radius: 4px;
    transition: var(--transition);
    text-align: center;
    flex: 1;
    min-width: 100px;
    }
    
    .btn-guest.preview {
        background: #f8f8f8;
        color: var(--text-dark);
        border: 1px solid #e0e0e0;
    }
    
    .btn-guest.preview:hover {
        background: var(--primary-color);
        color: #fff;
        border-color: var(--primary-color);
    }
    
    .btn-guest.watch {
        background: linear-gradient(90deg, 
    #00D4FF 0%,    /* Cyan/Turquesa */
    #5B4FFF 25%,   /* Azul/Morado */
    #B24FFF 50%,   /* Morado */
    #FF4FCD 75%,   /* Magenta */
    #FF4F8B 100%   /* Rosa */
);
        color: #fff;
        border: none;
    }
    
    .btn-guest.watch:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(34, 80, 252, 0.3);
        color: #fff;
    }
    
    .btn-guest.insights {
        background: #fff;
        color: var(--primary-color);
        border: 2px solid var(--primary-color);
    }
    
    .btn-guest.insights:hover {
        background: var(--primary-color);
        color: #fff;
    }
    
    /* Section Title */
    .section-title {
        font-size: 32px;
        font-weight: 700;
        position: relative;
        display: inline-block;
    }
    
    /* Responsive Adjustments */
    @media (max-width: 991px) {
        .matv-hero h1 {
            font-size: 36px;
        }
    
        .matv-hero h2 {
            font-size: 20px;
        }
    
        .insights-content {
            padding: 30px 20px;
        }
    
        .video-nav-tabs .nav-link {
            padding: 15px 20px;
            font-size: 14px;
        }
    
        .guest-info h3 {
            min-height: auto;
        }
    }
    
    @media (max-width: 767px) {
        .matv-hero {
            padding: 100px 0 40px;
            min-height: 300px;
        }
    
        .matv-hero h1 {
            font-size: 28px;
        }
    
        .matv-hero h2 {
            font-size: 18px;
        }
    
        .insights-content {
            padding: 25px 15px;
        }
    
        .video-nav-tabs {
            flex-direction: column;
        }
    
        .video-nav-tabs .nav-link {
            border-bottom: 1px solid #e0e0e0;
        }
    
        .video-nav-tabs .nav-link.active {
            border-bottom: none;
        }
    
        .qa-section .accordion-button {
            padding: 15px 20px;
            font-size: 14px;
        }
    
        .qa-question-text {
            font-size: 14px;
            padding-right: 30px;
        }
    
        .qa-asker {
            font-size: 12px;
        }
    
        .qa-section .accordion-button::after {
            right: 15px;
            font-size: 16px;
        }
    
        .qa-section .accordion-body {
            padding: 20px 15px;
            font-size: 14px;
        }
    
        .btn-guest {
            flex: 1 1 100%;
        }
    }
    
    /* Smooth Transitions */
    .accordion-button,
    .accordion-collapse {
        transition: all 0.3s ease;
    }
 .height-60 {
     height: 60vh;
 }

 .transactions-hero {
     background: #3c3d54 url(assets/images/team-top-bg.jpg) left top repeat-x;
     padding-top: 140px;
     z-index: 1;
 }

 /* Transactions Hero */


 .breadcrumb-nav {
     font-size: 14px;
     margin-bottom: 20px;
     color: #666;
 }

 .breadcrumb-nav a {
     color: var(--primary-color);
     text-decoration: none;
 }

 .breadcrumb-nav span {
     margin: 0 10px;
 }

 /* Filter Section */
 .filter-wrap {
     display: flex;
     align-items: center;
     gap: 20px;
     flex-wrap: wrap;
 }

 .filter-title {
     font-size: 16px;
     font-weight: 700;
     color: var(--text-dark);
 }

 .trans-filter {
     display: flex;
     gap: 15px;
     list-style: none;
     padding: 0;
     margin: 0;
     flex-wrap: wrap;
 }

 .filter-btn {
     padding: 10px 20px;
     background: #fff;
     border: 2px solid #e0e0e0;
     border-radius: 4px;
     font-size: 12px;
     font-weight: 600;
     text-transform: uppercase;
     letter-spacing: 0.5px;
     cursor: pointer;
     transition: var(--transition);
 }

 .filter-btn:hover {
     border-color: var(--primary-color);
     color: var(--primary-color);
 }

 .filter-btn.active {
     background: linear-gradient(90deg,
             #00D4FF 0%,
             /* Cyan/Turquesa */
             #5B4FFF 25%,
             /* Azul/Morado */
             #B24FFF 50%,
             /* Morado */
             #FF4FCD 75%,
             /* Magenta */
             #FF4F8B 100%
             /* Rosa */
         );
     color: #fff;
     border-color: transparent;
 }
 

 /* Transactions Grid - Grid Layout Mejorado */
 .transactions-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 30px;
     width: 100%;
 }

 .transaction-item {
     background: #fff;
     padding: 30px;
     border-radius: 4px;
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
     transition: var(--transition);
     display: flex;
     flex-direction: column;
 }

 .transaction-item.hidden {
     display: none;
 }

 .transaction-item:hover {
     transform: translateY(-5px);
     box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
 }

 .transaction-link {
     text-decoration: none;
     color: inherit;
     display: flex;
     flex-direction: column;
     height: 100%;
 }

 .transaction-logos {
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 15px;
     list-style: none;
     padding: 0;
     margin: 0 0 20px 0;
     min-height: 80px;
 }

 .transaction-logos li {
     display: flex;
     align-items: center;
     justify-content: center;
 }

 /* .transaction-logos li img {
     max-width: 100px;
     max-height: 60px;
     object-fit: contain;
 } */

 .transaction-logos .plus {
     font-size: 24px;
     font-weight: 700;
     color: var(--primary-color);
     margin: 0 10px;
 }

 .transaction-body {
     display: flex;
     flex-direction: column;
     flex-grow: 1;
 }

 .transaction-body h3 {
     font-size: 16px;
     margin-bottom: 15px;
     line-height: 1.4;
     color: var(--text-dark);
     min-height: 70px;
     flex-grow: 1;
 }

 .transaction-body p {
     font-size: 14px;
     color: var(--text-grey);
     margin-bottom: 15px;
     line-height: 1.6;
 }

 .transaction-meta {
     display: flex;
     flex-direction: column;
     gap: 8px;
     font-size: 14px;
     color: var(--text-grey);
     padding-top: 15px;
     border-top: 1px solid #e6e6e6;
     margin-top: auto;
 }

 .transaction-meta span {
     display: block;
 }
.transaction-logos-detail .transaction-logos li img{
width: 100%;
    max-width: 100% !important;
    height: auto;
    max-height: none;
}
 .transaction-meta strong {
     color: var(--text-dark);
 }

 /* Responsive */
 @media (max-width: 991px) {
     .transactions-grid {
         grid-template-columns: repeat(2, 1fr);
         gap: 20px;
     }
 }

 @media (max-width: 767px) {
     .transactions-grid {
         grid-template-columns: 1fr;
     }

     .transaction-body h3 {
         min-height: auto;
     }
 }

 .btn-readmore {
     display: inline-block;
     font-size: 12px;
     font-weight: 700;
     text-transform: uppercase;
     color: var(--primary-color);
     letter-spacing: 0.6px;
     transition: var(--transition);
 }

 .btn-readmore:hover {
     color: var(--secondary-color);
 }

    /* Margin Bottom Utilities - 0 to 220 (incrementos de 10) */
.mb-0 { margin-bottom: 0px; }
.mb-10 { margin-bottom: 10px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.mb-40 { margin-bottom: 40px; }
.mb-50 { margin-bottom: 50px; }
.mb-60 { margin-bottom: 60px; }
.mb-70 { margin-bottom: 70px; }
.mb-80 { margin-bottom: 80px; }
.mb-90 { margin-bottom: 90px; }
.mb-100 { margin-bottom: 100px; }
.mb-110 { margin-bottom: 110px; }
.mb-120 { margin-bottom: 120px; }
.mb-130 { margin-bottom: 130px; }
.mb-140 { margin-bottom: 140px; }
.mb-150 { margin-bottom: 150px; }
.mb-160 { margin-bottom: 160px; }
.mb-170 { margin-bottom: 170px; }
.mb-180 { margin-bottom: 180px; }
.mb-190 { margin-bottom: 190px; }
.mb-200 { margin-bottom: 200px; }
.mb-210 { margin-bottom: 210px; }
.mb-220 { margin-bottom: 220px; }


/* Agrega esto en public/assets/css/style.css */

/* Cookie Consent Banner */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    padding: 20px;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-consent.show {
    transform: translateY(0);
}

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

.cookie-consent-content {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.cookie-icon {
    font-size: 40px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.cookie-text h4 {
    font-size: 18px;
    margin: 0 0 8px 0;
    color: var(--text-dark);
}

.cookie-text p {
    font-size: 14px;
    margin: 0;
    color: var(--text-grey);
    line-height: 1.5;
}

.cookie-consent-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.cookie-btn-primary {
    background: linear-gradient(90deg, #00D4FF 0%, #5B4FFF 25%, #B24FFF 50%, #FF4FCD 75%, #FF4F8B 100%);
    color: #fff;
}

.cookie-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(34, 80, 252, 0.3);
}

.cookie-btn-outline {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid #e0e0e0;
}

.cookie-btn-outline:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.cookie-btn-secondary {
    background: #f5f5f5;
    color: var(--text-dark);
}

.cookie-btn-secondary:hover {
    background: #e8e8e8;
}

/* Cookie Modal */
.cookie-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10001;
}

.cookie-modal.show {
    display: block;
}

.cookie-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.cookie-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    border-radius: 12px;
    max-width: 600px;
    width: 90%;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.cookie-modal-header {
    padding: 24px;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-modal-header h3 {
    margin: 0;
    font-size: 22px;
    color: var(--text-dark);
}

.cookie-modal-close {
    background: none;
    border: none;
    font-size: 32px;
    color: var(--text-grey);
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.cookie-modal-close:hover {
    color: var(--text-dark);
}

.cookie-modal-body {
    padding: 24px;
    overflow-y: auto;
}

.cookie-modal-intro {
    font-size: 14px;
    color: var(--text-grey);
    margin-bottom: 24px;
}

.cookie-category {
    margin-bottom: 24px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.cookie-category-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cookie-category-info h4 {
    margin: 0;
    font-size: 16px;
    color: var(--text-dark);
}

.cookie-badge {
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.cookie-badge.required {
    background: #e3f2fd;
    color: #1976d2;
}

.cookie-badge.optional {
    background: #f3e5f5;
    color: #7b1fa2;
}

.cookie-category-desc {
    font-size: 13px;
    color: var(--text-grey);
    margin: 0;
    line-height: 1.5;
}

.cookie-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
    cursor: pointer;
}

.cookie-switch.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.cookie-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-slider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.3s;
    border-radius: 26px;
}

.cookie-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

.cookie-switch input:checked+.cookie-slider {
    background: linear-gradient(90deg, #00D4FF 0%, #5B4FFF 50%, #B24FFF 100%);
}

.cookie-switch input:checked+.cookie-slider:before {
    transform: translateX(24px);
}

.cookie-modal-links {
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid #e0e0e0;
    display: flex;
    gap: 20px;
}

.cookie-modal-links a {
    font-size: 13px;
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.cookie-modal-links a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.cookie-modal-footer {
    padding: 20px 24px;
    border-top: 1px solid #e0e0e0;
    text-align: right;
}

/* Responsive */
@media (max-width: 991px) {
    .cookie-consent-container {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-consent-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-consent-actions {
        justify-content: center;
        flex-wrap: wrap;
    }

    .cookie-btn {
        flex: 1;
        min-width: 120px;
    }
}

@media (max-width: 767px) {
    .cookie-consent {
        padding: 16px;
    }

    .cookie-text h4 {
        font-size: 16px;
    }

    .cookie-text p {
        font-size: 13px;
    }

    .cookie-btn {
        padding: 10px 16px;
        font-size: 13px;
    }

    .cookie-modal-content {
        width: 95%;
        max-height: 90vh;
    }

    .cookie-modal-header,
    .cookie-modal-body,
    .cookie-modal-footer {
        padding: 16px;
    }
}

.hero.news-hero {
    background-color: #3c3d54;
    padding: 150px 0;
}

.hero.news-hero h2 {
    font-size: 20px;
    font-weight: 400;
    margin-top: 20px;
    line-height: 1.6;
}

.news-icon-wrap {
    text-align: center;
    margin-top: 40px;
}

.news-icon-img {
    max-width: 150px;
}

/* Filter Section */
.news-filter-section {
    padding: 30px 0;
}

.filter-wrap {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.filter-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
}

.news-filter {
    display: flex;
    gap: 15px;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}

.news-filter .filter-btn {
    padding: 10px 20px;
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition);
}

.news-filter .filter-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.news-filter .filter-btn.active {
    background: linear-gradient(90deg, #00D4FF 0%, #5B4FFF 25%, #B24FFF 50%, #FF4FCD 75%, #FF4F8B 100%);
    color: #fff;
    border-color: transparent;
}

/* News Grid */
.news-grid-section {
    padding: 50px 0;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
    /* Esto hace que todas tengan la misma altura */
}

.news-item {
    display: flex;
    /* Añade esto */
    transition: var(--transition);
}

.news-card {
    background: #fff;
    padding: 30px;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    width: 100%;
    /* Añade esto */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* Esto separa el contenido del READ MORE */
    transition: var(--transition);
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.news-category {
    margin-bottom: 10px;
}

.news-category span {
    display: inline-block;
    padding: 5px 15px;
    background: linear-gradient(90deg, #00D4FF 0%, #5B4FFF 25%, #B24FFF 50%, #FF4FCD 75%, #FF4F8B 100%);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 3px;
}

.news-category span:empty {
    display: none;
}

.news-date {
    font-size: 13px;
    color: var(--text-grey);
    margin-bottom: 15px;
}

.news-card h3 {
    font-size: 18px;
    line-height: 1.4;
    color: var(--text-dark);
    margin: 0 0 20px 0;
    flex-grow: 1;
    /* El título ocupa el espacio disponible */
}

/* Responsive */
@media (max-width: 991px) {
    .hero.news-hero {
        padding: 100px 0;
    }

    .news-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 767px) {
    .hero.news-hero {
        padding: 80px 0;
    }

    .hero.news-hero h1 {
        font-size: 32px;
    }

    .hero.news-hero h2 {
        font-size: 18px;
    }

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

    .news-card {
        padding: 25px;
    }

    .news-card h3 {
        font-size: 16px;
    }
}

/* Video Locked Overlay */
.video-locked {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(16, 68, 238, 0.95) 0%, rgba(202, 0, 39, 0.95) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.video-locked-content {
    text-align: center;
    color: #fff;
    padding: 40px;
}

.video-locked-content i {
    font-size: 64px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.video-locked-content h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #fff;
}

.video-locked-content p {
    font-size: 16px;
    margin-bottom: 25px;
    opacity: 0.9;
}

/* Modal Styles */
.video-subscribe-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.video-subscribe-modal.show {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translate(-50%, -40%);
        opacity: 0;
    }

    to {
        transform: translate(-50%, -50%);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    color: #999;
    cursor: pointer;
    z-index: 10;
    transition: color 0.3s ease;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    color: #333;
}

.modal-header {
    text-align: center;
    padding: 40px 30px 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px 12px 0 0;
}

.modal-icon {
    font-size: 48px;
    background: linear-gradient(90deg, #00D4FF 0%, #5B4FFF 50%, #B24FFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.modal-header h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #333;
}

.modal-header p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

#subscribeForm {
    padding: 30px;
}

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

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-control.error {
    border-color: #dc3545;
}

.error-message {
    display: block;
    color: #dc3545;
    font-size: 12px;
    margin-top: 5px;
}

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

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 3px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-text {
    font-size: 13px;
    line-height: 1.5;
    color: #666;
}

.checkbox-text a {
    color: var(--primary-color);
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    padding: 14px;
    background: linear-gradient(90deg, #00D4FF 0%, #5B4FFF 50%, #B24FFF 100%);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(34, 80, 252, 0.3);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.form-message {
    margin-top: 15px;
    padding: 12px;
    border-radius: 6px;
    font-size: 14px;
    text-align: center;
    display: none;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Responsive */
@media (max-width: 767px) {
    .modal-content {
        width: 95%;
        max-height: 95vh;
    }

    .modal-header {
        padding: 30px 20px 20px;
    }

    .modal-header h3 {
        font-size: 20px;
    }

    #subscribeForm {
        padding: 20px;
    }

    .video-locked-content {
        padding: 20px;
    }

    .video-locked-content i {
        font-size: 48px;
    }

    .video-locked-content h3 {
        font-size: 22px;
    }
}