﻿:root {
    /* Colores terciarios como principales */
    --color-primary: #0c3445; /* Azul oscuro principal */
    --color-primary-light: #186077; /* Azul medio */
    --color-primary-lighter: #2694b1; /* Azul claro */
    --color-primary-lightest: #2bcac8; /* Azul turquesa */
    
    /* Colores cuaternarios como secundarios */
    --color-secondary: #b68640; /* Dorado medio */
    --color-secondary-light: #edc05e; /* Dorado claro */
    --color-secondary-dark: #7d5528; /* Dorado oscuro */
    
    /* Grises para fondos y texto */
    --color-gray-dark: #192431; /* Gris oscuro */
    --color-gray-medium: #62718c; /* Gris medio */
    --color-gray-light: #bebed8; /* Gris claro */
    --color-gray-lightest: #f2e6ef; /* Gris muy claro */
    
    /* Colores para texto */
    --color-text-dark: #06101d; /* Texto oscuro */
    --color-text-light: #f2e6ef; /* Texto claro */
    
    /* Colores de fondo */
    --color-background-light: #f2e6ef; /* Fondo claro */
    --color-background-dark: #06101d; /* Fondo oscuro */
    
    /* Gradientes */
    --gradient-primary: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--color-secondary-dark) 0%, var(--color-secondary) 100%);
    --gradient-blue-green: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary-lightest) 100%);
    
    /* Sombras */
    --shadow-small: 0 2px 8px rgba(6, 16, 29, 0.1);
    --shadow-medium: 0 4px 15px rgba(6, 16, 29, 0.15);
    --shadow-large: 0 8px 25px rgba(6, 16, 29, 0.2);
    
    /* Bordes */
    --border-radius-small: 5px;
    --border-radius-medium: 10px;
    --border-radius-large: 15px;

    /* Colores terciarios como principales */
    --color-primary: #0c3445; /* Azul oscuro principal */
    --color-primary-light: #186077; /* Azul medio */
    --color-primary-lighter: #2694b1; /* Azul claro */
    --color-primary-lightest: #2bcac8; /* Azul turquesa */
    
    /* Colores cuaternarios como secundarios */
    --color-secondary: #b68640; /* Dorado medio */
    --color-secondary-light: #edc05e; /* Dorado claro */
    --color-secondary-dark: #7d5528; /* Dorado oscuro */
    
    /* Grises para fondos y texto */
    --color-gray-dark: #192431; /* Gris oscuro */
    --color-gray-medium: #62718c; /* Gris medio */
    --color-gray-light: #bebed8; /* Gris claro */
    --color-gray-lightest: #f2e6ef; /* Gris muy claro */
    
    /* Colores para texto */
    --color-text-dark: #06101d; /* Texto oscuro */
    --color-text-light: #f2e6ef; /* Texto claro */
    
    /* Colores de fondo */
    --color-background-light: #f2e6ef; /* Fondo claro */
    --color-background-dark: #06101d; /* Fondo oscuro */
    
    /* Gradientes */
    --gradient-primary: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--color-secondary-dark) 0%, var(--color-secondary) 100%);
    --gradient-blue-green: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary-lightest) 100%);
    
    /* Sombras */
    --shadow-small: 0 2px 8px rgba(6, 16, 29, 0.1);
    --shadow-medium: 0 4px 15px rgba(6, 16, 29, 0.15);
    --shadow-large: 0 8px 25px rgba(6, 16, 29, 0.2);
}

* {
    font-family: "Roboto", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    line-height: 1.6;
    color: var(--color-text-dark);
    background-color: var(--color-background-light);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/*.solo-letras {
  text-transform: uppercase;
}*/

/* Header */
/* Header Styles */
header {
    background: rgba(12, 52, 69, 0.95);
    color: white;
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

header.scrolled {
    background: rgba(12, 52, 69, 0.98);
    box-shadow: var(--shadow-medium);
    padding: 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-family: 'Anton', sans-serif;
    font-size: 1.5rem;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    width: 75px;
    height: auto;
    transition: all 0.3s ease;
}

.logo-img-nuevo {
    width: 75px;
    height: auto;
    transition: all 0.3s ease;
}

.logo-img.left {
    margin-right: 10px;
}

.logo-img.right {
    margin-left: 10px;
}

/* Menú de navegación */
nav ul {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 15px;
    border-radius: var(--border-radius-small);
    transition: all 0.3s ease;
    position: relative;
}

nav a:hover {
    color: var(--color-secondary-light);
    background: rgba(255, 255, 255, 0.1);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--color-secondary-light);
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 70%;
}

/* Menú Hamburguesa */
.menu-toggle {
    display: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: white;
    margin: 5px 0;
    transition: all 0.3s ease;
    transform-origin: center;
}

/* Animación del menú hamburguesa */
.menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Estilos responsivos */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        /* background: rgba(24, 61, 119, 0.98); */
        background: var(--color-primary);
        backdrop-filter: blur(10px);
        padding: 80px 20px 20px;
        transition: right 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
        z-index: 1000;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
    }
    
    nav.active {
        right: 0;
    }
    
    nav ul {
        flex-direction: column;
        gap: 1rem;
    }
    
    nav a {
        /* padding: 12px 0; */
        display: block;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    nav a::after {
        display: none;
    }
    
    .logo-img.right {
        display: none;
    }
    
    header.scrolled {
        padding: 0;
    }
}

