/* Custom overrides placed after app.css */

/* Responsive Youtube embed */
.video-responsive {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
}
.video-responsive iframe,
.video-responsive object,
.video-responsive embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Estilos específicos para el párrafo del hero principal */
.hero-banner.hero-style-1 .banner-content .hero-subtitle {
  color: #ffffff;            /* color deseado */
  font-size: 18px;           /* tamaño */
  line-height: 1.45;         /* lectura */
  margin-top: 0.6rem;
  margin-bottom: 1.25rem;
}

/* Párrafo responsivo con clamp para escalado fluido */
.hero-banner .banner-content .responsive-paragraph {
  font-size: clamp(14px, 2.5vw, 20px);
  line-height: clamp(1.4, 3vw, 1.8);
  margin-top: 0.6rem;
  margin-bottom: 1.25rem;
  max-width: 100%;
}

/* Contenedor banner con padding y ancho responsivo */
.hero-banner .banner-content {
  margin-right: 0;
  padding-right: 15px;
  padding-left: 15px;
  max-width: 100%;
  width: 100%;
}

/* Estilos para los números en las tarjetas Top 10 */
.container-netflix {
    max-width: 1820px;
    margin: 0 auto;
}

/* Formularios: Estilo unificado para inputs (Reclamos, Sugerencias, Trabajo) */
.form-style-2 input,
.form-style-2 textarea,
.form-style-2 select {
    border-radius: 10px !important;
    border: 1.5px solid #b0b0b0 !important;
    padding: 15px 20px !important;
    margin-bottom: 20px !important;
}

.form-style-2 input:focus,
.form-style-2 textarea:focus,
.form-style-2 select:focus {
    border-color: var(--color-primary) !important;
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
}

/* Feature Box: Estilo Azul Sólido (Icono blanco, fondo azul) */
.features-box.blue-solid-style .icon {
    background-color: var(--color-primary);
    color: #ffffff;
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
}

.features-box.blue-solid-style:hover .icon {
    background-color: var(--color-secondary) !important;
    color: #ffffff !important;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* Cookie Consent Banner Styles - Estilo Flotante (Toast) */
.cookie-consent-container {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 400px;
    max-width: calc(100% - 60px);
    z-index: 99999;
    background-color: #ffffff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    padding: 25px;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.05);
}

.cookie-consent-container.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.cookie-consent-container .cookie-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.cookie-consent-container .cookie-header {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
}

.cookie-consent-container .cookie-icon {
    width: 45px;
    height: 45px;
    background: rgba(var(--color-primary-rgb, 24, 110, 250), 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 22px;
    flex-shrink: 0;
}

.cookie-consent-container .title {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: var(--color-heading);
}

.cookie-consent-container .cookie-body p {
    margin: 0;
    font-size: 14px;
    color: var(--color-body);
    line-height: 1.6;
}

.cookie-consent-container .cookie-actions {
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.cookie-consent-container .cookie-actions .edu-btn {
    padding: 0 25px;
    height: 45px;
    line-height: 45px;
    font-size: 14px;
    border-radius: 6px;
    width: 100%;
    justify-content: center;
}

/* Mobile Responsive Styles for Cookie Banner */
@media (max-width: 575px) {
    .cookie-consent-container {
        bottom: 0;
        left: 0;
        width: 100%;
        max-width: 100%;
        border-radius: 20px 20px 0 0;
        padding: 30px 20px;
        transform: translateY(100%);
    }
    
    .cookie-consent-container.show {
        transform: translateY(0);
    }
}
