@charset "utf-8";
/* ROOTS */
:root {
  --color-primario: #059696;
  --color-primario-oscuro: #30302F;
  --color-texto: #4B4B4B;
  --color-gris-claro: #C9C9C7;
  --color-blanco: #ffffff;
  --color-secundario-fondo: #f8f9fa; 
  --color-verde-logo: #00AAAD;

}


ul li {
  display: flex;
  align-items: flex-start;
}

ul li i {
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.navbar {
  background: #ffffff;
  border-bottom: 1px solid var(--color-primario);
}

.navbar.scrolled {
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.navbar-logo {
  height: 80px;
  transition: all 0.2s ease;
}

.navbar.scrolled .navbar-logo {
  height: 40px;
}

.nav-link {
  font-size: 1.1rem;
  color: var(--color-texto) !important;
  font-weight: 400;
  transition: all 0.2s ease;
}

.nav-link:hover {
  font-weight: 600;
}

.nav-link:active {
  transform: scale(0.95);
}

#servicios .card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#servicios .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.1);
}

#servicios .rounded-circle {
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

#servicios .rounded-circle:hover {
  transform: scale(1.1);
}

#servicios h5 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #212529;
}

#servicios p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
}



#metodologia{
    background-color: var(--color-secundario-fondo);
}

#s1{
    background-image:url("imagenes/serv1_01.png");
    border-radius: 10px;
    background-position: left top;    
}

#s2{
    background-image:url("imagenes/serv1_01.png");
    border-radius: 10px;
    background-position: left top;    
}
.service-card {
  background-color: rgba(255, 255, 255, 0.8);
  border: none;
  border-radius: 0;
  padding: 2rem;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.icon-service {
  font-size: 2.2rem;
  color: var(--color-verde-logo);
}

#cta-servicios {
  
}

#cta-servicios .btn {
  font-size: 1.1rem;
  padding: 0.75rem 2rem;
}

.parallax-bg {
  background-image: url( "imagenes/back_ventajas.jpg"); 
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
}

.parallax-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.7); /* ajusta opacidad si lo ves muy blanco */
  z-index: -1;
}


#testimonios blockquote {
  font-size: 1.1rem;
  color: #333;
}

#testimonios footer {
  color: #666;
  font-size: 0.95rem;
}

#faq .accordion-button {
  font-weight: 600;
  background-color: rgba(255, 255, 255, 0.8);
}

#faq .accordion-body {
  background-color: rgba(255, 255, 255, 0.95);
  border-top: 1px solid #dee2e6;
}

#contacto{
    margin-bottom: 2%;
}

.contact-section {
  background: linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.9)), url('img/fondo-contacto.jpg');
  background-size: cover;
}

.contact-form {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  border-radius: 15px;
  background: var(--color-blanco);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.form-label {
  font-weight: 600;
  color: var(--color-texto);
}

.form-control {
  border: 2px solid #e0e0e0;
  padding: 0.8rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--color-primario);
  box-shadow: 0 0 0 3px rgba(0,170,187,0.2);
}

#scroll-indicator {
  position: fixed;
  bottom: 30px;
  right: 20px;       
  left: unset;
  transform: none;
  z-index: 9999;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  
}

.arrow-wrapper {
  animation: bounceY 2s infinite ease-in-out;
}

.arrow {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-bottom: 2px solid var(--color-verde-logo);
  border-right: 2px solid var(--color-verde-logo);
  transform: rotate(45deg);
  opacity: 0.8;
}

/* Animación corregida */
@keyframes bounceY {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(5px);
  }
}

#scroll-indicator.scroll-up .arrow {
  transform: rotate(-135deg);
}

#scroll-indicator.scroll-up .arrow-wrapper {
  animation: none;
}


.footer {
  background-color: #f2f2f2;
  color: #333;
  font-size: 0.95rem;
}

.footer h5 {
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--color-verde-logo);
}

.footer a {
  color: #333;
  text-decoration: none;
}

.footer a:hover {
  color: var(--color-verde-logo);
}

.footer .social-icons a i {
  font-size: 1.25rem;
  color: var(--color-verde-logo);
  transition: color 0.3s ease;
}

.footer .social-icons a:hover i {
  color: #222;
}

.footer-bottom {
  background-color: #e9e9e9;
  font-size: 0.85rem;
}

