
* {
  font-family: 'Montserrat', Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  color: #333;
  line-height: 1;
}

/* Header */
header {

  background: #d6d2ca;
  padding: 0.2rem 2rem;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-img {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #8b9d8b, #b8a898);
  border-radius: 50%;
}

.logo-text h1 {
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
}

.logo-text p {
  font-size: 0.75rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
}

nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

nav a {
  text-decoration: none;
  color: #333;
  text-transform: uppercase;
  font-size: 1.2rem;
  transition: color 0.3s;
  font-weight: light;

}

nav a:hover {
  color: #8b9d8b;
}
nav a {
  position: relative; /* necesario para ubicar la línea con ::before */
  color: inherit;
  text-decoration: none;
  padding: 35px 5px; /* podés ajustar el espacio si querés */
}

nav a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: #b77256;
  transform: scaleX(0); /* inicialmente invisible */
  transform-origin: center;
  transition: transform 0.25s ease;
}

nav a:hover {
  color: #687a68;
}

nav a:hover::before {
  transform: scaleX(1); /* muestra la línea al hacer hover */
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: #333;
}
/* slide fotos */
.swiper-container h1{ 
 font-size: 1.5rem;
 line-height: 1.5rem;
 width: 40%;
 text-shadow: 5px 5px 5px rgb(18, 18, 18);

}
.swiper-slide { 
  padding: 2rem;
 }


/* Hero Section */
.hero {
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23333" width="1200" height="600"/></svg>');
  background-size: cover;
  background-position: center;
  color: white;
  padding: 8rem 2rem;
  text-align: left;
}

.hero-content {
  max-width: 1400px;
  margin: 0 auto;
}

.hero h2 {
  font-size: 2.5rem;
  max-width: 600px;
  line-height: 1.3;
  margin-bottom: 1rem;
}

/* Main Content Section */
.main-content {
  background: #8b9d8b;
  color: white;
  padding: 2rem 2rem;
}

.main-content-inner {
  margin: 0 auto;
  padding: 1rem 2rem;

}

.main-content h3 {
  font-size: 1.6rem;
  margin-bottom: 0.3rem;
  text-transform: uppercase;
}

.main-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  width: 100%;
}

/* Services Section */
.services {
  background: #e8dfd3;
  padding: 1rem 2rem;
}

.services-inner {
  width: 100%;
  margin: 0 auto;
  padding: 1rem 2rem;
}
.services-inner p{
 
  padding-bottom: 0.5rem;
}

.services h3 {
  
  color: #c17c5f;
  font-size: 2rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
  gap: 0.7rem;
  width: 100%;
}

/* Responsive */
@media (max-width: 768px) {
  .services {
    text-align: center;

    padding: 2rem 2rem;
  }

  .services-content {
    display: grid;
    gap: 1.5rem;
    text-align: center;
    align-items: center;
  }

  .services-image {
    width: 100%;
    background: #ddd;
    border-radius: 10px;
  margin-bottom: 0rem;
  }
}

@media (max-width: 480px) {
  .services {
    text-align: center;

    padding: 2rem 2rem;
  }

  .services-content {
    display: grid;
    gap: 1.5rem;
    align-items: center;
    text-align: center;

  }

  .services-image {
    width: 100%;
    background: #ddd;
    border-radius: 10px;
  margin-bottom: 0rem;
  }

}

/*.service-card {
  background: #333;
  color: white;
  padding: 2rem 1rem;
  text-align: center;
  border-radius: 10px;
  transition: transform 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
}*/

.service-icon {
  width: 60px;
  height: 60px;
  background: white;
  border-radius: 50%;
  margin: 0 auto 1rem;
}


/* Caja general */
.service-card {
background: #2f2f2f;          /* Fondo oscuro inicial */
color: white;
text-align: center;
padding: 35px;
border-radius: 10px;
transition: all 0.3s ease;
position: relative;
text-align: center;
}
.service-card img{
 padding-bottom: 10px;
  }
.service-card h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  line-height: 1.4;
margin-top: 7px;
cursor: pointer;
  color: #8b9d8b;
transition: color 0.3s;
}
.service-card h4:hover {
  color: #8b9d8b;
}

/* Círculo del ícono */
.service-icon {
width: 50px;
height: 50px;
background: white;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.3s ease;
overflow: hidden;
}

/* Imagen del ícono */
.service-icon img {
width: 20%;
height: auto;
margin-bottom: 20px;
filter: invert(0);           /* Ícono oscuro sobre fondo blanco */
transition: all 0.3s ease;
}

/* Título */
.service-card h3 {
font-size: 0.9rem;
margin: 0;
}

/* 🔄 Efecto rollover */
.service-card:hover {
background: white;           /* El rectángulo pasa a blanco */
color: #2f2f2f;              /* El texto se vuelve oscuro */
}