/* fin header */

/* Hero Section */
.hero {
    background: var(--gradient-primary);
    color: white;
    text-align: center;
    min-height: 100vh;
    align-items: center;
    justify-content: center;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.05) 0%, transparent 20%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.05) 0%, transparent 20%);
    z-index: 1;
}

@media screen and (max-width: 1280px) {
    .hero {
        min-height: 120vh; /* Ajuste para pantallas pequeñas */
    }
    
}

@media screen and (max-width: 1366px) {
    .hero {
        min-height: 120vh; /* Ajuste para pantallas pequeñas */
    }
    
}

/* Contenedor del SVG de fondo */
.svg-container {
    position: absolute;
    top: 58%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%; /* Ocupa todo el ancho */
    max-width: 1000px; /* Tamaño máximo para el SVG */
    height: 100%; /* Ocupa todo el alto */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1; /* Detrás del texto */
    pointer-events: none; /* Permite hacer clic a través del SVG si es necesario */
}

.svg-image {
    width: 100%;
    height: auto;
    max-height: 100%; /* Ajuste para evitar que el SVG se desborde verticalmente */
    opacity: 0;
    transition: opacity 0.5s ease;
    object-fit: contain; /* Asegura que el SVG se ajuste sin cortarse */
}

/* Contenedor del texto para centrarlo y asegurar que esté encima del SVG */
.hero-content-wrapper {
    position: relative; /* Para que se posicione sobre el SVG */
    z-index: 2; /* Asegura que esté encima del SVG */
    padding-top: 100px; /* Espacio superior para separar del header */
    padding-bottom: 50px; /* Espacio inferior */
}

.hero h1 {
    font-size: 3.5rem;
    margin: 1rem 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    text-transform: uppercase;
}

/* inicio animacion SVG */
#animated-svg {
    opacity: 0;
}

#animated-svg path[fill]:not([fill="none"]):not([fill="transparent"]) {
    fill-opacity: 0;
}

#animated-svg path {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: draw 3s ease forwards;
    stroke: white; /* Color del trazo del SVG */
    stroke-width: 2px; /* Grosor del trazo */
}

@keyframes draw {
    to { stroke-dashoffset: 0; }
}

.animated-svg [data-is-fill="true"] {
    fill-opacity: 0;
    transition: fill-opacity 1.5s ease;
}
/* final animacion SVG */

/* inicio Main Content */
.main-content {
    padding: 4rem 0;
    margin-top: 0;
}

.section {
    margin: 4rem 0;
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-small);
    animation: fadeInUp 0.8s ease-out forwards;
    /* opacity: 0; */
}

.section h2 {
    color: var(--color-primary);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
    padding-bottom: 0.5rem;
    position: relative;
}

.section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-blue-green);
    border-radius: 2px;
}

.section h3 {
    color: var(--color-secondary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.section-informacion {
    margin: 3rem auto;
    max-width: 1160px;
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-small);
    gap: 2rem;
    text-align: center;
}

.section-informacion h2 {
    color: var(--color-primary);
    font-size: 2rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.feature-box-content h2 {
    font-family: 'Anton', sans-serif;
    font-size: 2.5rem;
    font-weight: 400;
    display: inline-block;
    color: var(--color-primary);
}
/* final main content */

/* Event Details (Acerca del Evento) */
.event-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--color-gray-medium);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.info-card {
    background: linear-gradient(135deg, #fff 0%, var(--color-gray-lightest) 100%);
    border-radius: var(--border-radius-large);
    padding: 2rem;
    box-shadow: var(--shadow-small);
    border: 1px solid rgba(12, 52, 69, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-blue-green);
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-large);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto;
    box-shadow: var(--shadow-small);
}

.card-icon img {
    width: 30px;
    height: 30px;
    /* filter: brightness(0) invert(1); */
}

.qr_code_img {
    width: 100%;
    max-width: 200px;
    height: auto;
    display: block;
    margin: 0 auto;
    border: 1px solid var(--color-gray-light);
    padding: 10px;
    background: white;
    border-radius: var(--border-radius-small);
}

.card-title {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--color-secondary);
    text-align: center;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

/* ESTILOS PARA FORMA DE PAGO */
.info-card.full-width {
    grid-column: 1 / -1;
    margin-top: 2rem;
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.payment-method {
    text-align: center;
    padding: 1.5rem;
    border-radius: var(--border-radius-medium);
    background: linear-gradient(135deg, #fff 0%, var(--color-gray-lightest) 100%);
    transition: all 0.3s ease;
    border: 1px solid rgba(12, 52, 69, 0.1);
}

.payment-method:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--color-secondary-light);
}

.payment-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-small);
    padding: 15px;
}

