/* ==========================================
   CSS Variables & Reset
   ========================================== */
:root {
    --primary-blue: #3D61A3;
    --secondary-blue: #2A446C;
    --light-blue: #5DA8DC;
    --lighter-blue: #DFEEF8;
    --accent-red: #EC1C24;
    --accent-red-hover: #f04950;
    --white: #FFFFFF;
    --text-dark: #333333;
    --text-gray: #434445;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-text);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.ahc-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: content-box;
}

.ahc-text-center {
    text-align: center;
}

.ahc-text-left {
    text-align: left;
}

.ahc-mt-3 {
    margin-top: 30px;
}

/* ==========================================
   Buttons
   ========================================== */
.ahc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
    border-radius: 32px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.ahc-btn-sm {
    padding: 10px 23px;
    font-size: 12px;
}

.ahc-btn-primary {
    background-color: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
}

.ahc-btn-primary:hover {
    background-color: var(--secondary-blue);
    border-color: var(--secondary-blue);
}

.ahc-btn-danger {
    background-color: var(--accent-red);
    color: var(--white);
    border-color: var(--accent-red);
}

.ahc-btn-danger:hover {
    background-color: var(--accent-red-hover);
    border-color: var(--accent-red-hover);
}

.ahc-btn-outline {
    background-color: transparent;
    color: var(--primary-blue);
    border-color: var(--primary-blue);
}

.ahc-btn-outline:hover {
    background-color: var(--primary-blue);
    color: var(--white);
}

.ahc-btn-outline-white {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

.ahc-btn-outline-white:hover {
    border-color: #6481b5;
}

.ahc-btn-round {
    border-radius: 50px;
}

.ahc-btn-block {
    display: flex;
    width: 100%;
}

/* ==========================================
   Header
   ========================================== */
.ahc-main-header {
    background-color: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.ahc-header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 121px;
}

.ahc-logo img {
    height: 57px;
}

.ahc-main-nav {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    margin-right: 16px;
}

.ahc-nav-links {
    display: flex;
    gap: 16px;
}

.ahc-nav-links a {
    position: relative;
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 16px;
    line-height: 22px;
    letter-spacing: -0.02em;
    color: #000;
    font-weight: 400;
    text-decoration: none;
    transition: color 0.2s ease;
}

/* Reserva el ancho del texto en bold sin mostrarlo */
.ahc-nav-links a::before {
    content: attr(data-label);
    display: block;
    height: 0;
    overflow: hidden;
    visibility: hidden;
    font-weight: 600;
}

.ahc-nav-links a:hover,
.ahc-nav-links a.ahc-active {
    color: var(--accent-red);
    font-weight: 600;
}

.ahc-mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.ahc-mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--primary-blue);
    transition: 0.3s;
}

.ahc-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1004;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

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

.ahc-mobile-nav-footer {
    display: none;
}

/* ==========================================
   Hero Section
   ========================================== */
.ahc-hero {
    position: relative;
    padding: 60px 0 0;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.ahc-hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    background-image: url('../assets/img/hero-bg.png');
    padding: 66px 109px;
    box-sizing: border-box;
    border-radius: 32px;
    background-size: cover;
}

.ahc-hero-content {
    color: var(--white);
    max-width: 550px;
}

