/* ========================================
   VARIABLES CSS
   ======================================== */
:root {
  --blanco: #ffffff;
  --rojo: #e9312d;
  --gris-oscuro: #4d4d4d;
  --gris-claro: #f5f5f5;
  --negro-transparente-1: #00000096;
  --negro-transparente-2: #000000d9;
}

/* ========================================
   ESTILOS BASE
   ======================================== */
* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  background-color: var(--blanco);
  color: var(--gris-oscuro);
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Reset específico para imágenes del proyecto */
.carousel-item img,
.speaker-image img,
.sponsor-item img,
.media-partner-item img,
.media-partner-local-item img {
  max-width: 100%;
  height: auto;
}

/* Clase para elementos ocultos visualmente pero accesibles para lectores de pantalla */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ========================================
   COMPONENTES MATERIALIZE PERSONALIZADOS
   ======================================== */
nav {
  background-color: var(--rojo) !important;
}

nav .brand-logo,
nav ul a {
  color: var(--blanco) !important;
}

.btn,
.btn-large,
.btn-small {
  background-color: var(--rojo);
  color: var(--blanco);
}

.btn:hover,
.btn-large:hover,
.btn-small:hover {
  background-color: var(--gris-oscuro);
}

.card {
  background-color: var(--blanco);
  box-shadow: 0 2px 4px 0 var(--negro-transparente-1);
}

input,
textarea {
  background-color: var(--blanco);
  color: var(--gris-oscuro);
}

/* ========================================
   NAVEGACIÓN
   ======================================== */
nav .nav-wrapper {
  background-color: var(--gris-oscuro) !important;
  position: relative;
}
@media (max-width: 900px) {
  nav .nav-wrapper {
    padding: 10px 0;
  }
}