.payment-icon img {
    max-width: 100%;
    height: auto;
    filter: grayscale(100%) contrast(70%);
    transition: all 0.3s ease;
}

.payment-method:hover .payment-icon img {
    filter: grayscale(0%) contrast(100%);
}

.payment-method h3 {
    color: var(--color-primary);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.payment-method p {
    color: var(--color-gray-medium);
    line-height: 1.6;
    font-size: 0.95rem;
}

.payment-method a {
    color: var(--color-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.payment-method a:hover {
    color: var(--color-secondary-dark);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .payment-methods {
        grid-template-columns: 1fr;
    }
    
    .payment-method {
        padding: 1rem;
    }
}
/* FINAL ESTILOS FORMAS DE PAGO */

/* Estilos específicos para el mapa en la tarjeta de ubicación */
.info-card .card-content iframe {
    width: 100%;
    height: 200px;
    border: none;
    border-radius: var(--border-radius-small);
    margin-top: 1rem;
    box-shadow: var(--shadow-small);
}

.card-content h3 {
    color: var(--color-primary);
    line-height: 1.6;
}

.card-content strong {
    color: var(--color-primary);
    font-weight: 600;
}

.card-content .highlight {
    background: var(--gradient-primary);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-block;
    margin: 0.2rem 0;
}

.date-special {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--color-primary);
    text-align: center;
    margin: 0.5rem 0;
}

.cost-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--color-gray-light);
}

.cost-label {
    font-weight: 500;
    color: var(--color-primary);
}

.cost-item:last-child {
    border-bottom: none;
}

.cost-value {
    font-weight: bold;
    color: var(--color-secondary);
    font-size: 1.1rem;
}

.contact-info {
    text-align: center;
    font-size: 1.3rem;
    color: var(--color-primary-light);
    font-weight: 600;
}

.contact-info a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--color-secondary);
}

.enlace-trib {
    text-align: center;
    margin-top: 2rem;
}

.animated-link {
    text-decoration: none;
    color: var(--color-primary);
    display: inline-block;
    font-weight: 500;
}

.animated-link.tribunal {
    font-size: 1.2rem;
}

.animated-link.registro {
    font-size: 0.9rem;
    margin-top: 10px
}

/* Cada letra será animada individualmente */
.letter {
    display: inline-block;
    transition: color 0.3s ease;
}

/* Efecto hover - cambio de color escalonado para cualquier enlace */
.animated-link:hover .letter:nth-child(1) { color: var(--color-secondary); transition-delay: 0.05s; }
.animated-link:hover .letter:nth-child(2) { color: var(--color-secondary); transition-delay: 0.1s; }
.animated-link:hover .letter:nth-child(3) { color: var(--color-secondary); transition-delay: 0.15s; }
.animated-link:hover .letter:nth-child(4) { color: var(--color-secondary); transition-delay: 0.2s; }
.animated-link:hover .letter:nth-child(5) { color: var(--color-secondary); transition-delay: 0.25s; }
.animated-link:hover .letter:nth-child(6) { color: var(--color-secondary); transition-delay: 0.3s; }
.animated-link:hover .letter:nth-child(7) { color: var(--color-secondary); transition-delay: 0.35s; }
.animated-link:hover .letter:nth-child(8) { color: var(--color-secondary); transition-delay: 0.4s; }
.animated-link:hover .letter:nth-child(9) { color: var(--color-secondary); transition-delay: 0.45s; }
.animated-link:hover .letter:nth-child(10) { color: var(--color-secondary); transition-delay: 0.5s; }
.animated-link:hover .letter:nth-child(11) { color: var(--color-secondary); transition-delay: 0.55s; }
.animated-link:hover .letter:nth-child(12) { color: var(--color-secondary); transition-delay: 0.6s; }
.animated-link:hover .letter:nth-child(13) { color: var(--color-secondary); transition-delay: 0.65s; }
.animated-link:hover .letter:nth-child(14) { color: var(--color-secondary); transition-delay: 0.7s; }
.animated-link:hover .letter:nth-child(15) { color: var(--color-secondary); transition-delay: 0.75s; }
.animated-link:hover .letter:nth-child(16) { color: var(--color-secondary); transition-delay: 0.8s; }
.animated-link:hover .letter:nth-child(17) { color: var(--color-secondary); transition-delay: 0.85s; }
.animated-link:hover .letter:nth-child(18) { color: var(--color-secondary); transition-delay: 0.9s; }
.animated-link:hover .letter:nth-child(19) { color: var(--color-secondary); transition-delay: 0.95s; }
.animated-link:hover .letter:nth-child(20) { color: var(--color-secondary); transition-delay: 1s; }
.animated-link:hover .letter:nth-child(21) { color: var(--color-secondary); transition-delay: 1.05s; }
.animated-link:hover .letter:nth-child(22) { color: var(--color-secondary); transition-delay: 1.1s; }
.animated-link:hover .letter:nth-child(23) { color: var(--color-secondary); transition-delay: 1.15s; }
.animated-link:hover .letter:nth-child(24) { color: var(--color-secondary); transition-delay: 1.2s; }
.animated-link:hover .letter:nth-child(25) { color: var(--color-secondary); transition-delay: 1.25s; }
/* final estilos acerca del evento */

