/*
Theme Name: Hello Elementor Child
Theme URI: https://elementor.com/hello-theme/?utm_source=wp-themes&utm_campaign=theme-uri&utm_medium=wp-dash
Template: hello-elementor
Author: Elementor Team
Author URI: https://elementor.com/?utm_source=wp-themes&utm_campaign=author-uri&utm_medium=wp-dash
Description: Hello Elementor is a lightweight and minimalist WordPress theme that was built specifically to work seamlessly with the Elementor site builder plugin. The theme is free, open-source, and designed for users who want a flexible, easy-to-use, and customizable website. The theme, which is optimized for performance, provides a solid foundation for users to build their own unique designs using the Elementor drag-and-drop site builder. Its simplicity and flexibility make it a great choice for both beginners and experienced Web Creators.
Tags: accessibility-ready,flexible-header,custom-colors,custom-menu,custom-logo,featured-images,rtl-language-support,threaded-comments,translation-ready
Version: 3.4.9.1780061651
Updated: 2026-05-29 13:34:11

*/

.event-speakers-grid{
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(240px,1fr));
    gap:25px;
}

.event-speaker-card{
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    max-width:260px;
    margin:0 auto;
    transition:all .3s ease;
    box-shadow:0 4px 20px rgba(0,0,0,.08);
}

.event-speaker-card:hover{
    transform:translateY(-5px);
    box-shadow:0 12px 35px rgba(0,0,0,.15);
}

.event-speaker-photo{
    position:relative;
    overflow:hidden;
}

.event-speaker-photo img{
    width:100%;
    height:220px;
    object-fit:cover;
    display:block;
}

.event-speaker-photo::after{
    content:'';
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0);
    transition:.3s ease;
}

.event-speaker-card:hover .event-speaker-photo::after{
    background:rgba(0,0,0,.22);
}

.event-speaker-content{
    padding:18px;
    text-align:center;
}

.event-speaker-name{
    margin:0 0 8px;
    font-size:22px;
    line-height:1.2;
    font-weight:700;
}

.event-speaker-name a{
    color:#111;
    text-decoration:none;
}

.event-speaker-name a:hover{
    color:#3a57ff;
}

.event-speaker-job{
    font-size:15px;
    color:#666;
    margin-bottom:6px;
    line-height:1.4;
}

.event-speaker-company{
    font-size:14px;
    color:#222;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:.5px;
}

/* Popup */

.speaker-modal{
    display:none;
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.75);
    z-index:99999;
    justify-content:center;
    align-items:center;
    padding:30px;
}

.speaker-modal-content{
    background:#fff;
    width:100%;
    max-width:760px;
    max-height:90vh;
    overflow-y:auto;
    border-radius:15px;
    padding:40px;
    position:relative;
}

.speaker-close{
    position:absolute;
    top:15px;
    right:20px;
    font-size:34px;
    cursor:pointer;
    line-height:1;
}


.speaker-modal-header{
    text-align:center;
    margin-bottom:25px;
}

.speaker-modal-header img{
    width:160px;
    height:160px;
    border-radius:50%;
    object-fit:cover;
    margin-bottom:18px;
}

.speaker-modal-header h2{
    margin:0 0 8px;
}

.modal-job{
    color:#666;
    margin:0 0 5px;
}

.modal-company{
    font-weight:700;
    text-transform:uppercase;
    margin:0;
}

.speaker-biography{
    line-height:1.8;
    color:#444;
}



/*******************************
  Registro
*********************************/
/* Contenedor Grid para asegurar las 2 columnas */
.custom-wc-register-form .wc-custom-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 25px;
    margin-bottom: 20px;
}

/* Forzar que los elementos form-row no se comporten como bloques completos */
.custom-wc-register-form .form-row {
    width: 100% !important;
    float: none !important;
    margin: 0 !important;
    display: flex;
    flex-direction: column;
}
.custom-wc-register-form .form-row label{ margin-bottom: 5px; }

/* Estilo para los inputs para ocupar todo el ancho asignado a su celda */
.custom-wc-register-form .input-text,
.custom-wc-register-form select {
    width: 100% !important;
    box-sizing: border-box;
    padding: 10px;
}

/* Ocultar la celda fantasma en responsive si no es necesaria */
.custom-wc-register-form .placeholder-row {
    display: block;
}
.custom-wc-register-form h3 { font-size: 21px; }

/* Responsive: 1 sola columna en dispositivos móviles */
@media (max-width: 768px) {
    .custom-wc-register-form .wc-custom-form-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .custom-wc-register-form .placeholder-row {
        display: none;
    }
}

/***********************************
 * Rates
***********************************/
a.button__rates {
	background-color: var(--n-tabs-title-background-color-active);
	color:#000;
	display:inline-block;
	padding:15px 35px;
	border-radius:30px;
}
a.button__rates:hover {
	background-color: #000;
	color:var(--n-tabs-title-background-color-active);	
}


/************************************
  Sponsors Tabs
***************************************/
h3.event-sponsor-status-title {
    width: 100%;
    margin: 40px 0 20px;
    font-size: 24px;
    font-weight: 700;
    color: #333;
    text-align: left;
}
.event-sponsors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
    margin-bottom: 40px;
}
.event-sponsor-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.10);
    text-align: center;
    max-width: 330px;
    margin: 0 auto;
}
.event-sponsor-logo {
    height: 220px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    cursor: pointer;
    padding: 35px;
}
.event-sponsor-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}
.event-sponsor-button {
    display: inline-block;
    margin: 28px auto 38px;
    padding: 0;
    border-radius: 0;
    background: transparent;
    color: #000;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s ease;
}
.event-sponsor-button:hover {
    background: transparent;
    color: #7a95ad;
    transform: none;
    box-shadow: none;
    text-decoration: underline;
}
.sponsor-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(3px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    padding: 30px;
    overflow: auto;
}
.sponsor-modal.active {
    display: flex;
}
.sponsor-modal-content {
    position: relative;
    background: #fff;
    max-width: 850px;
    width: 90%;
    border-radius: 8px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    animation: sponsorFadeIn 0.3s ease;
}
@keyframes sponsorFadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}
.sponsor-modal-close {
    position: absolute;
    right: 20px;
    top: 15px;
    border: none;
    background: none;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    color: #aaa;
    transition: color 0.2s;
}
.sponsor-modal-close:hover {
    color: #333;
}
.sponsor-modal-image img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    display: block;
    margin: 0 auto 20px;
    border-radius: 0%;
}
.sponsor-modal-title {
    font-size: 1.8rem;
    line-height: 1.2;
    font-weight: 700;
    margin: 0 0 20px;
    color: #333;
}
.sponsor-modal-description {
    max-width: 100%;
    margin: 0 auto;
    text-align: left;
    font-size: 16px;
    line-height: 1.7;
    color: #333;
}
@media (max-width: 767px) {
    .sponsor-modal-content { padding: 35px 20px; }
    .sponsor-modal-title { font-size: 1.4rem; }
    .sponsor-modal-description { font-size: 15px; }
}