
    /* Estilo del body */
    body {
      background: linear-gradient(180deg, #0bacc1, #39acf3); 
      color: #ffffff;
      position: relative;
      display: flex;
      flex-direction: column;
      min-height: 100vh;
      margin: 0;
    }

    /* Estilo de la navbar */
    .navbar {
      background: linear-gradient(to right, #1247af, #111212);
      border-bottom: 2px solid #ed790c; 
      padding: 10px 15px;
    }

    .nav-link {
      color: #ffffff;
    }

    .nav-link:hover {
      color: #ed790c;
    }

    /* Estilo del footer */
    footer {
      background-color: #0c0c0e;
      color: #fafcff;
    }

    footer .text-light:hover {
      color: #de8b17 !important;
    }

    /* Botones */
    .btn-primary {
      background-color: #007bff;
      color: #ffffff;
      border: none;
    }

    .btn-primary:hover {
      background-color: #212121;
    }

    /* Secciones Personalizadas */
    .custom-card {
      background: linear-gradient(to right, #1077c6, #3196c9);
      color: #ffffff;
      box-shadow: 0px 4px 15px #000000;
    }

    .custom-card h2::after {
      background-color: #ffd700;
    }

    .custom-card:hover {
      box-shadow: 0px 8px 30px #8c9eff;
    }

    /* Galería */
    .gallery-title::after {
      background-color: #c800ff;
    }

    .gallery-card {
      background-color: #ffffff;
      box-shadow: 0px 4px 15px #000000;
    }

    /* Botones flotantes */
    .social-buttons a {
      background-color: #007bff;
      color: #ffffff;
    }

    .social-buttons a:hover {
      background-color: #19191a;
    }

    /* Botón ir arriba */
    #backToTopBtn {
      background-color: #007bff;
      color: #ffffff;
    }

    #backToTopBtn:hover {
      background-color: #0056b3;
    }

    /* TARJETAS DE LA SECCIÓN NOSOTROS */
    .about-section {
      background: linear-gradient(to right, #3e9fe5, #6e6e6e);
      box-shadow: 0px 10px 40px #e17575;
    }

    .about-section h2::after {
      background-color: #d42b34;
    }

    .about-section h2 {
      color: #ffffff;
    }

    .about-section .custom-card .card-text *{
        color: #212121 !important;
    }

   
    .about-card {
        background: linear-gradient(to bottom, #147896, #147896);
        box-shadow: 0px 8px 20px #a39e9e;
        border-radius: 10px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .about-card:hover {
        transform: scale(1.05);
        box-shadow: 0px 12px 30px #a39e9e;
    }

    .about-card .card-title {
        font-size: 1.5rem;
        font-weight: 600;
        color: #ffffff;
        display: flex;
        align-items: center;
        margin-bottom: 15px;
    }

    .about-card .card-title i {
        margin-right: 10px;
        color: #c60128;
        font-size: 1.8rem;
    }

    .about-card .card-text {
        color: #212121;
        line-height: 1.6;
        font-size: 1rem;
        margin-bottom: 10px;
    }



    /* FAQs */
    .faq-section {
      background: linear-gradient(to right, #1a1a2e, #2e3b55);
      box-shadow: 0px 10px 30px #000000;
    }

    .faq-title::after {
      background-color: #ffd700;
    }

    .faq-item {
      background-color: #2e3b55;
      color: #ffffff;
    }

    .faq-item:hover {
      background-color: #2e3b55;
    }

    /* Contacto */
    .contacto-title::after {
      background-color: #ffd700;
    }

    #btnEnviar {
      background-color: #007bff;
    }

    #btnEnviar:hover {
      background-color: #007bff;
    }

    /*Maps*/
    .ratio {
      box-shadow: 0 10px 20px #000000;
    }

    .ubicacion-title {
      color: #ffffff;
    }

    .mapsBackgroundColor {
        background-color: #f8f9fa;
        border: 1px solid #ffffff;
    }

    .ubicacion-title::after {
      background-color: #ffd700; 
    }
    