/* Estilos para los iconos de redes sociales en la sección principal */
.social-icons-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5rem;
    flex-wrap: wrap;
    margin: 1rem 0;
}

.social-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-small);
    color: white;
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: var(--shadow-large);
    background: var(--gradient-blue-green);
}

.social-icon svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
}

@media (max-width: 768px) {
    .social-icons-container {
        gap: 1.5rem;
    }
    
    .social-icon {
        width: 50px;
        height: 50px;
    }
    
    .social-icon svg {
        width: 24px;
        height: 24px;
    }
}

/* INICIO ESTILOS FOOTER */
.footer-formal {
    background-color: var(--color-background-dark);
    color: var(--color-text-light);
    padding: 2rem 0 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 0 1rem;
}

.footer-section {
    margin-bottom: 1.5rem;
}

.footer-title {
    color: var(--color-text-light);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 0.5rem;
}

.footer-text {
    margin: 0.5rem 0;
    line-height: 1.6;
    color: var(--color-gray-light);
}

.footer-contacts .contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
}

.contact-icon {
    margin-right: 0.8rem;
    font-size: 1.1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-map {
    margin-top: 1rem;
    border-radius: 4px;
    overflow: hidden;
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 1rem;
    margin-top: 2rem;
}

.footer-legal {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    font-size: 0.9rem;
    color: #95a5a6;
}

.footer-legal p {
    margin: 0.3rem 0;
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
}
/*FINAL FOOTER ESTILOS*/

/* Botones flotantes horizontales */
.a2a_kit {
    display: flex; /* Cambiado a flex para horizontal */
    justify-content: center;
    align-items: center;
    font-size: 16px;
    line-height: 1;
    vertical-align: middle;
    transition: all 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
    opacity: 0;
    transform: translateY(20px); /* Animación de abajo hacia arriba */
}

.a2a_kit.show {
    transform: translateY(0);
    opacity: 1;
}

.a2a_horizontal_style {
    position: fixed;
    z-index: 999999;
    bottom: 30px; /* Posición en la parte inferior */
    right: 1%;
    transform: translateX(-50%);
    background-color: var(--color-primary);
    line-height: 16px;
    height: 50px; /* Altura ajustada */
    border: 2px solid white;
    border-radius: 30px;
    padding: 0 20px; /* Espaciado interno */
    display: flex;
    align-items: center;
    gap: 15px; /* Espacio entre iconos */
    transition: all 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3); /* Sombra más pronunciada */
}

.a2a_horizontal_style.scrolled {
    background-color: var(--color-primary-light);
    border-color: var(--color-secondary);
    transform: rotate(90deg) translateY(-200%) translateX(-25%) scale(0.75); /* Ligera escala al hacer scroll */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Sombra más sutil al hacer scroll */
}

.a2a_horizontal_style a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    transition: all 0.3s ease;
    border-radius: 50%; /* Iconos circulares */
    background-color: rgba(255, 255, 255, 0.1); /* Fondo sutil para cada icono */
}

.a2a_horizontal_style a svg {
    width: 24px; /* Tamaño de los iconos SVG */
    height: 24px;
    fill: white; /* Color de los iconos */
}

.a2a_horizontal_style.scrolled a svg {
    rotate: -90deg;
}

