/* =================================================================
   DASHBOARD - PARTE 2: SLIDER Y SECCIONES DE CONTENIDO
   ================================================================= */

/* =================================================================
   SLIDER / CARRUSEL CON BARRA DE PROGRESO
   ================================================================= */

.hero-slider {
    width: 100%;
    position: relative;
    margin-bottom: 0;
}

.carousel-inner {
    border-radius: 0;
}

.carousel-item {
    height: 493px; /* Altura escritorio */
}

.carousel-item img {
    height: 493px; /* Altura escritorio */
    object-fit: cover;
    object-position: center;
}

.carousel-caption-custom {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    background: rgba(107, 76, 127, 0.85);
    padding: 30px 50px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    max-width: 800px;
    width: 90%;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.carousel-caption-custom h2 {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.carousel-caption-custom p {
    color: #f0f0f0;
    font-size: 1.2rem;
    margin-bottom: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.carousel-indicators {
    bottom: 20px;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    margin: 0 5px;
}

.carousel-indicators button.active {
    background: #5a9e7f;
    width: 15px;
    height: 15px;
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(107, 76, 127, 0.6);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-slider:hover .carousel-control-prev,
.hero-slider:hover .carousel-control-next {
    opacity: 1;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: rgba(90, 158, 127, 0.8);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 25px;
    height: 25px;
}

.slider-progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    z-index: 10;
    border-radius: 0 0 4px 4px;
}

.progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #5a9e7f 0%, #6b4c7f 100%);
    border-radius: 0 0 4px 4px;
    box-shadow: 0 2px 8px rgba(90, 158, 127, 0.4);
    transition: width 5000ms linear;
}

/* =================================================================
   SECCIÓN DE EVENTOS
   ================================================================= */

.events-section {
    padding: 60px 50px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.section-header {
    margin-bottom: 50px;
}

.section-subtitle {
    color: #d4a017;
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.section-title {
    color: #1a1a1a;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0;
}

.event-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.event-image {
    width: 100%;
    height: 100%;
    flex: 1;
    overflow: hidden;
    position: relative;
    background: #f8f9fa;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.5s ease;
}

.event-card:hover .event-image img {
    transform: scale(1.02);
}

.event-content {
    padding: 25px;
    background: #ffffff;
    flex: 0 0 auto;
}

.event-title {
    color: #6b4c7f;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.event-subtitle {
    color: #5a9e7f;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.3;
}

.event-text {
    color: #555;
    font-size: 1rem;
    line-height: 1.3;
    margin-bottom: 15px;
    text-align: left;
}

.event-hashtags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
}

.hashtag {
    background: linear-gradient(135deg, #6b4c7f 0%, #5a9e7f 100%);
    color: #ffffff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    display: inline-block;
}

.event-locations {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin: 15px 0;
}

.locations-title {
    color: #6b4c7f;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.location-item {
    color: #555;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.location-item i {
    color: #5a9e7f;
    font-size: 0.8rem;
}

.event-footer {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 2px solid #e9ecef;
}

.event-footer-text {
    color: #666;
    font-size: 1rem;
    font-style: italic;
    margin: 0;
    text-align: center;
}

/* =================================================================
   SECCIÓN DE PROYECTOS - SEMBRAR SUEÑOS
   ================================================================= */

.projects-section {
    padding: 80px 50px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.projects-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #6b4c7f, #5a9e7f, #6b4c7f);
}

.projects-section .section-subtitle {
    color: #5a9e7f;
}

.projects-section .section-title {
    color: #6b4c7f;
    font-size: 2rem;
    line-height: 1.3;
}

.project-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 2px solid transparent;
}

.project-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 15px 40px rgba(107, 76, 127, 0.2);
    border-color: #6b4c7f;
}

.project-image {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
}

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

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(107, 76, 127, 0.9) 0%, rgba(90, 158, 127, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: #ffffff;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.project-card:hover .overlay-content {
    transform: translateY(0);
}

.overlay-content i {
    font-size: 3rem;
    display: block;
    margin-bottom: 10px;
    animation: pulse 2s infinite;
}

.overlay-content span {
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.project-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.project-title {
    color: #6b4c7f;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.project-text {
    color: #555;
    font-size: 1rem;
    line-height: 1.4;
    margin-bottom: 20px;
    flex: 1;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: auto;
}

.project-tag {
    background: linear-gradient(135deg, #f0e6f5 0%, #e8f5e9 100%);
    color: #6b4c7f;
    padding: 8px 15px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(107, 76, 127, 0.2);
    transition: all 0.3s ease;
}

.project-tag i {
    font-size: 0.8rem;
    color: #5a9e7f;
}

.project-tag:hover {
    background: linear-gradient(135deg, #6b4c7f 0%, #5a9e7f 100%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(107, 76, 127, 0.3);
}

.project-tag:hover i {
    color: #ffffff;
}

.projects-hashtags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(107, 76, 127, 0.05) 0%, rgba(90, 158, 127, 0.05) 100%);
    border-radius: 16px;
    margin-top: 40px;
}

.hashtag-large {
    background: linear-gradient(135deg, #6b4c7f 0%, #5a9e7f 100%);
    color: #ffffff;
    padding: 12px 25px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(107, 76, 127, 0.2);
}

.hashtag-large:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(107, 76, 127, 0.35);
}

/* =================================================================
   NUEVA SECCIÓN: ¿QUÉ ES LA SALUD MENTAL?
   ================================================================= */

.salud-mental-section {
    padding: 10px 0;
    background: linear-gradient(135deg, #f0f7ff 0%, #e8f5e9 50%, #f3e5f5 100%);
    position: relative;
    overflow: hidden;
}

.salud-mental-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%236b4c7f' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.6;
    z-index: 0;
}

.salud-mental-content {
    padding: 15px 15px 60px 60px;
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

.content-wrapper {
    max-width: 100%;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #6b4c7f 0%, #5a9e7f 100%);
    color: white;
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(107, 76, 127, 0.3);
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.section-badge i {
    font-size: 1.1rem;
}

.salud-mental-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 30px;
    line-height: 1.2;
}

.highlight-text {
    background: linear-gradient(135deg, #6b4c7f 0%, #5a9e7f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.definition-card {
    background: white;
    border-radius: 20px;
    padding: 35px;
    margin-bottom: 35px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    border-left: 5px solid #6b4c7f;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.definition-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.card-icon {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 2rem;
    color: #6b4c7f;
    opacity: 0.3;
}

.definition-text {
    font-size: 1.15rem;
    line-height: 1.3;
    color: #333;
    text-align: justify;
    margin: 0 0 25px 0;
    padding-left: 30px;
    font-weight: 500;
}

.card-decoration {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    opacity: 0.6;
}

.card-decoration i {
    font-size: 1.5rem;
    color: #5a9e7f;
    animation: iconFloat 3s ease-in-out infinite;
}

.card-decoration i:nth-child(2) { animation-delay: 0.5s; }
.card-decoration i:nth-child(3) { animation-delay: 1s; }

@keyframes iconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.key-points { margin-bottom: 35px; }

.point-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.point-item:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateX(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.point-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #6b4c7f 0%, #5a9e7f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
}

.point-text { flex: 1; }
.point-text strong { display: block; color: #1a1a1a; font-size: 1.1rem; margin-bottom: 3px; }
.point-text span { color: #666; font-size: 0.95rem; }

.cta-buttons { display: flex; gap: 15px; flex-wrap: wrap; }

.btn-primary-custom, .btn-secondary-custom {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary-custom {
    background: linear-gradient(135deg, #6b4c7f 0%, #5a9e7f 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(107, 76, 127, 0.4);
}

.btn-primary-custom:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(107, 76, 127, 0.5); color: white; }

.btn-secondary-custom {
    background: white;
    color: #6b4c7f;
    border: 2px solid #6b4c7f;
}

.btn-secondary-custom:hover { background: #6b4c7f; color: white; transform: translateY(-3px); }

.salud-mental-image {
    position: relative;
    height: 100%;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

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

.institutional-mascot {
    max-width: 90%;
    max-height: 650px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 60px rgba(107, 76, 127, 0.3));
    animation: mascotFloat 4s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

@keyframes mascotFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-15px) rotate(-1deg); }
    75% { transform: translateY(-10px) rotate(1deg); }
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.float-item {
    position: absolute;
    font-size: 2.5rem;
    animation: floatAround 5s ease-in-out infinite;
    opacity: 0.7;
}

.float-1 { top: 10%; left: 10%; color: #5a9e7f; animation-delay: 0s; }
.float-2 { top: 15%; right: 15%; color: #f39c12; animation-delay: 1s; }
.float-3 { bottom: 20%; left: 5%; color: #6b4c7f; animation-delay: 2s; }
.float-4 { bottom: 15%; right: 10%; color: #e74c3c; animation-delay: 3s; }

@keyframes floatAround {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(10px, -15px) rotate(120deg); }
    66% { transform: translate(-5px, 10px) rotate(240deg); }
}

.image-background-shape {
    position: absolute;
    width: 120%;
    height: 120%;
    background: linear-gradient(135deg, rgba(107, 76, 127, 0.1) 0%, rgba(90, 158, 127, 0.1) 100%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    animation: shapePulse 6s ease-in-out infinite;
}

@keyframes shapePulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.8; }
}

/* =================================================================
   FORO REGIONAL - ESTILOS ESPECÍFICOS (REDISEÑO TIPO CARD/GRID)
   ================================================================= */

.banner-subtitle-foro {
    font-size: 1.5rem;
    font-weight: 600;
    opacity: 0.95;
    margin: 10px auto 15px;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.banner-descripcion-foro {
    font-size: 1.15rem;
    opacity: 0.9;
    max-width: 850px;
    margin: 0 auto;
    line-height: 1.5;
    font-style: italic;
}

/* Imagen Principal del Foro (NUEVO) */
.foro-banner-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
    border: 4px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
}

.foro-banner-image-wrapper:hover {
    transform: scale(1.01);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.5);
}

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

.foro-banner-image-wrapper:hover .foro-banner-image {
    transform: scale(1.03);
}

/* Tarjetas de Ejes Temáticos */
.eje-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 25px 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.eje-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.eje-icon {
    width: 60px;
    height: 60px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #6b4c7f;
    margin-bottom: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.eje-card:hover .eje-icon {
    background: #6b4c7f;
    color: #ffffff;
    transform: scale(1.1);
}

.eje-content {
    flex: 1;
}

.eje-number {
    font-size: 0.9rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 2px;
    margin-bottom: 8px;
    opacity: 0.8;
}

.eje-title {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.4;
    margin: 0;
}

/* Tarjeta de Conferencia Central */
.conferencia-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    border-top: 6px solid #6b4c7f;
    text-align: center;
}

.conferencia-encabezado {
    font-size: 1.1rem;
    font-weight: 800;
    color: #6b4c7f;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.conferencia-encabezado i {
    color: #5a9e7f;
    margin-right: 8px;
}

.conferencia-tema {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    line-height: 1.5;
    margin-bottom: 30px;
    font-style: italic;
}

.conferencia-ponente {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid #5a9e7f;
}

.ponente-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #6b4c7f, #5a9e7f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.ponente-info {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ponente-info strong {
    font-size: 1.1rem;
    color: #1a1a1a;
}

.ponente-info span {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.3;
}

/* Tarjeta de Lema */
.lema-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.lema-icon {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.3);
    position: absolute;
    top: 15px;
    left: 20px;
}

.lema-text {
    font-size: 1.25rem;
    font-weight: 600;
    font-style: italic;
    color: #ffffff;
    margin: 0;
    line-height: 1.6;
}

/* Botón Principal Foro */
.btn-foro-principal {
    display: inline-flex;
    align-items: center;
    padding: 15px 40px;
    background: #ffffff;
    color: #6b4c7f;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.btn-foro-principal:hover {
    background: #5a9e7f;
    color: #ffffff;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Responsive Foro */
@media (max-width: 768px) {
    .banner-subtitle-foro { font-size: 1.2rem; }
    .banner-descripcion-foro { font-size: 1rem; }
    
    /* Ajuste imagen banner en móvil */
    .foro-banner-image-wrapper {
        border-radius: 12px;
        border-width: 2px;
    }

    .eje-card { padding: 20px 15px; }
    .eje-icon { width: 50px; height: 50px; font-size: 1.2rem; }
    .eje-number { font-size: 0.8rem; }
    .eje-title { font-size: 0.9rem; }
    
    .conferencia-card { padding: 25px; }
    .conferencia-encabezado { font-size: 0.95rem; }
    .conferencia-tema { font-size: 1.1rem; }
    .conferencia-ponente { flex-direction: column; text-align: center; }
    .ponente-info { text-align: center; }
    
    .lema-text { font-size: 1.1rem; }
    .btn-foro-principal { padding: 12px 30px; font-size: 1rem; }
}

@media (max-width: 480px) {
    .banner-subtitle-foro { font-size: 1rem; }
    .eje-card { padding: 15px 10px; }
    .conferencia-tema { font-size: 1rem; }
    .ponente-avatar { width: 50px; height: 50px; font-size: 1.2rem; }
    .ponente-info strong { font-size: 1rem; }
    .ponente-info span { font-size: 0.85rem; }
}