.service-card:nth-child(1):hover .service-icon img {
content: url("img/icons/ico1h.png");
}
.service-card:nth-child(2):hover .service-icon img {
content: url("img/icons/ico2h.png");
}
.service-card:nth-child(3):hover .service-icon img {
content: url("img/icons/ico3h.png");
}
.service-card:nth-child(4):hover .service-icon img {
content: url("img/icons/ico4h.png");
}
.service-card:nth-child(5):hover .service-icon img {
content: url("img/icons/ico5h.png");
}
.service-car:nth-child(6):hover .service-icon img {
content: url("img/icons/ico6h.png");
}

/* Tooltip burbuja blanca*/
.tooltip {
  visibility: hidden;
  opacity: 0;
  width: 90%;
  background: #b77256;
  color: #fff;
  text-align: center;
  padding: 20px 14px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  transition: all 0.3s ease;
  font-size: 0.9rem;
  line-height: 1.3;
  z-index: 10;
}

/* Flecha */
.tooltip::after {
  content: "";
  position: absolute;
  bottom: 3px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
}

/* Mostrar al hover */
.tooltip-container:hover .tooltip {
  visibility: visible;
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  animation: float 1.5s ease-in-out infinite alternate;
}

/* Animación flotante */
@keyframes float {
  from { transform: translateX(-50%) translateY(0); }
  to { transform: translateX(-50%) translateY(-6px); }
}



/* About Section */
.about {
  background: #8b9d8b;
  color: white;
  padding: 2rem 4rem;
}

.about-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.about h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: center;
}

.about-image {
  width: 100%;
  background: #ddd;
  border-radius: 10px;
margin-bottom: 2rem;
}


.about-text h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.values-inner h5 {
  font-size: 1.2rem;
  color: #c17c5f;
  text-transform: uppercase;
}
.values-inner p {
  margin-bottom: 1rem;

}
.about-text p {
  margin-bottom: 1rem;
  line-height: 1.8;
}

.about-text strong {
  font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
  .about {

    padding: 2rem 2rem;
  }

  .about-content {
    display: grid;
    gap: 1.5rem;
    align-items: center;
  }

  .about-image {
    width: 100%;
    background: #ddd;
    border-radius: 10px;
  margin-bottom: 0rem;
  }
}

@media (max-width: 480px) {
  .about {

    padding: 2rem 2rem;
  }

  .about-content {
    display: grid;
    gap: 1.5rem;
    align-items: center;
  }

  .about-image {
    width: 100%;
    background: #ddd;
    border-radius: 10px;
  margin-bottom: 0rem;
  }

}

.btn-link {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.8rem 2rem;
  background: transparent;
  border: 2px solid white;
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: bold;
  transition: all 0.3s;
}

.btn-link:hover {
  background: white;
  color: #8b9d8b;
}

/* Clients Section */
.clients {
  background: #d6d2ca;
  padding: 2rem 4rem;
}

.clients-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.clients h3 {
  font-size: 2rem;
  color: #c17c5f;
  margin-bottom: 1rem;
  text-transform: uppercase;
}
/* Responsive */
@media (max-width: 768px) {
  .clients {
text-align: center;  }
}

@media (max-width: 480px) {
  .clients {
    text-align: center;
  }

}


/* Slider container */
.slider {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 240px;
}

/* Track (la cinta que se mueve) */
.slide-track {
  display: flex;
  width: calc(250px * 10); /* cantidad de slides * ancho */
  animation: scroll 30s linear infinite;
}