.a2a_horizontal_style a:hover {
    transform: scale(1.05) translateY(-2px); /* Efecto de crecimiento y ligera elevación al hover */
    background-color: var(--color-secondary); /* Cambio de color de fondo al hover */
    box-shadow: 0 4px 15px rgba(var(--color-primary), 0.4);
}

@media (max-width: 767px) {
    .a2a_horizontal_style {
        bottom: 15px;
        height: 40px;
        padding: 0 10px;
        gap: 8px;
    }
    
    .a2a_horizontal_style a svg {
        width: 20px;
        height: 20px;
    }
    .d-md-flex { /* Asegura que el flotante se muestre en móvil si se desea */
        display: flex !important;
    }
}

/* Ocultar el flotante vertical original */
.a2a_vertical_style {
    display: none !important;
}

/* INICIO ESTILOS PAGINA PONENTES */
/* INICIO ESTILOS MODERADOR */
.moderator-card {
    background: white;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-medium);
    overflow: hidden;
    max-width: 420px;
    margin: 3rem auto;
    display: flex;
    flex-direction: column;
    position: relative;
    border: 2px solid var(--color-secondary-light);
    transition: all 0.3s ease;
}

.moderator-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-large);
    border-color: var(--color-secondary);
}

.moderator-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--color-secondary);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.moderator-image-container {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
}

.moderator-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.moderator-card:hover .moderator-image {
    transform: scale(1.05);
}

.moderator-content {
    padding: 2rem;
    text-align: center;
}

.moderator-name {
    font-size: 1.8rem;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.moderator-role {
    font-size: 1.2rem;
    color: var(--color-secondary);
    margin-bottom: 1.5rem;
    font-weight: 500;
    font-style: italic;
}

.moderator-bio {
    color: var(--color-gray-medium);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.moderator-skills {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 1.5rem;
}

.skill-tag {
    background: var(--color-gray-lightest);
    color: var(--color-primary);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.moderator-card:hover .skill-tag {
    background: var(--color-secondary);
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .moderator-card {
        flex-direction: column;
        max-width: 90%;
    }
    
    .moderator-image-container {
        height: 200px;
    }
    
    .moderator-name {
        font-size: 1.5rem;
    }
    
    .moderator-role {
        font-size: 1.1rem;
    }
}

/* Animaciones para la tarjeta del moderador */
.moderator-card {
    opacity: 0;
    transform: translateY(50px) scale(0.9);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.320, 1);
}

.moderator-card.animate {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.moderator-name {
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.6s ease 0.1s;
}

.moderator-card.animate .moderator-name {
    opacity: 1;
    transform: translateX(0);
}

.moderator-role {
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.6s ease 0.2s;
}

.moderator-card.animate .moderator-role {
    opacity: 1;
    transform: translateX(0);
}

.moderator-bio {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease 0.3s;
}

.moderator-card.animate .moderator-bio {
    opacity: 1;
    transform: translateY(0);
}

.moderator-skills {
    opacity: 0;
    transition: all 0.6s ease 0.4s;
}

.moderator-card.animate .moderator-skills {
    opacity: 1;
}

.skill-tag {
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.moderator-card.animate .skill-tag {
    opacity: 1;
    transform: translateY(0);
}

/* Retrasos para los skill tags */
.moderator-card.animate .skill-tag:nth-child(1) {
    transition-delay: 0.4s;
}
.moderator-card.animate .skill-tag:nth-child(2) {
    transition-delay: 0.5s;
}
.moderator-card.animate .skill-tag:nth-child(3) {
    transition-delay: 0.6s;
}

/* FINAL ESTILOS MODERADOR */

.ponentes-section {
    padding: 120px 0 60px;
    position: relative;
    background-color: var(--color-background-light);
}

.main-title-ponentes {
    font-family: 'Anton', sans-serif;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 0.5rem;
    color: var(--color-primary);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.main-subtitle-ponentes {
    font-size: 1.3rem;
    text-align: center;
    color: var(--color-gray-medium);
    margin-top: 3rem;
    font-weight: 300;
}

.section-title-ponentes {
    text-align: center;
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 3rem;
    position: relative;
}

.section-title-ponentes::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient-blue-green);
    border-radius: 2px;
}

.ponentes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.ponente-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.320, 1);
    opacity: 0;
    transform: translateY(50px) scale(0.9);
    position: relative;
    border: solid 2px var(--color-secondary-light) ;
}

.ponente-card.animate {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.ponente-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.ponente-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-blue-green);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.ponente-card:hover::before {
    transform: scaleX(1);
}

.ponente-image-container {
    position: relative;
    height: 0;
    padding-bottom: 100%; /* Mantener relación 1:1 */
    overflow: hidden;
    background: linear-gradient(45deg, var(--color-primary), var(--color-secondary));
    top: 5px;
}

.ponente-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
    filter: grayscale(20%) contrast(1.1);
}

