
:root {
    --primary-color: #0d6efd;
    --secondary-color: #7CA0D4; /*Subrayado*/
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.text-justify {
  text-align: justify !important;
}

.hero {
    /*background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), 
                url('https://picsum.photos/id/1015/1920/1080') center/cover no-repeat;*/
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), 
                url('img/cabecera.jpg') center/cover no-repeat;
    color: white;
    min-height: 50vh;
    display: flex;
    align-items: center;
}

.navbar {
    background: rgba(255,255,255,0.95) !important;
    backdrop-filter: blur(10px);
}

.service-card {
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(13, 110, 253, 0.2) !important;
}

.pricing-card {
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
    /*position: relative;*/
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(13, 110, 253, 0.2) !important;
}

/*
.pricing-card.popular {
    transform: scale(1.05);
    z-index: 10;
}*/

.section-title {
    position: relative;
    display: inline-block;
}

.section-title:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    background: var(--secondary-color);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.logo {
    width: auto;
    height: 40px;
    margin-right: 0.75rem;
}

@media (max-width: 991px) {
    .hero {
        min-height: 80vh;
    }
    .logo {
        width: auto;
        height: 40px;
        margin-right: 0.25rem;
    }
}


.fjalla-one-regular {
  font-family: "Fjalla One", sans-serif;
  font-weight: 400;
  font-style: normal;
}

/* ===================== ESTILOS DEL CONTACTO ===================== */

.contact-icon {
    font-size: 3rem;
}

.contact-btn {
    transition: all 0.3s ease;
}

.contact-btn:hover {
    transform: translateY(-3px);
}

/* Responsivo para Contacto */
@media (min-width: 768px) {
    .contact-icon {
        font-size: 3.8rem;
        margin-bottom: 20px;
    }
    
    .contact-btn {
        padding: 14px 20px;
        font-size: 1.1rem;
    }
}

/* Opcional: Mejorar hover en escritorio */
@media (min-width: 992px) {
    .contact-btn:hover {
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }
}


/* ===================== ESTILOS DEL FOOTER ===================== */


#footer {
  background: #212529;
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 14px;
}

#footer h4 {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 12px;
}

#footer a {
  color: rgba(255, 255, 255, 0.75);
  transition: 0.3s;
  text-decoration: none;
}

#footer a:hover {
  color: #fff;
}


#footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-links ul i {
  padding-right: 2px;
  color: #5db1f9;
}

#footer .footer-links ul a {
  color: rgba(255, 255, 255, 0.75);
  transition: 0.3s;
}

#footer .footer-links ul a:hover {
  color: #fff;
}

#footer .footer-contact p {
  line-height: 26px;
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
}

@media (max-width: 991px) {

  #footer .footer-div {
    margin-top: 20px;
  }

}