.ahc-hero-logo {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.ahc-hero-logo img {
    position: relative;
    margin-bottom: -180px;
    margin-left: -40px;
    max-width: 504px;
    z-index: -1;
}

.ahc-hero-logo h1 {
    font-size: 28px;
    letter-spacing: 1px;
}

.ahc-hero-subtitle {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.ahc-hero-details {
    margin-bottom: 30px;
}

.ahc-hero-details p {
    font-weight: 700;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.ahc-hero-details .ahc-icon {
    width: 24px;
}

.ahc-hero-actions {
    display: flex;
    gap: 15px;
}

.ahc-hero-image {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 3;
}

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

/* ==========================================
   Intro Section
   ========================================== */
.ahc-intro {
    position: relative;
    margin-top: -32px;
}

.ahc-intro .ahc-container {
    background-color: #DFEEF880;
    background-image: url('../assets/img/banner-cardiologia-region.png');
    background-position: center 124px;
    background-repeat: no-repeat;
    padding: 60px 80px;
    box-sizing: border-box;
    border-radius: 0 0 32px 32px;
}

.ahc-intro-icon {
    display: flex;
    justify-content: center;
}

.ahc-intro-icon img {
    width: 70px;
}

.ahc-intro .ahc-section-title {
    color: var(--primary-blue);
    margin-bottom: 20px;
    font-weight: 700;
    font-size: 40px;
    line-height: 45px;
    letter-spacing: -0.02em;
    text-align: center;
}

.ahc-intro-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 22px;
    line-height: 32px;
    letter-spacing: -0.02em;
    text-align: center;
    color: var(--primary-blue);
}

/* ==========================================
   About Section
   ========================================== */
.ahc-about {
    padding: 75px 0;
    margin-top: 75px;
}

.ahc-about-container {
    display: flex;
    align-items: center;
    gap: 50px;
    padding: 0 74px;
    box-sizing: border-box;
}

.ahc-about-video {
    flex: 1;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    max-width: 548px;
}

.ahc-about-video .ahc-video-img {
    width: 100%;
    border-radius: 10px;
}

.ahc-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    z-index: 2;
    transition: transform 0.2s ease-in-out;
}

.ahc-video-thumbnail:hover .ahc-play-btn {
    transform: translate(-50%, -50%) scale(1.1);
}

.ahc-play-btn svg {
    width: 64px;
    height: 64px;
    fill: var(--primary-blue);
}

.ahc-video-quote {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: -0.02em;
    color: var(--primary-blue);
    margin-top: 20px;
}

.ahc-about-content {
    flex: 1;
    max-width: 561px;
}

.ahc-about-content h2 {
    color: var(--accent-red);
    margin-bottom: 14px;
    font-weight: 700;
    font-size: 32px;
    line-height: 36px;
    letter-spacing: -0.05em;
}

.ahc-about-content p {
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 22px;
    letter-spacing: -0.02em;
}

.ahc-about-actions {
    display: flex;
    gap: 15px;
    margin-top: 26px;
}

/* Video Modal para la sección AHC */
.ahc-video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.ahc-video-modal.is-active {
    display: flex;
}

.ahc-video-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
}

.ahc-video-modal-content {
    position: relative;
    width: 90%;
    max-width: 800px;
    z-index: 10000;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
}

.ahc-video-modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    color: #fff;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
    z-index: 10001;
}

.ahc-video-responsive {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
}

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

/* ==========================================
   Why Attend Section
   ========================================== */

.ahc-why-attend {
    width: 100%;
    background-color: var(--white);
    padding: 40px 0 104px;
}

.ahc-why-attend-header {
    max-width: 1069px;
    margin: 0px auto 46px;
    text-align: center;
}

.ahc-why-attend-header h2 {
    margin: 0 0 18px;
    color: var(--primary-blue);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 40px;
    line-height: 45px;
    letter-spacing: -0.02em;
}

.ahc-why-attend-header p {
    margin: 0;
    color: #434445;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 26px;
    letter-spacing: -0.02em;
}