.ponente-card:hover .ponente-image {
    transform: scale(1.1);
    filter: grayscale(0%) contrast(1.2);
}

.ponente-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        transparent 50%,
        rgba(24, 61, 119, 0.7) 100%
    );
    opacity: 0;
    transition: opacity 0.5s ease;
}

.ponente-card:hover .ponente-overlay {
    opacity: 1;
}

.ponente-content {
    padding: 2rem;
    position: relative;
}

.ponente-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.6s ease 0.1s;
}

.ponente-card.animate .ponente-name {
    opacity: 1;
    transform: translateX(0);
}

.ponente-topic {
    font-size: 1.1rem;
    color: var(--color-secondary);
    font-weight: 500;
    margin-bottom: 1rem;
    font-style: italic;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.6s ease 0.2s;
}

.ponente-card.animate .ponente-topic {
    opacity: 1;
    transform: translateX(0);
}

.ponente-bio {
    color: var(--color-gray-medium);
    line-height: 1.7;
    text-align: justify;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease 0.3s;
}

.ponente-card.animate .ponente-bio {
    opacity: 1;
    transform: translateY(0);
}

.ponente-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--color-secondary-light);
    color: var(--color-primary);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    opacity: 0;
    transform: scale(0);
    transition: all 0.5s ease 0.8s;
    z-index: 2;
}

.ponente-card.animate .ponente-badge {
    opacity: 1;
    transform: scale(1);
}

/* Responsive para móviles */
@media (max-width: 768px) {
    .ponentes-section {
        padding: 100px 0 40px;
    }
    
    .main-title-ponentes {
        font-size: 2.2rem;
    }
    
    .main-subtitle-ponentes {
        font-size: 1.1rem;
    }
    
    .section-title-ponentes {
        font-size: 2rem;
    }
    
    .ponentes-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .ponente-content {
        padding: 1.5rem;
    }
    
    .ponente-name {
        font-size: 1.5rem;
    }
    
    .ponente-topic {
        font-size: 1rem;
    }
}
/*FINAL ESTILOS PAGINA PONENTES*/

/* INICIO ESTILOS PAGINA REGISTRO */
.body-mediation {
    font-family: "Roboto", sans-serif;
    /* background: linear-gradient(135deg, var(--color-primary-lightest) 0%, var(--color-primary-light) 100%); */
    background: var(--color-primary-light);
    min-height: 100vh;
    padding: 20px;
    color: var(--color-text-dark);
}

.container-mediation {
    max-width: 900px;
    margin: 40px auto;
    background: white;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-large);
    overflow: hidden;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.header-mediation {
    /* background: var(--gradient-blue-green); */
    background: var(--color-gray-dark);
    color: white;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.header-mediation::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    animation: float 20s linear infinite;
}

.header-mediation h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
    font-weight: 700;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.header-mediation h3 {
    font-size: 1.2em;
    opacity: 0.9;
    font-weight: 300;
    position: relative;
    z-index: 2;
}

.form-container {
    padding: 40px;
}

.form-animation-container {
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out 0.3s forwards;
}

.section-title-mediation {
    font-size: 1.4em;
    color: var(--color-secondary);
    margin-bottom: 25px;
    padding-bottom: 10px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title-mediation::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gradient-blue-green);
    border-radius: 3px;
}

.section-title-mediation.animate-on-scroll {
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.6s ease;
}

.section-title-mediation.animate-on-scroll.animate {
    opacity: 1;
    transform: translateX(0);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.form-group {
    margin-bottom: 25px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.form-group.animate-on-scroll.animate {
    opacity: 1;
    transform: translateY(0);
}

.form-group.full-width {
    grid-column: 1 / -1;
}

label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--color-primary);
    font-size: 0.95em;
}

.required {
    color: #e53e3e;
}

input, select {
    width: 100%;
    padding: 14px;
    border: 2px solid var(--color-gray-light);
    border-radius: var(--border-radius-medium);
    font-size: 16px;
    transition: all 0.3s ease;
    background-color: rgba(255,255,255,0.9);
}

input:focus, select:focus {
    outline: none;
    border-color: var(--color-primary-light);
    box-shadow: 0 0 0 3px rgba(33, 150, 243, 0.1);
    background-color: white;
}

.error {
    border-color: #f44336 !important;
    animation: shake 0.5s ease;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    20%, 60% { transform: translateX(-5px); }
    40%, 80% { transform: translateX(5px); }
}

