@charset "UTF-8";
/* =============================================== */
/* ===== ESTILOS GLOBALES (Para todo el sitio) ===== */
/* =============================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  font-family: "Lato", sans-serif;
  background-color: #f5f5f5;
  color: #111;
  line-height: 1.6;
}

.container {
  max-width: 1400px;
  margin: auto;
  padding: 1rem 2rem 2rem;
}

/* --- NAVBAR (Global) --- */
.navbar {
  background-color: #000;
  color: white;
  border-bottom: 1px solid #ddd;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
  padding: 0;
}
.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.25rem 1.5rem;
  flex-wrap: wrap;
}
.navbar a,
.navbar .nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
}
.navbar .nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}
.navbar .nav-links a:hover {
  color: #71a5e2;
}
.navbar .logo,
.navbar img.logo {
  height: 100px;
  max-width: 240px;
  width: auto;
  display: inline-block;
  background-color: black;
  padding: 0.25rem;
  border-radius: 1px;
}
.navbar .mobile-menu-button {
  display: none;
}

/* --- FOOTER (Global) --- */
.footer-modern {
  position: relative;
  background-color: #000000;
  color: white;
  text-align: center;
  padding: 2rem 1rem 1rem;
  font-family: "Lato", sans-serif;
  overflow: hidden;
}
.footer-modern .footer-content {
  position: relative;
  z-index: 2;
}
.footer-modern .social-icons {
  margin-bottom: 1rem;
}
.footer-modern .social-icons a img {
  width: 28px;
  margin: 0 0.4rem;
  transition: transform 0.2s ease;
}
.footer-modern .social-icons a:hover img {
  transform: scale(1.2);
}
.footer-modern .footer-nav {
  margin-bottom: 0.8rem;
}
.footer-modern .footer-nav a {
  color: white;
  margin: 0 0.8rem;
  font-size: 0.9rem;
  text-decoration: none;
}
.footer-modern .footer-nav a:hover {
  text-decoration: underline;
}
.footer-modern .copyright {
  font-size: 0.75rem;
  color: #888;
  margin-top: 1rem;
}

.services {
  background-color: white;
  padding: 1rem 2rem;
}
.services h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
  color: #0a1f44;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  justify-content: center;
}

.service-card {
  background-color: #f0f4f8;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}
.service-card p {
  font-size: 1.05rem;
  color: #333;
  line-height: 1.5;
}
.service-card h3 {
  margin-bottom: 0.75rem;
  color: #003366;
}

.service-icon {
  display: block;
  margin: 0 auto 1rem;
  max-width: 250px;
  height: 250px;
}

/* =============================================== */
/* ===== ESTILOS "index.html"                  ===== */
/* =============================================== */
.page-index .hero-wrapper {
  display: flex;
  width: 100%;
  overflow: hidden;
  position: relative;
  margin: 0;
  margin-top: 1rem;
  padding: 0;
}
.page-index .hero-center-img {
  margin: 0 0.1rem;
}
.page-index .hero-side-img,
.page-index .hero-center-img {
  flex: 0 0 33.3333%;
  position: relative;
  overflow: hidden;
}
.page-index .hero-side-img img,
.page-index .hero-center-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  margin: 0;
  padding: 0;
}
.page-index .hero-center-img .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.35);
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  padding: 2rem;
  z-index: 1;
}
.page-index .hero-center-img .hero-content {
  z-index: 2;
  pointer-events: auto;
  text-align: center;
  color: white;
  max-width: 90%;
}
.page-index .hero-center-img .hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.page-index .hero-center-img .hero-content p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}
.page-index .hero-center-img .hero-content .cta-buttons a {
  margin: 0 0.5rem;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
}
.page-index .hero-center-img .hero-content .btn-primary {
  background-color: #009fe3;
  color: white;
  border: 2px solid white;
}
.page-index .hero-center-img .hero-content .btn-secondary {
  background-color: white;
  color: #009fe3;
  border: 2px solid #009fe3;
}