.ahc-why-attend-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.ahc-why-attend-card {
    width: 302px;
    min-height: 112px;
    padding: 18px 20px;
    background-color: #ffffff;
    border: 1px solid var(--accent-red);
    border-radius: 12px;
    box-shadow: 0 8px 14px rgba(61, 97, 163, 0.25);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ahc-why-attend-card strong {
    display: block;
    margin-bottom: 8px;
    color: var(--primary-blue);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 36px;
    line-height: 40px;
    letter-spacing: -0.02em;
}

.ahc-why-attend-card span {
    display: block;
    color: #434445;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: -0.02em;
}

.ahc-why-attend-card p {
    margin: 0;
    color: var(--primary-blue);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.02em;
}

.ahc-why-attend-card--text {
    justify-content: center;
}

.ahc-why-attend-card--large {
    min-height: 159px;
    padding: 22px 20px;
    justify-content: flex-start;
}

/* Responsive */
@media (max-width: 1024px) {
    .ahc-why-attend .ahc-container {
        max-width: 760px;
    }

    .ahc-why-attend-card {
        width: calc(50% - 10px);
    }
}

@media (max-width: 768px) {
    .ahc-why-attend {
        padding: 44px 0;
    }

    .ahc-why-attend-header {
        margin-bottom: 32px;
    }

    .ahc-why-attend-header h2 {
        font-size: 30px;
        line-height: 36px;
    }

    .ahc-why-attend-header p {
        font-size: 15px;
        line-height: 23px;
    }

    .ahc-why-attend-card {
        width: 100%;
        max-width: 420px;
    }
}

@media (max-width: 480px) {
    .ahc-why-attend .ahc-container {
        padding: 0 20px;
    }

    .ahc-why-attend-header h2 {
        font-size: 28px;
        line-height: 34px;
    }

    .ahc-why-attend-card {
        min-height: 108px;
        padding: 18px;
    }

    .ahc-why-attend-card--large {
        min-height: auto;
    }

    .ahc-why-attend-card strong {
        font-size: 34px;
        line-height: 38px;
    }

    .ahc-why-attend-card p,
    .ahc-why-attend-card span {
        font-size: 15px;
        line-height: 22px;
    }
}


/* ==========================================
   Speakers Section
   ========================================== */
.ahc-speakers {
    color: var(--white);
}

.ahc-speakers .ahc-container {
    background-color: #253A62;
    padding: 46px 30px;
    border-radius: 32px 32px 0 0;
    box-sizing: border-box;
}

.ahc-speakers-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 56px;
    gap: 30px;
}

.ahc-speakers-header-text {
    max-width: 900px;
}

.ahc-speakers-pretitle {
    font-size: 20px;
    line-height: 28px;
    letter-spacing: -0.02em;
    font-family: 'Montserrat', sans-serif;
    color: #F04950;
    margin-bottom: 10px;
}

.ahc-speakers-header .ahc-section-title {
    color: #9ECBEA;
    font-weight: 700;
    font-size: 40px;
    line-height: 45px;
    letter-spacing: -0.02em;
    margin-bottom: 10px;
}

.ahc-btn-all-speakers {
    background-color: var(--accent-red);
    border-color: var(--accent-red);
}

.ahc-btn-all-speakers:hover {
    background-color: var(--accent-red-hover);
    border-color: var(--accent-red-hover);
}

/* ==========================================
   Speaker Card - Figma Style
   ========================================== */
.ahc-speakers-slider {
    padding-top: 12px;
    padding-bottom: 50px;
}

.ahc-speakers-slider .swiper-wrapper {
    align-items: stretch;
}

.ahc-speakers-slider .swiper-slide {
    height: auto;
}

.ahc-speaker-card {
    background-color: #3D61A3;
    border: 1px solid #5DA8DC;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.ahc-speaker-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
    border-color: #7CC8E8;
    text-decoration: none;
}

.ahc-speaker-img-wrapper {
    position: relative;
    width: 100%;
    height: 192px;
    flex-shrink: 0;
    overflow: visible;
}

.ahc-speaker-img-wrapper img:not(.ahc-speaker-badge) {
    width: 100%;
    height: 192px;
    object-fit: cover;
    object-position: center top;
    border-radius: 10px 10px 0 0;
}

.ahc-speaker-badge {
    position: absolute;
    right: 14px;
    bottom: -22px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid #5DA8DC;
    background-color: #ffffff;
    z-index: 3;
    object-fit: cover;
}

