/* CONTENEDOR GENERAL */
.webinar-content{
    text-align: center;
    margin-left:10%;
}
.webinar-block {
    width: 80%;
    background: transparent;
    padding: 20px 0;
    display: flex;
    justify-content: center;
    color: #fff;
}

/* INTERIOR */
.webinar-inner {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* FECHA */
.webinar-date {
    display: flex;
    align-items: center;
    gap: 4px;
}

.webinar-date .big-number {
    font-size: 56px;
    font-weight: 700;
    line-height: 1;
}

.webinar-date .date-text {
    display: flex;
    flex-direction: column;
    font-size: 16px;
    line-height: 1.1;
}

/* DIVISOR */
.webinar-divider {
    width: 3px;
    height: 45px;
    background-color: white;
}

/* PLATAFORMA */
.webinar-platform {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.platform-icon {
    width: 100px;
}

.platform-text {
    font-size: 18px;
    font-weight: 500;
}

/* HORA */
.webinar-time {
    display: flex;
    align-items: center;
    gap: 4px;
}

.country-flag {
    width: 30px;
    height: auto;
}

.time-text {
    font-size: 20px;
    font-weight: 600;
}

/* RESPONSIVE */
@media screen and (max-width: 540px) {

}








/* Estilos de la Seccion */
/* ====== CONTENEDOR PRINCIPAL ====== */

.webinar-section {
    background-image: url('/images/bg_webinars_registro.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 40px;
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

/* ====== TEXTOS ====== */

.webinar-section h2,.webinar-section h3,
.webinar-section p,.webinar-section h1 {
    color: white; /* Verde oscuro */
    width: 80%;
}

/* ====== FORMULARIO ====== */
.webinar-form{
    width:80%;    
}
.webinar-form input {
    background: linear-gradient(180deg, #ffffff, #d9d9d9);
    box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.15);


    line-height: 43px;
    border: 1px solid #e5e5e5;
    font-size: 14px;
    color: #666;
    padding: 0 17px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    transition: all 0.5s ease;
    width:100%;
    
    margin:4px;

}

.webinar-form button {
    padding: 12px;
    background: linear-gradient(180deg, #005859, #09b1b2);
    color: white;
    font-size: 18px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
    margin-top:8px;
}

.webinar-form button:hover {
    opacity: 0.85;
}

/* ====== BURBUJAS ESTILO TROFEO ====== */

.bubble {
    border: 8px solid white; /* borde teal oscuro */
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(180deg, #005859, #09b1b2); /* gradiente estilo trofeo */
    position: relative;
}

.bubble-brand {
    border: 8px solid #09b1b2; /* borde teal oscuro */
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(180deg, #dcdcdc, White); /* gradiente estilo trofeo */
    position: relative;
}

/* efecto overlay suave */
.bubble::before,.bubble-brand::before {
    content: "";
    position: absolute;
    /*inset: 0;*/
    /*background-image: url("/Unused/elementos/cima.png");*/
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    z-index: 1;
}

/* Ajustes de las burbujas */
.bubble-big {
    width: 400px;
    height: 400px;
}

.bubble-small {
    width: 180px;
    height: 180px;
    margin-top: 20px;
}

/* Imagen dentro */
.bubble img,.bubble-brand img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
    position: relative;
}

/* ====== PERRO/GATO ====== */

.pet-img {
    width: 260px;
    margin: 40px auto 0;
    display: block;
    padding: 10px;
    border-radius: 20px;
    background: linear-gradient(180deg, #ffffff, #d9d9d9); /* gris claro tipo trofeo */
}

/* ====== ANIMACIONES ====== */

.fade-left {
    opacity: 0;
    transform: translateX(-60px);
    animation: fadeLeft 1.2s forwards;
}

.fade-right {
    opacity: 0;
    transform: translateX(60px);
    animation: fadeRight 1.2s forwards;
}

.fade-bottom {
    opacity: 0;
    transform: translateY(60px);
}

.fade-bottom.visible {
    animation: fadeBottom 1.2s forwards;
}

@keyframes fadeLeft {
    to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeRight {
    to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeBottom {
    to { opacity: 1; transform: translateY(0); }
}

.webinar-right {
    margin-right:10%;
}
    
/* ====== RESPONSIVE ====== */

@media(max-width: 850px) {
    .webinar-block{
        width:100%;
    }
    .webinar-section {
        flex-direction: column;
        text-align: center;
        padding: 60px 20px;
    }

    .webinar-form {
        width: 100%;
    }
    
    .webinar-right {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;     /* <-- CENTRA LAS BURBUJAS */
        justify-content: center;
        gap: 20px;               /* <-- ESPACIO ENTRE BURBUJAS */
        margin-top: 20px;
        margin-right:0%;
    }
    .webinar-content{
        margin-left:0%;
    }
    .bubble-big,
    .bubble-small {
        margin: 0 auto;          /* <-- LAS FORZA A CENTRARSE */
    }
    
    .webinar-section p,.webinar-section h2,.webinar-section h1,.webinar-section h3{
        width: 100%; /*    */
        
    }
    .bubble-big{
        width:300px;
        height:300px;
    }

}
