* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Background and Overlay */
.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  /*  background-image: url('https://srv1437-files.hstgr.io/163e05483e2a7f06/files/public_html/images/video-bg-1.mp4');*/
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -2;
}

video {
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100%; 
  min-height: 100%;
}
#video:after {
  content: '';
  opacity: 0.75;
  background: #FEB828; /* Old browsers */
  background: -moz-linear-gradient(top, #FEB828 0%, #ED302C 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #FEB828 0%,#ED302C 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #FEB828 0%,#ED302C 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4096ee', endColorstr='#39ced6',GradientType=0 ); /* IE6-9 */
  position:fixed;
  left:0;
  top:0;
  right:0;
  bottom: 0;
}


.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(234, 88, 12, 0.9) 0%, 
        rgba(249, 115, 22, 0.8) 50%, 
        rgba(239, 68, 68, 0.9) 100%);
    z-index: -1;
    background: #FEB828; /* Old browsers */
    background: -moz-linear-gradient(top, #FEB828 0%, #ED302C 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, #FEB828 0%,#ED302C 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, #FEB828 0%,#ED302C 100%); 
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 3rem;
    position: relative;
    z-index: 10;
}

/* Logo */
.logo-circle {
    width: 40px;
    height: 40px;
    background-color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.logo-text {
    color: #fff;
    font-size: 8px;
    font-weight: bold;
    text-align: center;
    line-height: 1.1;
    letter-spacing: 0.5px;
}

.gladiators {
    color: #FEB828;
}

/* Desktop Navigation */
.nav-desktop {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #000000;
}

.nav-link.active {
    border-bottom: 2px solid #000000;
    padding-bottom: 4px;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 140px);
    text-align: center;
    position: relative;
    z-index: 5;
    padding: 0 2rem;
}

.hero-content {
    max-width: 1200px;
}

.welcome-text {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.main-title {
    color: #fff;
    font-size: 4rem;
    font-weight: bold;
    line-height: 1.1;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.description {
    color: #fff;
    font-size: 1.5rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.infodescription {
    color: #0e0000;
    font-size: 1.5rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Social Media Icons */
.social-media {
    position: fixed;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    z-index: 20;
}

.social-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    font-size: 1.25rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.facebook {
    background-color: #1877f2;
}

.facebook:hover {
    background-color: #166fe5;
}

.whatsapp {
    background-color: #25d366;
}

.whatsapp:hover {
    background-color: #22c55e;
}

.instagram {
    background: linear-gradient(45deg, #833ab4, #fd1d1d, #fcb045);
}

.instagram:hover {
    background: linear-gradient(45deg, #7c3aed, #dc2626, #f59e0b);
}

/* Mobile Navigation */
.nav-mobile {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    padding: 1rem;
    z-index: 20;
    justify-content: space-around;
}

.nav-link-mobile {
    color: #fff;
    text-decoration: none;
    font-size: 0.875rem;
    text-align: center;
    transition: color 0.3s ease;
}

.nav-link-mobile:hover,
.nav-link-mobile.active {
    color: #fdba74;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header {
        padding: 1rem 1.5rem;
    }

    .logo-circle {
        width: 60px;
        height: 60px;
    }

    .logo-text {
        font-size: 6px;
    }

    .nav-desktop {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .main-title {
        font-size: 2.5rem;
    }

    .description {
        font-size: 1.125rem;
    }

    .welcome-text {
        font-size: 1rem;
    }


    .social-media {
        right: 0.5rem;
    }

    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 0 1rem;
        min-height: calc(100vh - 180px);
    }

    .main-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .description {
        font-size: 1rem;
    }

    .header {
        padding: 1rem;
    }
}

@media (min-width: 1024px) {
    .main-title {
        font-size: 6rem;
    }

    .description {
        font-size: 1.75rem;
    }

    .welcome-text {
        font-size: 1.5rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    animation: fadeInUp 1s ease-out;
}

.social-media {
    animation: fadeInUp 1s ease-out 0.3s both;
}

.header {
    animation: fadeInUp 1s ease-out 0.1s both;
}

/* General Styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
  color: #333;
  line-height: 1.6;
}

.container {
  width: 80%;
  margin: auto;
  overflow: hidden;
  padding: 0 20px;
}

/* Header Styles */
header {
  color: #fff;
  padding-top: 30px;
  min-height: 70px;
}

header a {
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 16px;
}

header ul {
  margin: 0;
  padding: 0;
}

header li {
  float: left;
  display: inline;
  padding: 0 20px 0 20px;
}

header #branding {
  float: left;
}

header #branding h1 {
  margin: 0;
}

header nav {
  float: right;
  margin-top: 10px;
}

header .highlight,
header .current a {
  color: #e8491d;
  font-weight: bold;
}

header a:hover {
  color: #ccc;
  font-weight: bold;
}

/* Showcase */
#showcase {
  min-height: 400px;
  background: url("../img/showcase.jpg") no-repeat 0 -100px;
  text-align: center;
  color: #fff;
}

#showcase h1 {
  margin-top: 100px;
  font-size: 55px;
  margin-bottom: 10px;
}

#showcase p {
  font-size: 20px;
}

/* Newsletter */
#newsletter {
  padding: 15px;
  color: #fff;
  background: #35424a;
}