.ahc-speaker-info {
    padding: 27px 11px 18px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.ahc-speaker-info h3 {
    margin: 0 0 16px;
    color: #ffffff;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 20px;
    line-height: 32px;
    letter-spacing: -0.02em;
    min-height: 64px;
}

.ahc-speaker-role {
    margin: 0 0 24px;
    color: #7CC8E8;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: -0.02em;
    min-height: 44px;
}

.ahc-speaker-desc,
.ahc-speaker-social {
    display: none;
}

.ahc-speaker-button {
    margin-top: auto;
    width: 100%;
}

.ahc-speaker-button button,
.ahc-speaker-button span {
    width: 100%;
    min-height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #EC1C24;
    color: #ffffff;
    border: 1px solid #EC1C24;
    border-radius: 999px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 20px;
    line-height: 18px;
    padding: 18px 15px;
    letter-spacing: -0.02em;
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.ahc-speaker-card:hover .ahc-speaker-button span,
.ahc-speaker-card:hover .ahc-speaker-button a,
.ahc-speaker-card:hover .ahc-speaker-button button {
    background-color: #f04950;
    border-color: #f04950;
    transform: translateY(-1px);
}

.ahc-speakers-slider {
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 50px;
}

.swiper-pagination-bullet {
    background-color: #FFFFFF;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 1px solid #5DA8DC;
}

.swiper-pagination-bullet-active {
    background-color: #5DA8DC;
    width: 29px;
    border-radius: 4px;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--white);
    background: rgba(0, 0, 0, 0.3);
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 18px;
}

/* ==========================================
   Agenda Section
   ========================================== */
.ahc-agenda {
    position: relative;
    background-color: var(--white);
}

.ahc-agenda-bg-split {
    top: 0;
    left: 0;
    width: 35%;
    height: 100%;
    background-color: var(--accent-red);
    z-index: 1;
}

.ahc-agenda-container {
    position: relative;
    z-index: 2;
    box-sizing: border-box;
    background-color: var(--accent-red);
    padding: 46px 30px;
    border-radius: 0 0 32px 32px;
    background-image: url('/assets/img/agenda-cientifica-left-img.png');
    background-repeat: no-repeat;
    background-position: bottom left;
}

.ahc-agenda-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
}

.ahc-agenda-header-text {
    max-width: 840px;
}

.ahc-agenda-header .ahc-section-title {
    color: #5DA8DC;
    margin-bottom: 10px;
    font-size: 40px;
}

.ahc-agenda-header p {
    color: var(--white);
    font-size: 20px;
    line-height: 28px;
}

.ahc-agenda-content {
    display: flex;
}

.ahc-agenda-sidebar {
    width: 50%;
}

.ahc-agenda-sidebar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ahc-agenda-main {
    width: 55%;
    padding-left: 60px;
}

.ahc-agenda-date-picker {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: -2%;
    color: #9ECBEA;
    margin-bottom: 25px;
}

.ahc-agenda-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ahc-agenda-item {
    display: flex;
    align-items: center;
    background-color: var(--white);
    border-radius: 8px;
    padding: 15px;
    gap: 20px;
    border: 1px solid transparent;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.ahc-agenda-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14);
    border-color: var(--primary-blue);
    text-decoration: none;
}

.ahc-agenda-item-img {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    object-fit: cover;
}

.ahc-agenda-item-info {
    flex: 1;
}

.ahc-agenda-item-info h3 {
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: -0.02em;
    margin-bottom: 10px;
}

.ahc-agenda-time {
    color: #5DA8DC;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.ahc-agenda-desc {
    color: var(--text-gray);
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: -0.02em;
}

.ahc-agenda-item:hover h3,
.ahc-agenda-item:hover p {
    text-decoration: none;
}