nav .container {
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

nav .brand-logo {
  left: 0;
  transform: none;
  position: absolute;
  margin-left: 0;
  display: flex;
  align-items: center;
}

.nav-logo {
  height: 40px;
  width: auto;
  max-width: 100px;
  object-fit: contain;
}

nav .sidenav-trigger.right {
  right: 0;
  left: auto;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Asegurar que el botón hamburguesa se oculte en desktop */
@media (min-width: 993px) {
  .sidenav-trigger.hide-on-large-only {
    display: none !important;
  }
}

nav #nav-mobile {
  margin-left: auto;
  margin-right: 0;
}

/* ========================================
   SIDENAV (MENÚ OFF-CANVAS)
   ======================================== */
.sidenav {
  background-color: var(--gris-oscuro) !important;
  color: var(--blanco) !important;
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, sans-serif;
}

.sidenav li {
  background-color: transparent !important;
}

.sidenav li a {
  color: var(--blanco) !important;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 1rem 2rem;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sidenav li a:hover {
  background-color: var(--rojo) !important;
  color: var(--blanco) !important;
  padding-left: 2.5rem;
}

.sidenav li a.active {
  background-color: var(--rojo) !important;
  color: var(--blanco) !important;
  font-weight: 600;
}

.sidenav .sidenav-header {
  background-color: var(--rojo);
  padding: 2.5rem 2rem 1.5rem 2rem;
  text-align: center;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.sidenav .sidenav-header img {
  height: 120px;
  width: auto;
  max-width: 280px;
  object-fit: contain;
  margin-bottom: -1.5rem;
}

.sidenav .sidenav-header p {
  color: var(--blanco);
  font-size: 0.9rem;
  font-weight: 400;
  margin: 0;
  opacity: 0.9;
  line-height: 1.3;
}

.sidenav .sidenav-footer {
  background-color: rgba(0, 0, 0, 0.1);
  padding: 1rem 2rem;
  text-align: center;
  position: absolute;
  bottom: 0;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sidenav .sidenav-footer p {
  color: var(--blanco);
  font-size: 0.9rem;
  margin: 0;
  opacity: 0.8;
}

/* Estilos para el botón INSCRIBIRME AHORA en el sidenav */
.sidenav .btn {
  text-align: center !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  margin: 1rem 0 !important;
  padding: 1rem 2rem !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
}

/* Overlay del sidenav */
.sidenav-overlay {
  background-color: rgba(0, 0, 0, 0.5) !important;
  z-index: 996 !important;
}

/* Transiciones suaves */
.sidenav {
  transition: transform 0.3s ease-in-out !important;
}

.sidenav li a {
  transition: all 0.3s ease;
}

/* Estilos para el botón de cerrar */
.sidenav .sidenav-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: var(--blanco);
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 1000;
  background: none;
  border: none;
  padding: 0.5rem;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

.sidenav .sidenav-close:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* ========================================
   SECCIÓN HOME
   ======================================== */
.home-section {
  background-color: var(--rojo);
  color: var(--blanco);
  overflow: hidden;
}

.header-container {
  position: relative;
  width: 100%;
  display: block;
}

.header-container img {
  width: 100%;
  height: auto;
  display: block;
}

.header-text-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--gris-oscuro);
  height: 230px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.header-slogan {
  color: var(--blanco);
  font-size: 64px;
  font-weight: 700;
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, sans-serif;
  margin: 0;
  letter-spacing: 1px;
}

.home-section img {
  width: 100%;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-center .col {
  display: flex;
}

.flex-center-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  text-align: center;
}

.home-title {
  color: var(--blanco);
  font-size: 2.2rem;
  font-weight: bold;
  margin: 1.5rem 0 1rem 0;
  letter-spacing: 1px;
}

.home-subtitle {
  color: var(--blanco);
  font-size: 1.3rem;
  margin-bottom: 2rem;
  margin-top: 0.5rem;
  font-weight: 300;
}

.logo-centro {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
}

.home-row {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: center;
  width: 65%;
  max-width: 1200px;
  margin: 0 auto;
  gap: 0.5rem;
  margin-top: -100px;
}

.home-col {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.home-col-left,
.home-col-right {
  min-width: 60px;
}

.home-side-text {
  color: var(--blanco);
  font-size: 1.2rem;
  font-weight: 700;
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, sans-serif;
  letter-spacing: 1px;
  text-align: center;
  line-height: 1.2;
  margin-bottom: 4rem;
}

.home-col-center {
  flex: 3 1 0;
  min-width: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-centro-img {
  height: 500px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.home-bg {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* ========================================
   SECCIÓN SLIDER
   ======================================== */
.slider-section {
  background-color: var(--blanco);
  padding: 0;
  overflow: hidden;
}

.slider-container {
  width: 100%;
  max-width: 100%;
}

/* .carousel height definido en media queries para responsive */

.carousel-item {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Indicadores del slider */
.carousel .indicators {
  bottom: 20px;
}

.carousel .indicators .indicator-item {
  background-color: var(--gris-oscuro);
  opacity: 0.5;
}

.carousel .indicators .indicator-item.active {
  background-color: var(--rojo);
  opacity: 1;
}

/* Flechas de navegación */
.carousel .carousel-item {
  position: relative;
}

/* ========================================
   SECCIÓN SPEAKERS SLIDER
   ======================================== */
.speakers-slider-section {
  background-color: var(--blanco);
  padding: 4rem 0;
  text-align: center;
}

.speakers-slider-title {
  color: var(--rojo);
  font-size: 1.5rem;
  font-weight: 300;
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, sans-serif;
  margin-bottom: 3rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.speakers-slider-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.speakers-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  position: relative;
}

.speakers-track {
  flex: 1;
  overflow: hidden;
  height: 300px;
  position: relative;
}

.speakers-slides-container {
  display: flex;
  width: 600%;
  height: 100%;
  transition: transform 0.5s ease-in-out;
}

.speaker-slide {
  width: 16.666%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.speaker-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
}

.speaker-image {
  flex-shrink: 0;
}

.speaker-image img {
  width: 210px;
  height: 200px;
  object-fit: cover;
  display: block;
}

.speaker-info {
  text-align: left;
  flex: 1;
}

.speaker-name {
  color: var(--gris-oscuro);
  font-size: 2.5rem;
  font-weight: 700;
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, sans-serif;
  margin: 0 0 0.5rem 0;
  line-height: 1.2;
}

.speaker-title {
  color: var(--gris-oscuro);
  font-size: 1.2rem;
  font-weight: 400;
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, sans-serif;
  margin: 0;
  opacity: 0.8;
}

/* Navegación del slider */
.speaker-nav {
  color: var(--gris-oscuro);
  cursor: pointer;
  user-select: none;
  font-size: 32px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  z-index: 10;
}

/* Indicadores del slider */
.speaker-indicators {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.speaker-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--gris-oscuro);
  opacity: 0.5;
  cursor: pointer;
  transition: all 0.3s ease;
}

.speaker-dot.active {
  background-color: var(--rojo);
  opacity: 1;
}

.speaker-dot:hover {
  opacity: 0.8;
}

/* ========================================
   SECCIÓN CONECTA
   ======================================== */
.conecta-section {
  background: var(--gris-claro);
  text-align: center;
  padding: 2rem 1rem;
  position: relative;
  overflow: hidden;
}

.conecta-title {
  color: var(--gris-oscuro);
  font-size: 3rem;
  font-weight: 700;
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, sans-serif;
  margin-bottom: 2rem;
  text-transform: none;
  line-height: 1.3;
}

.conecta-social {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.conecta-icon {
  font-size: 2.8rem;
  color: var(--rojo);
  background: var(--blanco);
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
  border: none;
}

.conecta-icon:hover {
  background: var(--rojo);
  color: var(--blanco);
}

.conecta-desc {
  color: var(--gris-oscuro);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.conecta-btn {
  background: var(--rojo) !important;
  color: var(--blanco) !important;
  font-size: 1.1rem;
  font-weight: 700;
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, sans-serif;
  border-radius: 4px;
  margin-bottom: 0;
  margin-top: 0;
  box-shadow: 0 2px 8px rgba(233, 49, 45, 0.3);
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
}

.conecta-btn:hover {
  background: var(--gris-oscuro) !important;
  color: var(--blanco) !important;
  box-shadow: 0 4px 12px rgba(233, 49, 45, 0.4);
  transform: translateY(-2px);
}

.conecta-trama {
  width: 45%;
  height: auto;
  display: block;
  margin-top: -5.5rem;
  margin-right: -100px;
  margin-left: auto;
  pointer-events: none;
  user-select: none;
}

.conecta-trama2 {
  width: 40%;
  height: auto;
  display: block;
  margin-top: -5.5rem;
  margin-left: -100px;
  margin-right: auto;
  pointer-events: none;
  margin-bottom: -5rem;
  user-select: none;
}

/* ========================================
   SECCIÓN MAIN SPONSORS
   ======================================== */
.main-sponsors-section {
  background-color: var(--blanco);
  padding: 3rem 0 4rem 0;
  text-align: center;
}

.main-sponsors-title {
  color: var(--gris-oscuro);
  font-size: 1.5rem;
  font-weight: 700;
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, sans-serif;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.sponsors-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.sponsor-item {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sponsor-item img {
  max-width: 100%;
  max-height: 80px;
  height: auto;
  object-fit: contain;
  transition: opacity 0.3s ease;
}

.sponsor-item img:hover {
  opacity: 0.8;
}

/* ========================================
   SECCIÓN MEDIA PARTNERS
   ======================================== */
.media-partners-section {
  background-color: var(--blanco);
  padding: 2rem 0 4rem 0;
  text-align: center;
}

.media-partners-title {
  color: var(--gris-oscuro);
  font-size: 1.5rem;
  font-weight: 700;
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, sans-serif;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.media-partners-container {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.media-partner-item {
  display: flex;
  justify-content: center;
  align-items: center;
}

.media-partner-item img {
  max-width: 100%;
  max-height: 80px;
  height: auto;
  object-fit: contain;
  transition: opacity 0.3s ease;
}

.media-partner-item img:hover {
  opacity: 0.8;
}

/* ========================================
   SECCIÓN SPONSORS
   ======================================== */
.sponsors-section {
  background-color: var(--blanco);
  padding: 2rem 0 4rem 0;
  text-align: center;
}

.sponsors-title {
  color: var(--gris-oscuro);
  font-size: 1.5rem;
  font-weight: 700;
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, sans-serif;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.sponsors-section .sponsors-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
  flex-wrap: wrap;
}

.sponsors-section .sponsor-item {
  flex: 1;
  min-width: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sponsors-section .sponsor-item img {
  max-width: 100%;
  max-height: 120px;
  height: auto;
  object-fit: contain;
  transition: opacity 0.3s ease;
}

.sponsors-section .sponsor-item img:hover {
  opacity: 0.8;
}

/* ========================================
   SECCIÓN MEDIA PARTNERS LOCALES
   ======================================== */
.media-partners-locales-section {
  background-color: var(--blanco);
  padding: 2rem 0 4rem 0;
  text-align: center;
}

.media-partners-locales-header {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 2rem;
}

.media-partners-locales-title {
  color: var(--gris-oscuro);
  font-size: 1.5rem;
  font-weight: 700;
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, sans-serif;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.media-partners-locales-logo img {
  max-height: 60px;
  height: auto;
  object-fit: contain;
  transition: opacity 0.3s ease;
}

.media-partners-locales-logo img:hover {
  opacity: 0.8;
}

.media-partners-locales-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
  flex-wrap: wrap;
}

.media-partner-local-item {
  flex: 1;
  min-width: 180px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.media-partner-local-item img {
  max-width: 100%;
  max-height: 120px;
  height: auto;
  object-fit: contain;
  transition: opacity 0.3s ease;
}

.media-partner-local-item img:hover {
  opacity: 0.8;
}

/* ========================================
   SECCIÓN SOCIAL
   ======================================== */
.social-section {
  background-color: var(--blanco);
  padding: 2rem 0 3rem 0;
  text-align: center;
}

.social-title {
  color: var(--gris-oscuro);
  font-size: 1.3rem;
  font-weight: 400;
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, sans-serif;
  margin-bottom: 1.5rem;
  text-transform: none;
  letter-spacing: 0.5px;
}

.social-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  max-width: 300px;
  margin: 0 auto;
}

.social-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--blanco);
  font-size: 1.2rem;
  transition: all 0.3s ease;
  background-color: var(--rojo);
}

.social-icon:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(233, 49, 45, 0.3);
}

.social-icon.facebook {
  background-color: var(--rojo);
}

.social-icon.instagram {
  background-color: var(--rojo);
}

.social-icon.youtube {
  background-color: var(--rojo);
}

/* ========================================
   PÁGINAS ESPECÍFICAS
   ======================================== */
/* ========================================
   PÁGINA CONTACTO
   ======================================== */
.contacto-main {
  background-color: var(--blanco);
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 0;
}

.contacto-title {
  color: var(--gris-oscuro);
  font-size: 2.5rem;
  font-weight: 700;
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, sans-serif;
  text-align: center;
  margin-bottom: 3rem;
}

.contacto-logo-container {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
}

.contacto-logo-img {
  max-width: 300px;
  width: 100%;
  height: auto;
}

.contacto-whatsapp {
  text-align: center;
}

.contacto-whatsapp a {
  color: var(--gris-oscuro);
  font-size: 3rem;
  transition: color 0.3s ease;
}

.contacto-whatsapp a:hover {
  color: #25d366;
}

/* ========================================
   PÁGINA INFO (INSCRIPCIONES)
   ======================================== */
.info-main {
  background-color: var(--blanco);
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 0;
}

.info-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.info-logo {
  margin-bottom: 2rem;
}

.info-logo-img {
  max-width: 200px;
  width: 100%;
  height: auto;
}

.info-title {
  color: var(--gris-oscuro);
  font-size: 2.5rem;
  font-weight: 700;
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, sans-serif;
  margin-bottom: 2rem;
}

.info-message {
  margin-bottom: 3rem;
}

.info-icon {
  font-size: 4rem;
  color: var(--rojo);
  margin-bottom: 1rem;
}

.info-message h3 {
  color: var(--rojo);
  font-size: 1.8rem;
  font-weight: 700;
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, sans-serif;
  margin-bottom: 1.5rem;
}

.info-message p {
  color: var(--gris-oscuro);
  font-size: 1.2rem;
  font-weight: 400;
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.info-social {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
}

.info-social-icon {
  font-size: 2.5rem;
  color: var(--rojo);
  background: var(--blanco);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border: 2px solid var(--rojo);
}

.info-social-icon:hover {
  background: var(--rojo);
  color: var(--blanco);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(233, 49, 45, 0.3);
}

.info-btn {
  background: var(--rojo) !important;
  color: var(--blanco) !important;
  font-size: 1.2rem;
  font-weight: 700;
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, sans-serif;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(233, 49, 45, 0.3);
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
}

.info-btn:hover {
  background: var(--gris-oscuro) !important;
  color: var(--blanco) !important;
  box-shadow: 0 6px 18px rgba(233, 49, 45, 0.4);
  transform: translateY(-2px);
}

/* ========================================
   PÁGINA 404 (ERROR)
   ======================================== */
.error-main {
  background-color: var(--blanco);
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 0;
}

.error-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.error-number {
  font-size: 8rem;
  font-weight: 900;
  color: var(--rojo);
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(233, 49, 45, 0.2);
}

.error-title {
  color: var(--gris-oscuro);
  font-size: 2.5rem;
  font-weight: 700;
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, sans-serif;
  margin-bottom: 2rem;
}

.error-message {
  margin-bottom: 3rem;
}

.error-icon {
  font-size: 4rem;
  color: var(--rojo);
  margin-bottom: 1rem;
  opacity: 0.8;
}

.error-message p {
  color: var(--gris-oscuro);
  font-size: 1.2rem;
  font-weight: 400;
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.error-actions {
  margin-bottom: 2rem;
}

.error-btn-primary {
  background: var(--rojo) !important;
  color: var(--blanco) !important;
  font-size: 1.2rem;
  font-weight: 700;
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, sans-serif;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(233, 49, 45, 0.3);
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
  margin-bottom: 2rem;
}

.error-btn-primary:hover {
  background: var(--gris-oscuro) !important;
  color: var(--blanco) !important;
  box-shadow: 0 6px 18px rgba(233, 49, 45, 0.4);
  transform: translateY(-2px);
}

.error-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.error-link {
  color: var(--rojo);
  font-size: 1.1rem;
  font-weight: 600;
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, sans-serif;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border: 2px solid var(--rojo);
  border-radius: 4px;
  transition: all 0.3s ease;
}

.error-link:hover {
  background: var(--rojo);
  color: var(--blanco);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(233, 49, 45, 0.3);
}

/* Navegación activa */
nav ul a.active {
  text-decoration: underline;
  font-weight: 600;
}
/* Centrar iframe de video */
iframe {
  display: block;
  margin: 2rem auto 10rem auto;
  max-width: 100%;
}
.copip-year-label {
  color: var(--rojo);
  font-size: 1.2rem;
  font-weight: 700;
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, sans-serif;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.copip-event-title {
  color: var(--gris-oscuro);
  font-size: 2.5rem;
  font-weight: 700;
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.2;
  margin-bottom: 2rem;
  text-align: center;
}

/* ========================================
   GALERÍA
   ======================================== */
.galeria-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.galeria-fila {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.galeria-fila-superior {
  height: 300px;
}

.galeria-fila-inferior {
  height: 200px;
}

.galeria-item {
  background-color: var(--rojo);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.galeria-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(233, 49, 45, 0.3);
}

.galeria-item-grande {
  flex: 1;
  height: 100%;
}

.galeria-item-pequeno {
  flex: 1;
  height: 100%;
}

.galeria-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--blanco);
  background-color: var(--rojo);
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, sans-serif;
}

.galeria-placeholder i {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  opacity: 0.8;
}

.galeria-placeholder span {
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
}

/* Imágenes de la galería */
.galeria-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.galeria-item:hover .galeria-img {
  transform: scale(1.05);
}

/* ========================================
   SECCIÓN SPEAKERS
   ======================================== */
.speakers-section {
  background-color: var(--blanco);
  padding: 4rem 0 2rem 0;
  text-align: center;
}

.speakers-title {
  color: var(--gris-oscuro);
  font-size: 2rem;
  font-weight: 700;
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, sans-serif;
  margin-bottom: 1rem;
  text-align: center;
}

.speakers-subtitle {
  color: var(--gris-oscuro);
  font-size: 1.1rem;
  font-weight: 400;
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  text-align: center;
  opacity: 0.8;
}

/* ========================================
   FOOTER
   ======================================== */
.footer-copip {
  background: var(--rojo);
  color: var(--blanco);
  padding: 2.5rem 0 0.5rem 0;
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, sans-serif;
  position: relative;
  margin-top: 0;
}

.footer-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  gap: 2rem;
}

.footer-col {
  flex: 1 1 0;
  min-width: 180px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.footer-logo {
  align-items: flex-start;
}

.footer-logo-img {
  width: 240px;
  height: auto;
  margin-bottom: 0.5rem;
}

.footer-slogan {
  font-size: 1.2rem;
  font-weight: 400;
  margin-top: 0.5rem;
  line-height: 1.2;
  display: block;
}

.footer-title {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.3rem;
  display: block;
}

.footer-mail {
  color: var(--blanco);
  text-decoration: underline;
  font-size: 1rem;
}

.footer-contacto a {
  color: var(--blanco);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.footer-contacto a:hover {
  opacity: 0.8;
}

.footer-social {
  display: flex;
  gap: 1.2rem;
  margin-top: 0.5rem;
}

.footer-icon {
  font-size: 2rem;
  color: var(--blanco);
  background: transparent;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
  border: none;
}

.footer-icon:hover {
  background: var(--blanco);
  color: var(--rojo);
}

.footer-copy {
  text-align: center;
  color: var(--blanco);
  font-size: 0.85rem;
  margin-top: 1.5rem;
  opacity: 0.8;
}

/* Footer 4 columnas */
.footer-content.footer-4col {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  gap: 0;
}

.footer-4col .footer-col {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
}

.footer-4col .footer-logo {
  align-items: flex-start;
  justify-content: center;
}

.footer-4col .footer-slogan-col {
  align-items: flex-start;
  justify-content: center;
  padding-left: 1.5rem;
}

.footer-4col .footer-slogan {
  font-size: 1.2rem;
  font-weight: 400;
  margin-top: 0.5rem;
  line-height: 1.2;
  display: block;
}

.footer-4col .footer-contacto {
  align-items: flex-start;
  justify-content: center;
  padding-left: 1.5rem;
}

.footer-4col .footer-info {
  align-items: flex-start;
  justify-content: center;
  padding-left: 1.5rem;
}

.footer-4col .footer-title {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0;
  display: block;
}

.footer-4col .footer-social {
  display: flex;
  gap: 1.2rem;
  margin-top: 0.5rem;
}

.footer-4col .footer-icon {
  font-size: 2rem;
  color: var(--blanco);
  background: transparent;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
  border: none;
}

.footer-4col .footer-icon:hover {
  background: var(--blanco);
  color: var(--rojo);
}

/* ========================================
   MEDIA QUERIES - TABLET (600px+)
   ======================================== */
@media (min-width: 600px) {
  .logo-centro-img {
    width: 600px !important;
    height: 300px;
    margin: 0 auto;
  }

  .home-title {
    font-size: 2.8rem;
  }

  .home-subtitle {
    font-size: 1.5rem;
  }
  
  /* Sidenav tablet */
  .sidenav {
    width: 320px !important;
  }
  
  .sidenav li a {
    font-size: 1.05rem;
    padding: 1rem 2rem;
  }
  
  .sidenav .sidenav-header {
    padding: 2.5rem 2rem 1.5rem 2rem;
  }
  
  .sidenav .sidenav-header img {
    height: 100px;
    max-width: 240px;
  }
  
  .sidenav .sidenav-header p {
    font-size: 0.85rem;
  }
}

/* ========================================
   MEDIA QUERIES - RESPONSIVE BREAKPOINTS
   ======================================== */

/* Desktop (1200px+) */
@media (min-width: 1200px) {
  .carousel {
    height: 675px;
  }
}

/* Laptop (992px - 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
  .carousel {
    height: 500px;
  }
}

/* Tablet (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
  .carousel {
    height: 400px;
  }
}

/* Mobile (767px y menos) */
@media (max-width: 767px) {
  /* Slider mobile */
  .carousel {
    height: 300px;
  }
  
  .conecta-section{
    padding: 4rem 1rem;
  }

  .conecta-title {
    font-size: 1.3rem;
  }

  .conecta-desc {
    font-size: 1.1rem;
  }


  .conecta-icon {
    font-size: 2rem;
    width: 40px;
    height: 40px;
  }

  .copip-event-title {
    font-size: 1.8rem;
  }

  .copip-year-label {
    font-size: 1rem;
  }

  /* Galería responsive */
  .galeria-fila {
    flex-direction: column;
    gap: 0.5rem;
  }

  .galeria-fila-superior {
    height: auto;
  }

  .galeria-fila-inferior {
    height: auto;
  }

  .galeria-item-grande,
  .galeria-item-pequeno {
    height: 150px;
  }

  /* Speakers responsive */
  .speakers-title {
    font-size: 1.6rem;
  }

  .speakers-subtitle {
    font-size: 1rem;
  }

  /* Contacto responsive */
  .contacto-title {
    font-size: 2rem;
  }

  .contacto-logo-img {
    max-width: 250px;
  }

  .contacto-whatsapp a {
    font-size: 2.5rem;
  }

  /* Info responsive */
  .info-title {
    font-size: 2rem;
  }

  .info-message h3 {
    font-size: 1.5rem;
  }

  .info-message p {
    font-size: 1rem;
  }

  .info-social-icon {
    font-size: 2rem;
    width: 50px;
    height: 50px;
  }

  .info-btn {
    font-size: 1rem;
    padding: 0.8rem 1.5rem;
  }

  /* Error 404 responsive */
  .error-number {
    font-size: 6rem;
  }

  .error-title {
    font-size: 2rem;
  }

  .error-message p {
    font-size: 1rem;
  }

  .error-btn-primary {
    font-size: 1rem;
    padding: 0.8rem 1.5rem;
  }

  .error-links {
    gap: 1rem;
  }

  .error-link {
    font-size: 1rem;
    padding: 0.4rem 0.8rem;
  }

  /* Footer mobile */
  .footer-copip {
    padding: 2rem 0 0.5rem 0;
    margin-top: 0px;
  }

  .footer-content {
    padding: 0 1rem;
    gap: 1rem;
  }

  .footer-col {
    min-width: 0;
    align-items: center;
    text-align: center;
  }

  .footer-logo-img {
    width: 180px;
  }

  .footer-slogan {
    font-size: 1rem;
    text-align: center;
  }

  .footer-title {
    font-size: 0.9rem;
    text-align: center;
  }

  .footer-mail {
    font-size: 0.9rem;
    text-align: center;
  }

  .footer-contacto a {
    color: var(--blanco);
    text-decoration: none;
    font-size: 0.9rem;
    text-align: center;
    transition: opacity 0.3s ease;
  }

  .footer-contacto a:hover {
    opacity: 0.8;
  }

  .footer-social {
    justify-content: center;
    gap: 1rem;
  }

  .footer-icon {
    font-size: 1.5rem;
    width: 35px;
    height: 35px;
  }

  .footer-copy {
    font-size: 0.75rem;
    margin-top: 1rem;
  }

  .conecta-trama {
    margin-top: -60px;
    margin-bottom: -55px;
    width: 50%;
  }

  .conecta-trama2 {
    margin-top: -25px;
    margin-bottom: -100px;
    width: 48%;
  }

  /* Main Sponsors responsive */
  .main-sponsors-title {
    font-size: 1.2rem;
  }

  .sponsors-container {
    gap: 1rem;
  }

  .sponsor-item img {
    max-height: 60px;
  }

  /* Media Partners responsive */
  .media-partners-title {
    font-size: 1.2rem;
  }

  .media-partners-container {
    max-width: 300px;
  }

  .media-partner-item img {
    max-height: 60px;
  }

  /* Sponsors responsive */
  .sponsors-title {
    font-size: 1.2rem;
  }

  .sponsors-section .sponsors-container {
    gap: 1rem;
    max-width: 100%;
  }

  .sponsors-section .sponsor-item {
    min-width: 150px;
  }

  .sponsors-section .sponsor-item img {
    max-height: 80px;
  }

  /* Media Partners Locales responsive */
  .media-partners-locales-header {
    flex-direction: column;
    gap: 1rem;
  }

  .media-partners-locales-title {
    font-size: 1.2rem;
  }

  .media-partners-locales-logo img {
    max-height: 50px;
  }

  .media-partners-locales-container {
    gap: 1rem;
    max-width: 100%;
  }

  .media-partner-local-item {
    min-width: 120px;
  }

  .media-partner-local-item img {
    max-height: 80px;
  }

  /* Social responsive */
  .social-title {
    font-size: 1.1rem;
  }

  .social-container {
    gap: 1.5rem;
  }

  .social-icon {
    width: 45px;
    height: 45px;
    font-size: 1rem;
  }
  
  /* Sidenav mobile */
  .sidenav {
    width: 280px !important;
  }
  
  .sidenav li a {
    font-size: 1rem;
    padding: 0.8rem 1.5rem;
  }
  
  .sidenav li a:hover {
    padding-left: 2rem;
  }
  
  .sidenav .sidenav-header {
    padding: 2rem 1.5rem 1.5rem 1.5rem;
  }
  
  .sidenav .sidenav-header img {
    height: 80px;
    max-width: 200px;
  }
  
  .sidenav .sidenav-header p {
    font-size: 0.8rem;
  }
  
  .sidenav .sidenav-footer {
    padding: 0.8rem 1.5rem;
  }
  
  .sidenav .sidenav-footer p {
    font-size: 0.8rem;
  }
  
  /* Header overlay responsive */
  .header-container {
    display: flex;
    flex-direction: column;
  }
  
  .header-text-overlay {
    position: static;
    height: 150px;
    background-color: var(--gris-oscuro);
    order: 2;
  }
  
  .header-container img {
    order: 1;
    width: 100%;
    margin-left: 0;
  }
  
  .header-slogan {
    font-size: 32px;
  }
  
  /* Speakers slider responsive */
  .speakers-slider-section {
    padding: 2rem 0;
  }
  
  .speakers-slider-title {
    font-size: 1.2rem;
    margin-bottom: 2rem;
  }
  
  .speakers-track {
    height: 250px;
  }
  
  .speakers-slides-container {
    width: 600%;
  }
  
  .speakers-wrapper {
    gap: 1rem;
  }
  
  .speaker-card {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }
  
  .speaker-image img {
    width: 150px;
    height: 150px;
  }
  
  .speaker-info {
    text-align: center;
  }
  
  .speaker-name {
    font-size: 1.8rem;
  }
  
  .speaker-title {
    font-size: 1rem;
  }
  
  .speaker-nav {
    padding: 5px;
    font-size: 24px;
  }
  
  /* Iframe responsive */
  iframe {
    width: calc(100% - 2rem);
    max-width: none;
    margin: 2rem 1rem 10rem 1rem;
  }
}

/* ========================================
   MEDIA QUERIES - TABLET Y MOBILE (900px-)
   ======================================== */
@media (max-width: 900px) {
  /* Navegación */
  nav .brand-logo {
    left: 0 !important;
    transform: none !important;
    margin-left: 16px;
    position: static;
  }

  .nav-logo {
    height: 32px;
    max-width: 120px;
  }

  nav .sidenav-trigger.right {
    right: 0;
    left: auto;
    position: absolute;

    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
  }

  nav .container {
    justify-content: flex-start;
  }

  /* Home section */
  .home-row {
    flex-direction: row;
    width: 90%;
    gap: 0.3rem;
    min-height: 0;
  }

  .home-col-center {
    order: 2;
    flex: 2 1 0;
  }

  .home-col-left {
    order: 1;
    margin-top: 0;
    flex: 1 1 0;
  }

  .home-col-right {
    order: 3;
    margin-top: 0;
    flex: 1 1 0;
  }

  .logo-centro-img {
    height: 150px;
    max-width: 100%;
    margin: 0 auto;
  }

  .home-side-text {
    font-size: 0.9rem;
    margin-bottom: 2rem;
  }

  /* Footer */
  .footer-content.footer-4col {
    flex-direction: column;
    align-items: center;
    padding: 0 1rem;
    gap: 1.5rem;
  }

  .footer-4col .footer-col {
    align-items: center;
    text-align: center;
    min-width: 0;
    padding-left: 0;
  }

  .footer-4col .footer-logo {
    align-items: center;
  }

  .footer-4col .footer-slogan-col,
  .footer-4col .footer-contacto,
  .footer-4col .footer-info {
    padding-left: 0;
  }
}

/* ========================================
   ESTILOS PARA VIDEO
   ======================================== */
.video-section {
  padding: 2rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

.video-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23e9312d" opacity="0.05"/><circle cx="75" cy="75" r="1" fill="%23e9312d" opacity="0.05"/><circle cx="50" cy="10" r="0.5" fill="%23e9312d" opacity="0.03"/><circle cx="10" cy="60" r="0.5" fill="%23e9312d" opacity="0.03"/><circle cx="90" cy="40" r="0.5" fill="%23e9312d" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  pointer-events: none;
}

.video-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gris-oscuro);
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}

.video-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  background: transparent;
}

.copip-video {
  width: 100%;
  height: auto;
  max-height: 500px;
  display: block;
  border-radius: 12px;
  background: transparent;
  object-fit: cover;
}

.video-loading {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  border-radius: 12px;
  z-index: 10;
}

.loading-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(233, 49, 45, 0.3);
  border-top: 4px solid var(--rojo);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 1rem;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.video-loading p {
  font-size: 1.1rem;
  font-weight: 500;
  margin: 0;
}

/* Responsive para video */
@media (max-width: 768px) {
  .video-section {
    padding: 2rem 0;
  }
  
  .video-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  
  .video-container {
    margin: 0 1rem;
    border-radius: 8px;
  }
  
  .copip-video {
    border-radius: 8px;
  }
  
  .video-loading {
    border-radius: 8px;
  }
}

@media (max-width: 480px) {
  .video-title {
    font-size: 1.5rem;
  }
  
  .loading-spinner {
    width: 40px;
    height: 40px;
  }
  
  .video-loading p {
    font-size: 1rem;
  }
}
