@import url("../vendor/twbs/bootstrap/dist/css/bootstrap.min.css");

/*
  --primary-btn-color: #c4d526;
  --primary-btn-color-hover: #8f9c19;
*/

:root {
  --primary-color: #c4d526;
  --primary-btn-color: #1d48bd;
  --primary-btn-color-hover: #122a6b;
  --dark-bg: #2c2c2c;
  --light-bg: #f8f9fa;
  --text-dark: #333;
  --text-light: #666;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  padding-top: 76px;
}

.representantes-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%; /* hace que todos tengan la misma altura */
  padding: 20px;
}

.image-container {
  width: 200px; /* mismo ancho para todos */
  height: 120px; /* mismo alto para todos los logos */
  margin: 0 auto 20px auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-container img {
  max-width: 100%;
  max-height: 100%; /* limita la altura dentro del contenedor */
  object-fit: contain; /* mantiene proporciones sin deformar */
}

/* Hero Section */
.hero-section {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("../resources/imagenes/Nuevas/home.jpg") center / cover;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: white;
  padding-left: 5%;
}

.hero-section-clientes {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("../resources/imagenes/Nuevas/clientes.jpg") center / cover;
  min-height: 30vh;
  padding: 30px;
  display: flex;
  align-items: center;
  color: white;
}

.hero-section-contacto {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("../resources/imagenes/Nuevas/contacto.jpg") center / cover;
  min-height: 30vh;
  padding: 30px;
  display: flex;
  align-items: center;
  color: white;
}

.hero-section-demo {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("../resources/imagenes/Nuevas/demo.jpg") center / cover;
  min-height: 30vh;
  padding: 30px;
  display: flex;
  align-items: center;
  color: white;
}

.hero-section-nosotros {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("../resources/imagenes/Nuevas/nosotros.jpg") center / cover;
  min-height: 30vh;
  padding: 30px;
  display: flex;
  align-items: center;
  color: white;
}

.hero-section-productos {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("../resources/imagenes/Nuevas/producto.jpg") center / cover;
  min-height: 30vh;
  padding: 30px;
  display: flex;
  align-items: center;
  color: white;
}

.hero-section-soporte {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("../resources/imagenes/Nuevas/soporte.jpg") center / cover;
  min-height: 30vh;
  padding: 30px;
  display: flex;
  align-items: center;
  color: white;
}

.hero-section.contact-hero {
  min-height: 50vh;
}

.hero-title {
  font-size: 3em;
  font-weight: bold;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-buttons .btn {
  margin: 0.5rem;
  padding: 12px 30px;
  font-size: 1.1rem;
}

/* Content Section */
.content-section {
  background: var(--light-bg);
}

.info-card {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
  text-align: center;
}

.info-card h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.product-image {
  margin-top: 1.5rem;
}

/* Product Showcase */
.product-showcase {
  text-align: center;
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Features Grid */
.feature-card {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  height: 100%;
}

.feature-card h4 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

/* Clients Grid */
.clients-info {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  height: fit-content;
}

.clients-grid {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  border: 1px solid #eee;
  border-radius: 8px;
  height: 100px;
  background: #fafafa;
  transition: all 0.3s ease;
}

.client-logo:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.client-logo img {
  max-height: 60px;
  max-width: 100%;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.client-logo:hover img {
  opacity: 1;
}

/* Video Section */
.video-container {
  position: relative;
  background: #000;
  border-radius: 10px;
  overflow: hidden;
}

.video-placeholder {
  background: var(--dark-bg);
  color: white;
  padding: 4rem 2rem;
  text-align: center;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.play-button {
  font-size: 4rem;
  margin-bottom: 1rem;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.play-button:hover {
  transform: scale(1.1);
}

/* Contact Form */
.contact-form-container {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-info {
  display: flex;
  flex-direction: column;
  align-items: left;
  text-align: left;
  justify-content: center;
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  height: fit-content;
  height: 100%;
}

.contact-item {
  margin-bottom: 1rem;
  margin-top: 1rem;
}

.contact-item h5 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.contact-item i {
  margin-right: 0.5rem;
}

.social-links .social-link {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  color: white;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  margin-right: 0.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-links .social-link:hover {
  background: var(--dark-bg);
  transform: translateY(-2px);
}

.social-link .admin-link {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  color: white;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  margin-right: 0.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-links .admin-link:hover {
  background: var(--dark-bg);
  transform: translateY(-2px);
}

.social-links-2 {
  margin-top: 5%;
  margin-bottom: 5%;
}

/* Values Section */
.value-card {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.value-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

/* Team Section */
.team-member {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Demo Section */
.feature-highlight {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.feature-highlight i {
  padding-bottom: 15px;
  font-size: 2rem;
  color: var(--primary-color);
  margin-right: 1rem;
}

.demo-info {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  height: fit-content;
}

.demo-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.demo-item i {
  color: var(--primary-color);
  margin-right: 1rem;
  margin-top: 0.2rem;
}

.demo-info-container {
  margin-top: 3%;
  font-size: 1rem;
}

.strong {
  color: rgb(14, 41, 160);
}

/* Footer */
.footer {
  background: var(--dark-bg) !important;
  border-top: 3px solid var(--primary-color);
}

/* Navbar */
.navbar-custom {
  background-image: linear-gradient(180deg, #000000, var(--dark-bg));
  border-bottom: 2px solid var(--primary-color);
  padding: 1rem 0;
}

.navbar-custom .navbar-brand img {
  width: 10vw;
}

.navbar-custom .navbar-nav .nav-link {
  color: var(--primary-color) !important;
  font-size: 1.2rem;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  transition: all 0.3s ease;
}

.navbar-custom .navbar-nav .nav-link:hover {
  color: #ffffff !important;
}

.navbar-custom .navbar-nav .nav-link.active {
  color: var(--primary-color) !important;
  background: rgba(196, 213, 38, 0.1);
  border-radius: 4px;
}

.navbar-custom .navbar-toggler {
  border-color: var(--primary-color);
}

.navbar-custom .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23c4d526' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Buttons */
.btn-primary {
  background-color: var(--primary-btn-color);
  border-color: var(--primary-btn-color-hover);
  font-weight: lighter;
  color: #000;
  font-weight: 600;
}

.btn-primary a,
.btn {
  font-size: 1rem;
  text-decoration: none;
  color: #fff;
}

.btn-primary:hover {
  background-color: var(--primary-btn-color-hover);
  border-color: var(--primary-btn-color);
  color: #000;
}

.btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: #000;
}

.whatsapp-float {
  position: fixed;
  bottom: 40px; /* Distancia desde abajo */
  right: 40px; /* Distancia desde la izquierda (cambiá a right si lo querés del otro lado) */
  z-index: 9999; /* Para que siempre quede arriba */
}

.whatsapp-float a {
  background-color: #25d366; /* Verde oficial de WhatsApp */
  color: white;
  font-size: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float a:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

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

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-buttons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .hero-buttons .btn {
    width: 80%;
    margin: 0.5rem 0;
  }

  .hero-buttons a {
    font-size: 2rem;
  }

  .clients-grid .row {
    gap: 0.5rem;
  }

  .client-logo {
    height: 80px;
  }

  .align-logo {
    align-items: center;
  }

  .center-logo {
    text-align: center;
  }

  .social-links .social-link {
    width: 30px;
    height: 30px;
    line-height: 30px;
  }

  .navbar-custom .navbar-brand img {
    padding-left: 5%;
    width: 30vw;
  }

  .footer-brand img {
    width: 30vw;
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .product-card {
    padding: 1.5rem;
  }

  .text-custom-lime a {
    color: black;
    text-decoration: none;
  }

  .text-custom-lime a:hover {
    color: var(--primary-color);
    font-weight: bold;
  }

  .productos-h2 {

    text-align: center;
    padding: 10vw;
  }

  .productos-h2 h2 {
    margin-bottom: 10%;
  }

  .demo-info-container {
    margin-top: 6%;
    font-size: 0.8rem;
  }

  .whatsapp-float a {
    font-size: 20px;
    width: 40px;
    height: 40px;
  }
  
}

/* Form Styles */
.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(196, 213, 38, 0.25);
}

.form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(196, 213, 38, 0.25);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.info-card,
.feature-card,
.value-card,
.team-member {
  animation: fadeInUp 0.6s ease-out;
}

/* PRODUCTO SECTION */

/* === PRODUCTOS GRID === */

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.product-card {
  background: white;
  height: 400px;
  border-radius: 40px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 4px solid transparent;
  position: relative;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.product-card.featured {
  border-color: var(--custom-lime);
  background: linear-gradient(135deg, #ffffff 0%, #f8fff8 100%);
}

.product-badge {
  position: absolute;
  top: -10px;
  right: 15px;
  background: var(--custom-lime);
  color: #333;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(196, 213, 38, 0.3);
}

.product-card img {
  width: 120px;
  height: auto;
  margin-bottom: 1.5rem;
}

.product-card h4 {
  color: #333;
  margin-bottom: 0.5rem;
  font-size: 1.4rem;
}

.product-card .product-type {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.coming-soon-card {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border: 2px dashed #dee2e6;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}

.coming-soon-card:hover {
  transform: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.botones-soporte {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