.error-message {
    color: #f44336;
    font-size: 0.85em;
    margin-top: 8px;
    height: 20px;
    transition: all 0.3s ease;
}

.submit-btn {
    background: var(--gradient-secondary);
    color: white;
    padding: 16px 40px;
    border: none;
    border-radius: var(--border-radius-medium);
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 40px auto 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.2);
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(33, 150, 243, 0.3);
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-btn svg {
    transition: transform 0.3s ease;
}

.submit-btn:hover svg {
    transform: translateX(5px);
}

.required-note {
    text-align: center;
    color: var(--color-gray-medium);
    font-size: 0.9em;
    margin-top: 20px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.5s ease 0.2s;
}

.required-note.animate-on-scroll.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Modal de éxito */
.success-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.success-modal.show {
    display: flex;
    opacity: 1;
}

.success-content {
    background: white;
    padding: 40px;
    border-radius: var(--border-radius-large);
    text-align: center;
    max-width: 450px;
    width: 90%;
    transform: scale(0.9);
    opacity: 0;
    animation: modalFadeIn 0.4s ease-out forwards;
    box-shadow: var(--shadow-large);
}

@keyframes modalFadeIn {
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.success-icon {
    margin-bottom: 25px;
}

.success-icon svg {
    filter: drop-shadow(0 3px 5px rgba(76, 175, 80, 0.3));
}

.success-title {
    font-size: 1.8em;
    color: var(--color-primary);
    margin-bottom: 15px;
    font-weight: 700;
}

.success-message {
    color: var(--color-gray-medium);
    margin-bottom: 30px;
    line-height: 1.6;
}

.new-register-btn {
    background: var(--gradient-blue-green);
    color: white;
    padding: 14px 30px;
    border: none;
    border-radius: var(--border-radius-medium);
    cursor: pointer;
    font-size: 1em;
    font-weight: 500;
    transition: all 0.3s ease;
}

.new-register-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(33, 150, 243, 0.3);
}

/* Scroll indicator */
.scroll-indicator {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255,255,255,0.2);
    z-index: 1000;
}

.scroll-progress {
    height: 100%;
    background: var(--gradient-blue-green);
    transition: width 0.1s ease;
    width: 0%;
}

/* Spinner para botón de envío */
.spinner {
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Responsive */
@media (max-width: 768px) {
    .container-mediation {
        margin: 20px auto;
    }
    
    .header-mediation h1 {
        font-size: 2em;
    }
    
    .form-container {
        padding: 25px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .submit-btn {
        width: 100%;
    }
}
/* FINAL ESTILOS PAGINA REGISTRO */

/* INICIO PAGINA DE PREGUNTAS*/
/* INICIO ESTILOS FAQ - SQUARESPACE ACCORDION STYLE */
.section-intro {
    text-align: center;
    color: var(--color-gray-medium);
    margin-bottom: 3rem;
    font-size: 1.1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border-radius: var(--border-radius-medium);
    overflow: hidden;
    box-shadow: var(--shadow-small);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-medium);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    text-align: left;
    background: white;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Roboto', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--color-primary);
}

.faq-question:hover {
    background: var(--color-secondary);
    color: white;
}

.faq-question .faq-icon {
    transition: transform 0.3s ease;
    color: var(--color-secondary);
}

.faq-item.active .faq-question .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: white;
    padding: 0 2rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2rem 1.5rem;
}

.faq-answer p {
    margin: 1.2rem;
    color: var(--color-gray-medium);
    line-height: 1.7;
}

.faq-list {
    margin: 1rem 0;
    padding-left: 1.5rem;
    color: var(--color-gray-medium);
}

.faq-list li {
    margin-bottom: 0.5rem;
    margin-left: 2rem;
}

.faq-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--color-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.faq-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-secondary);
    transition: width 0.3s ease;
}

.faq-link:hover {
    color: var(--color-secondary-dark);
}

.faq-link:hover::after {
    width: 100%;
}

/* Efecto de acordeón al hacer hover (opcional) */
@media (min-width: 992px) {
    .faq-item:hover .faq-answer {
        max-height: 500px;
        padding: 0 2rem 1.5rem;
    }
}
/* FINAL ESTILOS FAQ - SQUARESPACE ACCORDION STYLE */
/* FINAL PAGINA DE PREGUNTAS */

/* ESTILOS FORMA DE PAGO */
.instructions {
    font-family: 'Roboto', sans-serif;
    color: var(--color-text-dark);
    line-height: 1.6;
    margin-left: 3rem;
}

.payment-section {
    margin-bottom: 40px;
}

.payment-method {
    background: var(--color-white);
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border-left: 4px solid var(--color-secondary);
}

.payment-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--color-gray-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.payment-icon img {
    max-width: 100%;
    height: auto;
}

