/* Scroll suave */


body {
    font-family: 'Special Elite', cursive;
    background-color: #000;
    color: #fff;
  }
  
  h2, h3, h4, .card-title {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 1px;
    color: #e10600;
  }
  
  section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  
  .card-body i {
    transition: transform 0.3s ease;
  }
  
  .card-body:hover i {
    transform: scale(1.2);
  }
  
/* Navbar */
.navbar-brand img {
    height: 50px;
}

.navbar .nav-link {
    font-weight: 500;
    transition: color 0.3s;
}

.navbar .nav-link:hover {
    color: #ff0000;
}

.navbar .fab {
    font-size: 1.25rem;
    transition: color 0.3s;
}

.navbar .fab:hover {
    color: #ff0000;
}


/* HERO SECTION con efecto neón */
.hero-section {
    position: relative;
    height: 100vh;
    background-image: url('img/fondo.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

/* Contenido principal del hero */
.hero-content {
    z-index: 2;
    padding: 20px;
    max-width: 800px;
}

/* Títulos con neón rojo */
.hero-section h1 {
    font-family: 'Russo One', sans-serif;
    font-size: 4rem;
    margin-bottom: 20px;
    color: #ece6e6;
    text-shadow:
        0 0 5px #eeebeb,
        0 0 10px #ff0000,
        0 0 20px #ff0000,
        0 0 40px #fff8f6,
        0 0 60px #f80202;
}

/* Subtítulo también con neón */
.hero-section p {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: #ffffff;
    text-shadow:
        0 0 3px #ff0000,
        0 0 6px #ff0000,
        0 0 10px #ff3c00;
}

/* Botón */
.hero-content .btn {
    font-weight: bold;
    font-size: 1.1rem;
    border: 2px solid #ff0000;
    background-color: transparent;
    color: #ff0000;
    text-shadow: 0 0 5px #ff0000;
    transition: all 0.3s ease-in-out;
}

.hero-content .btn:hover {
    background-color: #ff0000;
    color: #000;
    box-shadow: 0 0 15px #ff0000;
}

@media (max-width: 576px) {
    .hero-content {
        padding: 0 1.5rem; /* espacio lateral seguro */
        max-width: 100%; /* ocupa todo el ancho disponible */
    }

    .hero-section h1 {
        font-size: 2.5rem; /* reduce el tamaño del título */
    }

    .hero-section p {
        font-size: 1.2rem;
    }

    .logo-rojo {
        max-width: 180px;
        top: 2rem;
    }

    .navbar-toggler {
        margin-right: 1rem; /* evitar que el botón se pegue al borde */
    }
}


/* Logo en el centro superior */
.logo-rojo {
    position: absolute;
    top: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    max-width: 250px;
    opacity: 0.85;
}

/* Sección de contacto */
#contacto {
    padding: 60px 20px;
    background-color: #000;
    color: #fff;
    text-align: center;
}

#contacto .ratio {
    width: 100%;
    max-width: 900px;
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .hero-section {
        height: 120vh;
        padding-top: 30px;
    }

    #contacto .ratio {
        max-width: 100%;
        padding-bottom: 75%;
    }

    #contacto iframe {
        height: auto;
    }
}


.card {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
  }
  
  .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(255, 0, 0, 0.3);
  }

  #nosotros {
    background: url('img/fondo-metalico.jpg') no-repeat center center;
    background-size: cover;
    position: relative;
  }
  
  #nosotros::before {
    content: '';
    background: rgba(0, 0, 0, 0.85);
    position: absolute;
    top: 0; bottom: 0; left: 0; right: 0;
  }
  
  #nosotros .container {
    position: relative;
    z-index: 1;
  }
  

  #mapid {
    border: 4px solid #e10600;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
  }
  

  footer {
    background-color: #111;
    color: #ccc;
    font-size: 0.9rem;
    border-top: 3px solid #e10600;
  }
  
  footer a {
    color: #e10600;
    text-decoration: none;
  }
  
  footer a:hover {
    text-decoration: underline;
  }
  
  body, html {
    overflow-x: hidden;
  }