.ahc-agenda-arrow {
    background: none;
    border: none;
    color: var(--primary-blue);
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.ahc-agenda-item:hover .ahc-agenda-arrow {
    transform: translateX(4px);
}

/* ==========================================
   Pricing Section
   ========================================== */
.ahc-pricing {
    padding: 80px 0;
}

.ahc-pricing-header {
    margin-bottom: 50px;
    text-align: left;
}

.ahc-pricing-header .ahc-section-title {
    color: #3D61A3;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: left;
}

.ahc-pricing-subtitle-wrapper {
    text-align: left;
}

.ahc-pricing-subtitle {
    color: var(--text-gray);
    font-size: 20px;
    padding-bottom: 4px;
    display: inline-block;
}

.ahc-pricing-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.ahc-pricing-card {
    flex: 1 1 calc(25% - 20px);
    background-color: var(--white);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: left;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    border: 1px solid #E2E8F0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ahc-pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.ahc-pricing-card.ahc-card-red {
    border: 1.5px solid var(--accent-red);
}

.ahc-pricing-card.ahc-card-blue {
    border: 1.5px solid var(--primary-blue);
}

.ahc-pricing-card h3 {
    color: #182741;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.3;
    text-align: left;
    min-height: 52px;
    display: flex;
    align-items: flex-start;
}

.ahc-pricing-table {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 10px;
    text-align: left;
    margin-bottom: 25px;
}

.ahc-pricing-col {
    display: flex;
    flex-direction: column;
}

.ahc-price-label {
    font-size: 16px;
    color: var(--accent-red);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 4px;
    min-height: 39px;
}

.ahc-price-value {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1.1;
}

.ahc-pricing-includes {
    text-align: left;
    font-size: 16px;
    font-weight: 800;
    color: #8C1318;
    margin: 15px 0 12px;
}

.ahc-pricing-features {
    text-align: left;
    margin-bottom: 30px;
    flex: 1;
}

.ahc-pricing-features li {
    font-size: 16px;
    color: #386584;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.4;
}

.ahc-pricing-features li img {
    width: 24px;
    margin-top: 2px;
    flex-shrink: 0;
}

/* ==========================================
   Sponsors Section
   ========================================== */
.ahc-sponsors {
    padding: 80px 0;
    background-color: var(--white);
}

.ahc-sponsors-header {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: left;
    margin-bottom: 50px;
}

.ahc-sponsors-header h2 {
    color: #EC1C24;
    font-size: 40px;
    line-height: 45px;
    font-weight: 700;
}

.ahc-sponsors-header p {
    font-size: 20px;
    line-height: 28px;
    color: #434445;
    max-width: 690px;
}

.ahc-sponsors-header .ahc-btn {
    width: fit-content;
}

.ahc-sponsors-logos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.ahc-sponsors-logos img {
    height: 90px;
    object-fit: contain;
    opacity: 0.7;
    transition: 0.3s;
}

.ahc-sponsors-logos img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* ==========================================
   Tourism Section
   ========================================== */
.ahc-tourism {
    padding: 80px 0;
    background-color: #DFEEF8;
    background-image: url('../assets/img/honduras-seccion-background.png');
    background-size: contain;
    background-position: center 352px;
    background-repeat: no-repeat;
}

.ahc-tourism-actions {
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.ahc-tourism-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.ahc-tourism h2 {
    font-size: 40px;
    line-height: 45px;
    color: #3D61A3;

}

.ahc-tourism .ahc-tourism-desc {
    font-size: 20px;
    line-height: 28px;
    color: #000000;
    text-align: center;
    font-weight: 800;
    margin: 24px 0;
}

.ahc-tourism-card {
    flex: 1 1 calc(25% - 20px);
    background-color: var(--white);
    padding: 24px;
    border-radius: 16px;
    border: 1px solid #c9d8e7;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.ahc-tourism-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16);
    border-color: #4B6EAA;
    text-decoration: none;
}

.ahc-tourism-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 15px;
}

.ahc-tourism-info {
    padding: 0 10px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.ahc-tourism-info h3 {
    color: #4B6EAA;
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 20px;
    min-height: 48px;
}

.ahc-tourism-loc {
    color: var(--accent-red);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 10px;
}

.ahc-tourism-text {
    font-size: 13px;
    color: var(--text-gray);
    margin-bottom: 20px;
    min-height: 60px;
}

.ahc-tourism-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.ahc-tourism-pagination span {
    width: 30px;
    height: 4px;
    background-color: #CBD5E1;
    border-radius: 2px;
}

.ahc-tourism-pagination span.ahc-active {
    background-color: var(--primary-blue);
}

.ahc-tourism-card .ahc-btn {
    margin-top: auto;
    background-color: #4B6EAA;
    border-color: #4B6EAA;
    color: #ffffff;
    width: 100%;
    text-decoration: none;
    cursor: pointer;
    transition:
        background-color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}

.ahc-tourism-card:hover .ahc-btn {
    background-color: #3D61A3;
    border-color: #3D61A3;
    transform: translateY(-1px);
}

/* ==========================================
   Organizers Section
   ========================================== */
.ahc-organizers {
    padding: 60px 0;
    background-color: var(--white);
}

.ahc-organizers h2 {
    font-size: 40px;
    line-height: 45px;
    color: #3D61A3;
}

/* ==========================================
   Regional CTA Section
   ========================================== */

.ahc-regional-cta {
    width: 100%;
    background-color: #3D61A3;
    border-radius: 24px 24px 0 0;
    padding: 70px 32px 90px;
    margin-bottom: -40px;
}

.ahc-regional-cta__box {
    text-align: center;
    color: #ffffff;
}

.ahc-regional-cta__box h2 {
    margin: 0 0 16px;
    color: #ffffff;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 36px;
    line-height: 42px;
    letter-spacing: -0.02em;
}

.ahc-regional-cta__box p {
    max-width: 810px;
    margin: 0 auto;
    color: #ffffff;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: -0.02em;
}

.ahc-regional-cta__actions {
    margin-top: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.ahc-regional-cta__btn {
    min-width: 123px;
    min-height: 42px;
    padding: 10px 22px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    line-height: 18px;
    letter-spacing: -0.02em;
    transition: all 0.3s ease;
}

.ahc-regional-cta__btn--primary {
    background-color: #EC1C24;
    color: #ffffff;
    border: 1.5px solid #EC1C24;
}

.ahc-regional-cta__btn--primary:hover {
    background-color: #f04950;
    border-color: #f04950;
    transform: translateY(-1px);
}

.ahc-regional-cta__btn--outline {
    background-color: transparent;
    color: #ffffff;
    border: 1.5px solid #ffffff;
}

.ahc-regional-cta__btn--outline:hover {
    background-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 768px) {
    .ahc-regional-cta__box {
        padding: 42px 24px 34px;
        border-radius: 22px 22px 0 0;
    }

    .ahc-regional-cta__box h2 {
        font-size: 30px;
        line-height: 36px;
    }

    .ahc-regional-cta__box p {
        font-size: 14px;
        line-height: 21px;
    }
}

@media (max-width: 480px) {
    .ahc-regional-cta {
        padding-top: 28px;
    }

    .ahc-regional-cta__box {
        padding: 36px 20px 32px;
    }

    .ahc-regional-cta__box h2 {
        font-size: 28px;
        line-height: 34px;
    }

    .ahc-regional-cta__actions {
        flex-direction: column;
        gap: 12px;
    }

    .ahc-regional-cta__btn {
        width: 100%;
        max-width: 240px;
    }
}

/* ==========================================
   Footer
   ========================================== */
.ahc-main-footer {
    background-color: transparent;
    padding: 0;
}

.ahc-main-footer .ahc-container {
    max-width: 100%;
    padding: 0;
    background-color: #8C1318;
    background-image: url('../assets/img/footer-background.png');
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: 100% auto;
    border-radius: 32px 32px 0 0;
    padding: 60px 0 180px 0;
    position: relative;
    z-index: 2;
}

.ahc-footer-card {
    color: var(--white);
    position: relative;
    max-width: 1280px;
    margin: auto;
}

.ahc-footer-main-row {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.ahc-footer-logo-col {
    flex: 0 0 260px;
}

.ahc-footer-logo {
    max-width: 100%;
    height: auto;
}

.ahc-footer-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr) auto;
    gap: 30px;
}

.ahc-footer-col h4 {
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 700;
    font-family: var(--font-heading);
}

.ahc-footer-col ul li {
    margin-bottom: 10px;
}

.ahc-footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    transition: 0.3s;
}

.ahc-footer-col ul li a:hover {
    color: var(--white);
}

.ahc-footer-contact-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding-top: 5px;
}