#newsletter h1 {
  float: left;
}

#newsletter form {
  float: right;
  margin-top: 15px;
}

#newsletter input[type="email"] {
  padding: 4px;
  height: 25px;
  width: 250px;
}

/* Boxes */
#boxes {
  margin-top: 20px;
}

#boxes .box {
  float: left;
  text-align: center;
  width: 30%;
  padding: 10px;
}

#boxes .box img {
  width: 90px;
}

/* Sidebar */
aside#sidebar {
  float: right;
  width: 30%;
  margin-top: 10px;
  padding: 10px;
}

aside#sidebar .quote input,
aside#sidebar .quote textarea {
  width: 90%;
  padding: 5px;
}

/* Main-col */
article#main-col {
  float: left;
  width: 65%;
}

/* Services */
ul#services li {
  padding: 20px;
  border: #cccccc solid 1px;
  margin-bottom: 5px;
  background: #e6e6e6;
}

/* Footer */
footer {
  padding: 20px;
  margin-top: 20px;
  color: #fff;
  background-color: #e8491d;
  text-align: center;
}

/* Logo */
.logo-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.logo-image {
  width: 60px;
  height: 60px;
  object-fit: contain;
  border-radius: 50%;
}

/* Responsive logo */
@media (max-width: 768px) {
  .logo-circle {
    width: 60px;
    height: 60px;
  }

  .logo-image {
    width: 45px;
    height: 45px;
  }
}

/* Media Queries */
@media (max-width: 768px) {
  header #branding,
  header nav,
  header nav li,
  #newsletter h1,
  #newsletter form,
  #boxes .box,
  aside#sidebar,
  article#main-col {
    float: none;
    text-align: center;
    width: 100%;
  }

  header {
    padding-bottom: 5px;
  }

  #showcase h1 {
    margin-top: 40px;
  }

  #newsletter form {
    margin-top: 0;
  }
}


.nav-mobile {
  background-color: rgba(0, 0, 0, 0.9);
  position: absolute;
  top: 70px; /* ajusta si tu header es más alto */
  left: 0;
  right: 0;
  flex-direction: column;
  align-items: center;
  padding: 1rem 0;
  z-index: 1000;
  display: none; /* inicialmente oculto */
}

.nav-mobile a {
  color: white;
  padding: 1rem;
  display: block;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
}

.mobile-menu-btn {
  display: none;
}

@media (max-width: 768px) {
  .nav-desktop {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: white;
    z-index: 1100;
  }
}


/*PROCESO PARA CELULAR*/

/* Oculta por defecto el menú móvil */
.hidden {
  display: none;
}

/* Estilos base */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  position: relative;
}

.nav-desktop .nav-link,
.nav-mobile .nav-link {
  text-decoration: none;
  color: white;
  padding: 0.5rem 1rem;
}

/* Menú móvil oculto por defecto */
.nav-mobile {
  flex-direction: column;
  position: absolute;
  top: 100%;
  right: 0;
  background-color: rgba(0, 0, 0, 0.95);
  width: 100%;
  z-index: 999;
}

/* Esconde el botón hamburguesa en pantallas grandes */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
}

/* Media query para móviles */
@media screen and (max-width: 768px) {
  .nav-desktop {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .nav-mobile {
    display: flex;
  }
}


.nav-mobile {
  flex-direction: column;
  position: absolute; /* <- Esto es importante */
  top: 100%;
  right: 0;
  background-color: rgba(0, 0, 0, 0.95);
  width: 100%;
  z-index: 999;
}

@media screen and (max-width: 768px) {
  .nav-mobile {
    display: flex; /* Esto será sobreescrito si .hidden está presente */
  }
}


/* Oculta el menú inicialmente */
.hidden {
  display: none;
}

/* Muestra el menú solo en móviles */
@media screen and (max-width: 768px) {
  .nav-mobile {
    display: flex;
  }
}

.hidden {
  display: none !important;
}


.nav-mobile {
  flex-direction: column;
  position: absolute;
  top: 100%;
  right: 0;
  background-color: rgba(0, 0, 0, 0.9);
  padding: 1rem;
  z-index: 1000;
  width: 100%;
}

/* Solo se muestra en pantallas pequeñas */
@media screen and (min-width: 769px) {
  .nav-mobile {
    display: none !important;
  }
}


.fondo-amarillo {
  background: linear-gradient(to right, #d79a3e, #f3c553); /* degradado amarillo */
}


#myVideo:not(.quienes-somos-activo)::after {
  content: '';
  opacity: 0.75;
  background: linear-gradient(to bottom, #FEB828 0%, #ED302C 100%);
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