/* Slide individual */
.slide {
  width: 250px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide img {
  width: 150px;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.slide img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
  cursor: pointer;
}

/* Animación de desplazamiento infinito */
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Pausar al hover */
.slider:hover .slide-track {
  animation-play-state: paused;
}

/* Responsive */
@media (max-width: 768px) {
  .slide {
    width: 180px;
  }

  .slide img {
    width: 120px;
  }
}

@media (max-width: 480px) {
  .slide {
    width: 140px;
  }

  .slide img {
    width: 100px;
  }
}



/* Footer */
footer {
  background: #c17c5f;
  color: white;
  padding: 3rem 2rem 2rem 2rem;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 0rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.footer-logo-img {
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 50%;
}

.footer-logo-text h4 {
  font-size: 1.2rem;
}

.footer-logo-text p {
  font-size: 0.7rem;
  text-transform: uppercase;
}

.social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-icon {
  width: 35px;
  height: 35px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.social-icon:hover {
  background: #778d7a;
  cursor: pointer;
}

.footer-section h4 {
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: bold;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.8rem;
}

.footer-section a {
  color: white;
  text-decoration: none;
  transition: opacity 0.3s;
}

.footer-section a:hover {
  opacity: 0.7;
}

.subscribe-form {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.subscribe-form input {
  flex: 1;
  padding: 0.8rem;
  border: none;
  border-radius: 5px;
  color: #000;
}

.subscribe-form button {
  padding: 0.8rem 1.5rem;
  background: #8b9d8b;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
}

.subscribe-form button:hover {
  background: #7a8c7a;
}

/* Responsive */
@media (max-width: 768px) {
  nav {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: white;
      flex-direction: column;
      padding: 1rem;
      box-shadow: 0 5px 10px rgba(0,0,0,0.1);
  }
    .main-content {
  background: #8b9d8b;
  color: white;
  padding: 2rem 2rem;
text-align: center;
}
.services h3 {
  
  color: #c17c5f;
  font-size: 2rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
text-align: center;
}
  nav.active {
      display: flex;
  }
    .clients h3 {
  font-size: 2rem;
  color: #c17c5f;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
text-align: center;}

  .menu-toggle {
      display: flex;
  }

  .hero h2 {
      font-size: 1.8rem;
  }

  .about-content {
      grid-template-columns: 1fr;
  }

  .services-grid {
      grid-template-columns: 1fr;
justify-items: center;


  }

  .footer-content {
      grid-template-columns: 1fr;
justify-items: center;

  }
      .footer-section{
  text-align: center;
}
.footer-section h4 {
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
font-weight: bold;
margin-top: 2rem;
}
.about h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
text-align: center;
}
.about-text h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
text-align: center;

}

.about-text p {
  margin-bottom: 1rem;
  line-height: 1.8;
text-align: center;
}
.about-text  {

text-align: center;
}
.social-icons {
  display: flex;
  gap: 1rem;
  
}
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 1rem;
}
.info-list-service {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin: 0 auto;
  padding-top: 3rem;
}

/* Contenedor general */
.info-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-radius: 20px;
  padding: 10px;
  gap: 40px;
}

/* Colores alternados */
.color1 {
  background-color: #ffffff; /* verde muy claro */
}

.color2 {
  background-color: #f2ede2; /* azul muy claro */
}

/* Imagen */
.info-image {
  flex: 0 0 10%;
}

.info-image img {
  width: 100%;
  max-width: 100px;
  object-fit: cover;
}





/* Texto */
.info-text {
  flex: 1;
}

.info-text h4 {
  font-size: 1.6rem;
  color: #778d7a;
  margin-bottom: 10px;
}

.info-text p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
}

/* Responsive */
@media (max-width: 768px) {
  .info-item {
    flex-direction: column;
    text-align: center;
    display: flex;
    align-items: center;
    border-radius: 20px;
    padding: 10px;
    gap: 0px;
  }

  .info-image img {
    width: 100%;
    max-width: 100px;
    object-fit: cover;
  }

  .info-image img {
    max-width: 100%;
  }
	
}
@media (max-width: 480px) {
  .info-item {
    flex-direction: column;
    text-align: center;
    display: flex;
    align-items: center;
    border-radius: 20px;
    padding: 10px;
    gap: 0px;
  }

  .info-image {
    flex: 0;
  }

  .info-image img {
    max-width: 100%;
  }
	
}
/* ============================================
   FORMULARIO DE CONTACTO AGI
   Agregar antes del footer en tu CSS
   ============================================ */

/* Secci�n del formulario de contacto */
.contact-form-section {
    background: #788d7b;
    padding: 80px 20px;
    margin: 0;
}

.contact-form-container {
    max-width: 900px;
    margin: 0 auto;
}

.contact-form-section h2 {
    color: white;
    font-size: 2.5em;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    text-align: center;
}

.contact-form-section .subtitle {
    color: white;
    font-size: 1.1em;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 300;
    line-height: 1.6;
}

.agi-contact-form {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    padding: 50px 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

.form-field {
    display: flex;
    flex-direction: column;
}

.form-field.full-width {
    grid-column: 1 / -1;
}

.form-field label {
    color: white;
    font-size: 0.9em;
    font-weight: 500;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.form-field input,
.form-field textarea,
.form-field select {
    padding: 14px 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    font-size: 1em;
    font-family: inherit;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    transition: all 0.3s ease;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
    outline: none;
    border-color: white;
    background: white;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
}

.form-field textarea {
    resize: vertical;
    min-height: 150px;
    font-family: inherit;
}

.form-field select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

.submit-button {
    background: #3d3d3d;
    color: white;
    border: 2px solid #3d3d3d;
    padding: 16px 50px;
    font-size: 1em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 15px;
    display: inline-block;
}

.submit-button:hover {
    background: transparent;
    color: white;
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.submit-button:active {
    transform: translateY(0);
}

/* Responsive - Tablets y m�viles */
@media (max-width: 768px) {
    .contact-form-section {
        padding: 60px 20px;
    }

    .contact-form-section h2 {
        font-size: 1.8em;
    }

    .agi-contact-form {
        padding: 35px 25px;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .submit-button {
        width: 100%;
        padding: 16px 30px;
    }

}

.btn-whatsapp {
  background-color: #25D366;
  color: #fff;
  padding: 12px 20px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
}
.btn-whatsapp:hover {
  background-color: #1ebc57;
}