.ahc-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #FFFFFF;
    font-size: 14px;
    white-space: nowrap;
}

.ahc-contact-item a {
    color: rgba(255, 255, 255, 0.8);
    transition: 0.3s;
}

.ahc-contact-item a:hover {
    color: #fff;
}

.ahc-contact-icon {
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.8);
}

.ahc-footer-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin: 40px 0 20px 0;
}

.ahc-footer-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.ahc-copyright {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
}

.ahc-footer-legal-links {
    display: flex;
    gap: 20px;
}

.ahc-footer-legal-links a {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    transition: 0.3s;
}

.ahc-footer-legal-links a:hover {
    color: var(--white);
}


/* ==========================================
   Responsive Design (Media Queries)
   ========================================== */

/* ------------------------------------------
   Media Query: 1024px
   ------------------------------------------ */
@media (max-width: 1024px) {

    /* --- General / Layout --- */
    .ahc-pricing-card,
    .ahc-tourism-card {
        flex: 1 1 calc(50% - 20px);
    }

    /* --- Hero Section --- */
    .ahc-hero-image {
        opacity: 0.3;
        right: -100px;
    }

    /* --- Agenda Section --- */
    .ahc-agenda-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    /* --- Footer --- */
    .ahc-footer-card {
        padding: 50px 40px 180px 40px;
    }

    .ahc-footer-main-row {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        text-align: center;
    }

    .ahc-footer-logo-col {
        flex: 0 0 auto;
        display: flex;
        justify-content: center;
    }

    .ahc-footer-logo {
        max-width: 220px;
    }

    .ahc-footer-grid {
        width: 100%;
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
    }

    .ahc-footer-contact-details {
        grid-column: span 4;
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 30px;
        margin-top: 10px;
    }
}