.payment-method h3 {
    color: var(--color-primary);
    margin-bottom: 15px;
    text-align: center;
}

.payment-method p {
    color: var(--color-text-dark);
    line-height: 1.8;
    text-align: center;
}

.payment-method strong {
    color: var(--color-primary);
}

.print-section {
    text-align: center;
    margin-top: 40px;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    background: var(--color-secondary);
    color: var(--color-white);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    margin: 0 10px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: var(--color-primary);
    transform: translateY(-2px);
}

.btn-print {
    background: var(--color-primary);
    color: white;
}

.btn-download {
    background: #4CAF50;
    color: white;
}

@media print {
    body {
        background: none;
        padding: 0;
    }
    
    .container {
        box-shadow: none;
        padding: 0;
    }
    
    .print-section {
        display: none;
    }
    
    .payment-method {
        page-break-inside: avoid;
        border-left: none;
        box-shadow: none;
        padding: 15px 0;
    }
}

/* Estilo para el formato imprimible */
.payment-format {
    border: 1px solid #ddd;
    padding: 30px;
    margin-top: 40px;
    background: var(--color-white);
    display: none; /* Oculto hasta que se imprima */
}

.payment-format h2 {
    color: var(--color-primary);
    text-align: center;
    margin-bottom: 20px;
}

.payment-format .logo {
    text-align: center;
    margin-bottom: 20px;
}

.payment-format .logo img {
    max-width: 150px;
}

.payment-format .info {
    margin-bottom: 30px;
}

.payment-format table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.payment-format table, .payment-format th, .payment-format td {
    border: 1px solid #ddd;
}

.payment-format th, .payment-format td {
    padding: 12px;
    text-align: left;
}

.payment-format th {
    background-color: var(--color-primary);
    color: white;
}

.signature-line {
    margin-top: 80px;
    border-top: 1px solid #000;
    width: 300px;
    text-align: center;
    padding-top: 5px;
}
/* ESTILOS FORMA DE PAGO */

/* INICIO ESTILOS PARA PAGINA DE PGROGRAMA */
/* ESTILOS PARA PROGRAMA */
.programa-container {
    margin-top: 3rem;
}

.dia-programa {
    margin-bottom: 3rem;
    background: white;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-small);
    overflow: hidden;
}

.dia-titulo {
    background: var(--color-primary);
    color: white;
    padding: 1.5rem;
    margin: 0;
    font-size: 1.5rem;
    text-align: center;
}

.actividades-container {
    padding: 1.5rem;
}

.actividad {
    display: flex;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--color-gray-light);
}

.actividad:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.actividad-hora {
    flex: 0 0 120px;
    font-weight: bold;
    color: var(--color-secondary);
    padding-right: 1rem;
}

.actividad-descripcion {
    flex: 1;
}

.actividad-descripcion h4 {
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.ponente-info {
    font-weight: 500;
    color: var(--color-secondary);
    margin-bottom: 0.3rem;
}

.ponente-cargo {
    color: var(--color-gray-medium);
    font-size: 0.95rem;
    line-height: 1.5;
}

.programa-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.btn-download, .btn-print {
    display: inline-block;
    padding: 12px 25px;
    background: var(--color-secondary);
    color: white;
    text-decoration: none;
    border-radius: var(--border-radius-medium);
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-download:hover, .btn-print:hover {
    background: var(--color-primary-light);
    transform: translateY(-2px);
}

.btn-print {
    background: var(--color-primary);
}

@media (max-width: 768px) {
    .actividad {
        flex-direction: column;
    }
    
    .actividad-hora {
        margin-bottom: 0.5rem;
        padding-right: 0;
    }
    
    .programa-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-download, .btn-print {
        width: 100%;
        text-align: center;
    }
}
/* FINAL ESTILOS PARA PAGINA DE PGROGRAMA */

/* Estilos de impresión específicos para programa*/
@media print {
    header, footer, .a2a_kit, .scroll-indicator, .programa-actions {
        display: none !important;
    }
    
    body, .main-content, .container, .section {
        padding: 0 !important;
        margin: 0 !important;
        background: none !important;
    }
    
    .programa-container {
        margin-top: 0;
    }
    
    .dia-programa {
        box-shadow: none;
        border: none;
        page-break-inside: avoid;
    }

    .payment-section {
        margin-top: 0;
        page-break-inside: avoid;
    }
    
    .payment-method {
        box-shadow: none;
        border: none;
    }
    
    .dia-titulo {
        background: var(--color-primary) !important;
        color: white !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }
    
    @page {
        size: auto;
        margin: 10mm;
    }
}
/* fin Estilos de impresión específicos para programa*/