/* =============================================== */
/* ===== ESTILOS "nosotros.html"               ===== */
/* =============================================== */
.page-nosotros .about-hero-split {
  display: flex;
  align-items: center;
  background-color: white;
  min-height: 70vh;
}
.page-nosotros .about-hero-content {
  flex: 2;
  padding: 5rem;
  background-color: #0a1f44;
  color: white;
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.page-nosotros .about-hero-content .hero-decorator {
  width: 100px;
  height: 5px;
  background-color: #009fe3;
  border: none;
  margin-bottom: 2.5rem;
}
.page-nosotros .about-hero-content h1 {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.page-nosotros .about-hero-content .subtitle {
  font-size: 1.1rem;
  color: #ccc;
  line-height: 1.7;
  max-width: 90%;
  margin-bottom: 3rem;
}
.page-nosotros .about-hero-content .hero-cta-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border: 2px solid #009fe3;
  color: white;
  text-decoration: none;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.3s ease;
  align-self: flex-start;
}
.page-nosotros .about-hero-content .hero-cta-button:hover {
  background-color: #009fe3;
  color: white;
}
.page-nosotros .about-hero-image {
  flex: 4;
  height: 70vh;
}
.page-nosotros .about-hero-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.page-nosotros .values-section {
  padding: 4rem 0;
  background-color: white;
}
.page-nosotros .values-section h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2rem;
  color: #0a1f44;
}
.page-nosotros .methodology-section {
  background-color: #f5f5f5;
  padding: 4rem 0;
  text-align: center;
}
.page-nosotros .methodology-section h2 {
  color: #0a1f44;
  font-size: 2rem;
  margin-bottom: 1rem;
}
.page-nosotros .methodology-section .section-intro {
  max-width: 800px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
  color: #333;
}
.page-nosotros .methodology-section .methodology-steps {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.page-nosotros .methodology-section .step {
  background-color: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
  flex-basis: 320px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.page-nosotros .methodology-section .step h4 {
  color: #003366;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}
.page-nosotros .methodology-section .card-image-container {
  height: 220px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.page-nosotros .methodology-section .methodology-image {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.page-nosotros .team-section {
  padding: 4rem 0;
  background-color: white;
}
.page-nosotros .team-section h2 {
  text-align: center;
  color: #0a1f44;
  font-size: 2rem;
  margin-bottom: 3rem;
}
.page-nosotros .team-section .team-members {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  align-items: flex-start;
}
.page-nosotros .team-section .team-member {
  text-align: center;
  max-width: 250px;
}
.page-nosotros .team-section .team-member img {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 1rem;
  border: 4px solid #f0f4f8;
}
.page-nosotros .team-section .team-member h3 {
  color: #003366;
  margin-bottom: 0.25rem;
}
.page-nosotros .team-section .team-member p {
  color: #555;
  font-size: 0.95rem;
}
.page-nosotros .team-section .team-member-overlap {
  position: relative;
  z-index: 10;
  margin-top: -80px;
  background-color: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.1);
}
.page-nosotros .team-section .team-member-overlap img {
  border: 6px solid #009fe3;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}
.page-nosotros .team-section .container .team-members {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.page-nosotros .team-section .container .team-members .team-member {
  box-sizing: border-box;
  flex: 0 0 calc((100% - 60px) / 4);
  max-width: calc((100% - 60px) / 4);
}
.page-nosotros .team-section .container .team-members .team-member:nth-child(1), .page-nosotros .team-section .container .team-members .team-member:nth-child(2), .page-nosotros .team-section .container .team-members .team-member:nth-child(3) {
  flex: 0 0 calc((100% - 40px) / 3);
  max-width: calc((100% - 40px) / 3);
}
@media (max-width: 1200px) {
  .page-nosotros .team-section .container .team-members .team-member {
    flex: 0 0 calc((100% - 40px) / 3);
    max-width: calc((100% - 40px) / 3);
  }
}
@media (max-width: 992px) {
  .page-nosotros .team-section .container .team-members .team-member {
    flex: 0 0 calc((100% - 20px) / 2);
    max-width: calc((100% - 20px) / 2);
  }
}
@media (max-width: 768px) {
  .page-nosotros .team-section .container .team-members .team-member {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.page-nosotros .ceo-message-section {
  position: relative;
  padding: 4rem 0;
}
.page-nosotros .ceo-message-section .ceo-message-wrapper {
  display: flex;
  align-items: center;
  gap: 3rem;
}
.page-nosotros .ceo-message-section .ceo-image-container {
  flex: 1;
  position: relative;
  z-index: 5;
  margin-top: -120px;
  margin-bottom: 0;
}
.page-nosotros .ceo-message-section .ceo-image-container .ceo-photo {
  width: 100%;
  max-width: 450px;
  display: block;
  -webkit-mask-image: linear-gradient(to right, black 75%, transparent 100%);
          mask-image: linear-gradient(to right, black 75%, transparent 100%);
}
.page-nosotros .ceo-message-section .ceo-text-container {
  flex: 1;
  background-color: #eaf4ff;
  padding: 3rem;
  border-radius: 8px;
}
.page-nosotros .ceo-message-section .ceo-text-container h2 {
  color: #0a1f44;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}
.page-nosotros .ceo-message-section .ceo-text-container p {
  color: #334e68;
  margin-bottom: 1rem;
  line-height: 1.7;
}
.page-nosotros .ceo-message-section .signature {
  margin-top: 2rem;
  font-style: italic;
  color: #0a1f44;
}
.page-nosotros .ceo-message-section .signature .name {
  display: block;
  font-weight: 700;
}
.page-nosotros .ceo-message-section .signature .title {
  font-size: 0.9rem;
  color: #555;
}
.page-nosotros .partner-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.page-nosotros .partner-column .signature {
  margin-top: 1.5rem;
}

/* =============================================== */
/* ===== RESPONSIVE GLOBALES Y ESPECÍFICOS ===== */
/* =============================================== */
@media (max-width: 900px) {
  .navbar .logo,
  .navbar img.logo {
    height: 60px;
    max-width: 160px;
  }
  .navbar .mobile-menu-button {
    display: block;
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    color: #fff;
  }
  .navbar .nav-links {
    display: none;
    flex-direction: column;
    background-color: white;
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 1rem;
  }
  .navbar .nav-links.active {
    display: flex;
  }
  .navbar .nav-links a {
    color: #111;
  }
  .navbar .nav-links li {
    margin: 0.5rem 0;
  }
  .page-index .hero-wrapper {
    flex-direction: column;
    height: auto;
  }
  .page-index .hero-side-img {
    display: none;
  }
  .page-index .hero-center-img {
    width: 100%;
    height: 240px;
  }
  .page-index .hero-center-img h1 {
    font-size: 1.6rem;
  }
  .page-index .hero-center-img p {
    font-size: 1rem;
  }
  .page-index .hero-center-img .cta-buttons a {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
  .page-nosotros .ceo-message-section {
    padding-top: 0;
  }
  .page-nosotros .ceo-message-section .ceo-message-wrapper {
    flex-direction: column;
  }
  .page-nosotros .ceo-message-section .ceo-image-container {
    margin-top: -80px;
    margin-bottom: 0;
    max-width: 70%;
    align-self: center;
  }
  .page-nosotros .ceo-message-section .ceo-image-container .ceo-photo {
    -webkit-mask-image: none;
            mask-image: none;
  }
  .page-nosotros .ceo-message-section .ceo-text-container {
    margin-top: -50px;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .page-nosotros .about-hero h1 {
    font-size: 2rem;
  }
  .page-nosotros .methodology-section .card-image-container {
    height: auto;
    max-height: 200px;
  }
}
/* =============================================== */
/* ===== ESTILOS "servicios.html"              ===== */
/* =============================================== */
.page-servicios .services-hero {
  display: flex;
  align-items: center;
  background-color: white;
  min-height: 70vh;
}
.page-servicios .services-hero-content {
  flex: 2;
  padding: 5rem;
  background-color: #25282a;
  color: white;
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.page-servicios .services-hero-content .hero-decorator {
  width: 100px;
  height: 5px;
  background-color: #009fe3;
  border: none;
  margin-bottom: 2.5rem;
}
.page-servicios .services-hero-content h1 {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.page-servicios .services-hero-content .subtitle {
  font-size: 1.1rem;
  color: #ccc;
  line-height: 1.7;
  max-width: 90%;
}
.page-servicios .services-hero-image {
  flex: 3;
  height: 70vh;
}
.page-servicios .services-hero-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.page-servicios .main-services-section {
  background-color: #f8f9fa;
  padding: 4rem 0 5rem;
}
.page-servicios .main-services-section h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2rem;
  color: #0a1f44;
}
.page-servicios .expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.page-servicios .expertise-card {
  background-color: white;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid #e9ecef;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.page-servicios .expertise-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border-color: #25282a; /* #009fe3 */
}
.page-servicios .expertise-card .expertise-card-image {
  width: 100%;
  aspect-ratio: 5/4;
  overflow: hidden;
}
.page-servicios .expertise-card .expertise-card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s ease;
}
.page-servicios .expertise-card:hover .expertise-card-image img {
  transform: scale(1.05);
}
.page-servicios .expertise-card .expertise-card-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.page-servicios .expertise-card .expertise-card-content h3 {
  color: #0a1f44;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  line-height: 1.3;
  position: relative;
  padding-right: 20px;
}
.page-servicios .expertise-card .expertise-card-content h3::after {
  content: "→";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #009fe3;
  font-weight: bold;
  opacity: 0;
  transition: opacity 0.3s ease, right 0.3s ease;
}
.page-servicios .expertise-card .expertise-card-content p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
}
.page-servicios .expertise-card:hover .expertise-card-content h3::after {
  opacity: 1;
  right: 0;
}
.page-servicios .additional-services {
  background-color: white;
  padding: 5rem 0;
}
.page-servicios .additional-services h2 {
  text-align: center;
  color: #0a1f44;
  font-size: 2rem;
  margin-bottom: 3rem;
}
.page-servicios .additional-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.page-servicios .additional-service {
  background-color: #f8f9fa;
  padding: 2rem;
  border-radius: 8px;
  border-left: 4px solid #009fe3;
  transition: transform 0.3s ease, box-shadow 0.2s ease;
}
.page-servicios .additional-service:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}
.page-servicios .additional-service h4 {
  color: #0a1f44;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.page-servicios .additional-service p {
  color: #555;
  line-height: 1.6;
  font-size: 0.95rem;
}
.page-servicios .services-cta {
  background-color: #0a1f44;
  color: white;
  padding: 4rem 0;
  text-align: center;
}
.page-servicios .services-cta .cta-content {
  max-width: 700px;
  margin: 0 auto;
}
.page-servicios .services-cta h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}
.page-servicios .services-cta p {
  color: #ccc;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}
.page-servicios .services-cta .cta-buttons a {
  margin: 0 0.5rem;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}
.page-servicios .services-cta .btn-primary {
  background-color: #009fe3;
  color: white;
  border: 2px solid #009fe3;
}
.page-servicios .services-cta .btn-primary:hover {
  background-color: #007bb8;
  border-color: #007bb8;
}
.page-servicios .services-cta .btn-secondary {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}
.page-servicios .services-cta .btn-secondary:hover {
  background-color: white;
  color: #0a1f44;
}

/* =============================================== */
/* ===== RESPONSIVE PARA SERVICIOS             ===== */
/* =============================================== */
@media (max-width: 900px) {
  .page-servicios .services-hero {
    flex-direction: column-reverse;
    min-height: auto;
  }
  .page-servicios .services-hero-image {
    height: 40vh;
    width: 100%;
  }
  .page-servicios .services-hero-content {
    min-height: auto;
    padding: 3rem 2rem;
  }
  .page-servicios .services-hero-content h1 {
    font-size: 2.2rem;
  }
  .page-servicios .main-services-section {
    padding: 3rem 0;
  }
  .page-servicios .services-cta .cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  .page-servicios .services-cta .cta-buttons a {
    width: 100%;
    max-width: 300px;
  }
}
@media (max-width: 768px) {
  .page-servicios .services-hero-content {
    padding: 2.5rem 1.5rem;
  }
  .page-servicios .services-hero-content h1 {
    font-size: 2rem;
  }
  .page-servicios .services-hero-content .subtitle {
    font-size: 1rem;
  }
  .page-servicios .main-services-section h2,
  .page-servicios .additional-services h2 {
    font-size: 1.8rem;
  }
  .page-servicios .additional-services {
    padding: 3rem 0;
  }
  .page-servicios .services-cta {
    padding: 3rem 1.5rem;
  }
  .page-servicios .services-cta h2 {
    font-size: 1.8rem;
  }
  .page-servicios .services-cta p {
    font-size: 1rem;
  }
}
/* =============================================== */
/* ===== ESTILOS "industrias.html"             ===== */
/* =============================================== */
.page-industrias .industrias-hero {
  display: flex;
  align-items: stretch; /* Force all columns to same height */
  background-color: white;
  min-height: 60vh; /* Set container height */
  /* Override just for left column */
}
.page-industrias .industrias-hero .hero-left-column,
.page-industrias .industrias-hero .hero-right-column {
  flex: 1; /* Each text column takes 1 part */
  padding: 5rem;
  background-color: #000;
  color: white;
  /* Remove min-height from individual columns */
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.page-industrias .industrias-hero .hero-left-column .text-content,
.page-industrias .industrias-hero .hero-right-column .text-content {
  padding: 0; /* Remove extra padding since flex container handles it */
}
.page-industrias .industrias-hero .hero-left-column h2,
.page-industrias .industrias-hero .hero-right-column h2 {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.page-industrias .industrias-hero .hero-left-column p,
.page-industrias .industrias-hero .hero-right-column p {
  font-size: 1.1rem;
  color: #ccc;
  line-height: 1.7;
  max-width: 90%;
}
.page-industrias .industrias-hero .hero-left-column {
  color: #00bfff; /* Apply cyan blue only to left column */
}
.page-industrias .industrias-hero .hero-left-column h2 {
  color: #00bfff; /* Ensure heading is also cyan */
}
.page-industrias .industrias-hero .hero-center-column {
  flex: 0.75; /* Center image takes 3 parts (larger than text columns) */
  /* Remove min-height from center column */
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-industrias .industrias-hero .hero-center-column img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.page-industrias .industry-grid-section {
  background-color: #f5f5f5;
  padding: 4rem 0;
}
.page-industrias .industry-grid-section h2 {
  text-align: center;
  margin-bottom: 3rem;
  color: #0a1f44;
  font-size: 2rem;
}
.page-industrias .industry-grid-section .industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.page-industrias .industry-grid-section .industry-group {
  margin-bottom: 3rem;
}
.page-industrias .industry-grid-section .industry-group h3 {
  font-size: 1.5rem;
  color: #0a1f44;
  border-bottom: 2px solid #009fe3;
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
}
.page-industrias .industry-grid-section .industry-card {
  background-color: white;
  text-decoration: none;
  color: inherit;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.page-industrias .industry-grid-section .industry-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.page-industrias .industry-grid-section .industry-card .card-image-container {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.page-industrias .industry-grid-section .industry-card .card-image-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s ease;
}
.page-industrias .industry-grid-section .industry-card:hover .card-image-container img {
  transform: scale(1.05);
}
.page-industrias .industry-grid-section .industry-card .card-content {
  padding: 1.5rem;
  flex-grow: 1;
}
.page-industrias .industry-grid-section .industry-card .card-content h3 {
  color: #0a1f44;
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}
.page-industrias .industry-grid-section .industry-card .card-content p {
  color: #555;
  line-height: 1.5;
}
.page-industrias .case-studies-section {
  background-color: white;
  padding: 5rem 0;
}
.page-industrias .case-studies-section h2 {
  text-align: center;
  margin-bottom: 3rem;
  color: #0a1f44;
  font-size: 2rem;
}
.page-industrias .case-studies-section .case-study-split {
  display: flex;
  align-items: center;
  background-color: #f8f9fa;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}
.page-industrias .case-studies-section .case-study-image {
  flex: 1;
  min-height: 400px;
}
.page-industrias .case-studies-section .case-study-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-industrias .case-studies-section .case-study-content {
  flex: 1;
  padding: 2rem 3rem;
}
.page-industrias .case-studies-section .case-study-content .industry-tag {
  display: inline-block;
  background-color: #0a1f44;
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.page-industrias .case-studies-section .case-study-content h3 {
  font-size: 1.8rem;
  color: #0a1f44;
  margin-bottom: 1rem;
}
.page-industrias .case-studies-section .case-study-content p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.page-industrias .case-studies-section .case-study-content p b {
  color: #0a1f44;
}
.page-industrias .case-studies-section .case-study-content .btn-secondary {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  background-color: transparent;
  color: #0a1f44;
  border: 2px solid #0a1f44;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}
.page-industrias .case-studies-section .case-study-content .btn-secondary:hover {
  background-color: #0a1f44;
  color: white;
}

/* Responsive behavior similar to servicios */
@media (max-width: 900px) {
  .page-industrias .industrias-hero {
    flex-direction: column;
    min-height: auto;
  }
  .page-industrias .industrias-hero .hero-center-column {
    order: 1; /* Image first on mobile */
    height: 40vh;
    width: 100%;
  }
  .page-industrias .industrias-hero .hero-left-column,
  .page-industrias .industrias-hero .hero-right-column {
    order: 2;
    min-height: auto;
    padding: 3rem 2rem;
  }
  .page-industrias .industrias-hero .hero-left-column h2,
  .page-industrias .industrias-hero .hero-right-column h2 {
    font-size: 2.2rem;
  }
  .page-industrias .case-studies-section {
    padding: 3rem 0;
  }
  .page-industrias .case-study-split {
    flex-direction: column;
  }
  .page-industrias .case-study-image {
    min-height: 250px;
    width: 100%;
  }
  .page-industrias .case-study-content {
    padding: 2rem 1.5rem;
  }
}
@media (max-width: 768px) {
  .page-industrias .industrias-hero .hero-left-column,
  .page-industrias .industrias-hero .hero-right-column {
    padding: 2.5rem 1.5rem;
  }
  .page-industrias .industrias-hero .hero-left-column h2,
  .page-industrias .industrias-hero .hero-right-column h2 {
    font-size: 2rem;
  }
  .page-industrias .industrias-hero .hero-left-column p,
  .page-industrias .industrias-hero .hero-right-column p {
    font-size: 1rem;
  }
  .page-industrias .industry-grid-section h2,
  .page-industrias .case-studies-section h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
}
/* =============================================== */
/* ===== ESTILOS "contacto.html"             ===== */
/* =============================================== */
.page-contacto .contact-hero {
  background-color: #0a1f44;
  color: white;
  text-align: center;
  padding: 4rem 2rem;
}
.page-contacto .contact-hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.page-contacto .contact-hero p {
  font-size: 1.1rem;
  color: #ccc;
  max-width: 800px;
  margin: 0 auto;
}
.page-contacto .contact-main-section {
  background-color: #f5f5f5;
  padding: 4rem 0;
}
.page-contacto .contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 3rem;
  background-color: white;
  padding: 3rem;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.07);
}
.page-contacto .contact-info h3,
.page-contacto .contact-form-container h3 {
  font-size: 1.8rem;
  color: #0a1f44;
  margin-bottom: 1.5rem;
}
.page-contacto .contact-info p {
  color: #555;
  margin-bottom: 2rem;
}
.page-contacto .contact-details {
  list-style: none;
  padding: 0;
  margin: 0;
}
.page-contacto .contact-details li {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  font-size: 1rem;
  color: #333;
}
.page-contacto .contact-details .contact-icon {
  width: 24px;
  height: 24px;
  margin-right: 1rem;
}
.page-contacto .contact-map {
  margin-top: 2rem;
  border-radius: 8px;
  overflow: hidden;
  height: 250px;
  background-color: #e9ecef;
}
.page-contacto .contact-map img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-contacto #lscontact_form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.page-contacto .form-row {
  display: flex;
  gap: 1.25rem;
}
.page-contacto .form-field {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.page-contacto .form-field label {
  margin-bottom: 0.5rem;
  font-weight: 700;
  color: #333;
  font-size: 0.9rem;
}
.page-contacto .form-field input[type=text],
.page-contacto .form-field input[type=email],
.page-contacto .form-field input[type=tel],
.page-contacto .form-field textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  font-family: "Lato", sans-serif;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.page-contacto .form-field input[type=text]:focus,
.page-contacto .form-field input[type=email]:focus,
.page-contacto .form-field input[type=tel]:focus,
.page-contacto .form-field textarea:focus {
  outline: none;
  border-color: #009fe3;
  box-shadow: 0 0 0 3px rgba(0, 159, 227, 0.2);
}
.page-contacto .form-field textarea {
  resize: vertical;
}
.page-contacto .form-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}
.page-contacto .btn-primary,
.page-contacto .btn-secondary {
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}
.page-contacto .btn-primary {
  background-color: #009fe3;
  color: white;
}
.page-contacto .btn-primary:hover {
  background-color: #007bb8;
}
.page-contacto .btn-secondary {
  background-color: #e9ecef;
  color: #333;
}
.page-contacto .btn-secondary:hover {
  background-color: #d8dde2;
}

/* --- RESPONSIVE PARA CONTACTO --- */
@media (max-width: 900px) {
  .page-contacto .contact-wrapper {
    grid-template-columns: 1fr;
    padding: 2rem;
  }
}
@media (max-width: 768px) {
  .page-contacto .form-row {
    flex-direction: column;
  }
  .page-contacto .contact-hero h1 {
    font-size: 2.2rem;
  }
  .page-contacto .contact-wrapper {
    padding: 1.5rem;
  }
  .page-contacto .form-actions {
    flex-direction: column;
  }
  .page-contacto .form-actions .btn-primary,
  .page-contacto .form-actions .btn-secondary {
    width: 100%;
    text-align: center;
  }
}/*# sourceMappingURL=styles.css.map */