/* ------------------------------------------
   Media Query: 768px
   ------------------------------------------ */
@media (max-width: 768px) {

    /* --- Header --- */
    .ahc-main-nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        max-width: 85%;
        height: 100vh;
        height: 100dvh;
        background-color: var(--white);
        flex-direction: column;
        align-items: flex-start;
        justify-content: space-between;
        padding: 60px 40px;
        box-sizing: border-box;
        box-shadow: 5px 0 25px rgba(0, 0, 0, 0.15);
        z-index: 1005;
        border-radius: 0 0 0 32px;
        transform: translateX(100%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        display: flex;
        margin: 0;
    }

    .ahc-main-nav.ahc-active {
        transform: translateX(0);
    }

    .ahc-nav-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        width: 100%;
        margin-bottom: 0;
    }

    .ahc-nav-links li {
        width: 100%;
    }

    .ahc-nav-links a {
        font-family: var(--font-heading);
        font-size: 18px;
        font-weight: 600;
        color: #333333;
        display: block;
        padding: 6px 0;
        transition: color 0.3s ease;
    }

    .ahc-nav-links a.ahc-active {
        color: var(--accent-red);
        font-weight: 700;
    }

    .ahc-mobile-menu-btn {
        display: flex;
        margin-left: auto;
        margin-right: 20px;
        position: relative;
        z-index: 1010;
        /* Keep it above backdrop and drawer */
    }

    .ahc-mobile-menu-btn.ahc-active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .ahc-mobile-menu-btn.ahc-active span:nth-child(2) {
        opacity: 0;
    }

    .ahc-mobile-menu-btn.ahc-active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .ahc-mobile-nav-footer {
        display: flex;
        justify-content: center;
        width: 100%;
        margin-top: auto;
        padding-top: 30px;
    }

    .ahc-mobile-enroll-btn {
        width: 100%;
        padding: 14px 28px;
        font-size: 16px;
        border-radius: 50px;
        background-color: var(--primary-blue);
        color: var(--white);
        border: none;
        box-shadow: 0 4px 12px rgba(61, 97, 163, 0.25);
        text-align: center;
        font-family: var(--font-heading);
        font-weight: 700;
        transition: all 0.3s ease;
    }

    .ahc-mobile-enroll-btn:hover {
        background-color: var(--secondary-blue);
    }

    .ahc-btn-header {
        display: none;
    }

    /* --- Hero Section --- */
    .ahc-hero {
        text-align: center;
    }

    .ahc-hero-actions {
        flex-direction: column;
        width: 80%;
    }

    .ahc-hero-container {
        justify-content: center;
        padding: 50px 40px;
    }

    .ahc-hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .ahc-hero-image {
        display: none;
    }

    /* --- Intro Section --- */
    .ahc-intro .ahc-container {
        background-position: center bottom;
    }

    /* --- About Section --- */
    .ahc-about-container {
        flex-direction: column;
    }

    /* --- Speakers Section --- */
    .ahc-speakers-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    /* --- Agenda Section --- */
    .ahc-agenda-bg-split {
        width: 100%;
        height: 50%;
    }

    .ahc-agenda-content {
        flex-direction: column;
    }

    .ahc-agenda-sidebar,
    .ahc-agenda-main {
        width: 100%;
    }

    /* --- Sponsors Section --- */
    .ahc-sponsors-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .ahc-sponsors-logos {
        justify-content: center;
    }

    /* --- Footer --- */
    .ahc-footer-card {
        padding: 40px 30px 140px 30px;
        border-radius: 24px;
    }

    .ahc-footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ahc-footer-contact-details {
        grid-column: span 2;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

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

    .ahc-footer-col {
        flex: 1 1 calc(50% - 30px);
    }

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

/* ------------------------------------------
   Media Query: 480px
   ------------------------------------------ */
@media (max-width: 480px) {

    /* --- General / Layout --- */
    .ahc-container {
        box-sizing: border-box;
    }

    .ahc-pricing-card,
    .ahc-tourism-card {
        flex: 1 1 100%;
    }

    /* --- Hero Section --- */
    .ahc-hero-logo img {
        height: 360px;
        margin-bottom: -150px;
    }

    .ahc-hero-logo h1 {
        font-size: 20px;
    }

    /* --- Intro Section --- */
    .ahc-intro .ahc-container {
        padding: 66px 20px;
    }

    /* --- About Section --- */
    .ahc-about-container {
        padding: 0 20px;
    }

    /* --- Speakers Section --- */
    .ahc-speakers .ahc-container {
        box-sizing: border-box;
    }

    .ahc-speakers-slider {
        padding: 0 0 50px;
    }

    /* --- Agenda Section --- */
    .ahc-agenda-container {
        box-sizing: border-box;
    }

    .ahc-agenda-main {
        padding-left: 0;
    }

    .ahc-agenda-item {
        flex-direction: column;
    }

    /* --- Footer --- */
    .ahc-footer-card {
        padding: 30px 20px 100px 20px;
        border-radius: 16px;
    }

    .ahc-footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .ahc-footer-contact-details {
        grid-column: span 1;
    }

    .ahc-footer-legal-links {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .ahc-footer-col {
        flex: 1 1 100%;
    }
}