body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  background: #f9fbff;
  color: #485563;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.header {
  background: white;
  border-bottom: 1px solid #bfdbfe;
  box-shadow: 0 2px 4px rgba(0,0,0,0.04);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

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

.logo h1 {
  font-size: 1.5rem;
  margin: 0;
}

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

.btn {
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn.primary {
  background-color: #2563eb;
  color: white;
}

.btn.primary:hover {
  background-color: #1d4ed8;
}

.btn.white {
  background: white;
  color: #1e40af;
  border: 1px solid #e0e7ff;
}

.btn.outline {
  border: 2px solid white;
  background: transparent;
  color: white;
}

.hero {
  background: linear-gradient(to right, #485563, #29323c, #485563);
  color: white;
  position: relative;
  padding: 6rem 0;
  text-align: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: black;
  opacity: 0.1;
}

.hero-content {
  position: relative;
  z-index: 10;
}

.hero-content h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero-content h2 span {
  display: block;
  color: #bfdbfe;
}

.hero-content p {
  max-width: 600px;
  margin: 0 auto 2rem;
  color: #dbeafe;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 0.25rem 0.75rem;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 0.375rem;
  margin-bottom: 1rem;
}




.footer {
  background: #29323c;
  color: white;
  padding: 3rem 0;
}
footer a {
  text-decoration: none;
}

footer img {
  display: inline-block;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-meta {
  text-align: right;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
/* En móviles más pequeños */
@media (max-width: 480px) {
  .icon {
    width: 100px;
  }
}





header, footer {
  background: #fff;
  border-bottom: 1px solid #bfdbfe;



}

header .container, footer .container {
display: flex;
justify-content: space-between;
align-items: center;
padding: 1rem 0.5rem;
}

h1, h2, h3, h4 {
margin: 0;
}

h1 {
font-size: 2rem;
color: #29323c;
}

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

header .header-actions {
display: flex;
align-items: center;
gap: 1.5rem;
}

button {
padding: .75rem 1.5rem;
border: none;
border-radius: .375rem;
cursor: pointer;
}

.btn-primary {
background: #2563eb;
color: #fff;
}

.btn-primary:hover {
background: #1e40af;
}

.btn-outline {
background: transparent;
color: #fff;
border: 1px solid #fff;
}

.btn-outline:hover {
background: #fff;
color: #2563eb;
}



.hero {
  position: relative;
  overflow: hidden;
  text-align: center;
  color: #fff;
  height: 400px;
}

.background-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
  transform: translate(-50%, -50%); /* Centra en X y Y */
  z-index: 1;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(72, 85, 99, 0.8),
    rgba(41, 50, 60, 0.8),
    rgba(72, 85, 99, 0.8)
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
}

.hero .container {
  position: relative;
  z-index: 3;
}



.badge {
display: inline-block;
padding: .25rem .75rem;
border-radius: .375rem;
background: rgba(255,255,255,.2);
color: #fff;
border: 1px solid rgba(255,255,255,.3);
}
.badge1 {
background: #bfdbfe;
color: #2563eb;
}
.badge1 {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 0.375rem;
  margin-bottom: 1rem;
}

.grid {
display: grid;
gap: 2rem;
}

.grid-3 {
grid-template-columns: repeat(3, 1fr);
}

.card {
background: #fff;
border: 1px solid #bfdbfe;
border-radius: .5rem;
transition: all .3s;
cursor: pointer;
}

.card:hover {
box-shadow: 0 10px 15px rgba(0, 0, 0, .1);
transform: translateY(-.5rem);
}

.card-header {
padding: 1rem;
text-align: center;
}

.icon-circle {
width: 4rem;
height: 4rem;
background: #29323c;
border-radius: 9999px;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 15px auto;
}

.icon-svg {
  width: 2rem;
  height: 2rem;
  stroke: white;
}

.card-content {
padding: 0 1rem 1rem;
}

.card-content ul {
list-style: none;
padding: 0;
margin: 0;
}

.card-content li {
display: flex;
align-items: start;
gap: .5rem;
margin-bottom: .5rem;
}

.center {
text-align: center;
}



.light-bg {
background: #f0f9ff;
}

footer {
background: #29323c;
color: #fff;
padding: 2rem 0.5rem;
}

footer .container {
display: flex;
justify-content: space-between;
align-items: center;
}

footer h6 {
font-weight: bold;
}

footer p {
font-size: 0.875rem;
}

.modal-backdrop {
position: fixed;
inset: 0;
background: rgba(0, 0, 0, .5);
display: none;
align-items: center;
justify-content: center;
}

.modal {
background: #fff;
border-radius: .5rem;
max-width: 600px;
width: 90%;
max-height: 90vh;
overflow-y: auto;
padding: 2rem;
position: relative;
}

.modal-close {
position: absolute;
top: 1rem;
right: 1rem;
background: none;
border: none;
font-size: 1.5rem;
cursor: pointer;
}


.services {
text-align: center;
margin-top: 5rem;
  }

.light-bg {
text-align: center;
margin-top: 5rem;
  }
.contact {
text-align: center;
margin-top: 5rem;
  }
.cta {
text-align: center;
margin-top: 5rem;
  }

.card {
text-align: center;
margin-top: 5rem;
  }
.icon-circle .center{
text-align: center;
margin-top: 2rem;
  }



.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}
.contact-section {
  background: #eff6ff;
  padding: 4rem 1rem;
}
.text-center {
  text-align: center;
  margin-bottom: 3rem;
}
.text-center h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.text-center p {
  font-size: 1.125rem;
  color: #2563eb;
}
.form-layout {
  display: flex;
  flex-direction: column;
  gap: 2rem;

}
@media (min-width: 768px) {
  .form-layout {
    flex-direction: row;
  }
}
.form-card {
  flex: 1;
  background: #fff;
  border: 1px solid #bfdbfe;
  padding: 2rem;
  border-radius: 0.5rem;
}
.form-card h4 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
.form-group {
  margin-bottom: 1.25rem;
}
.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #bfdbfe;
  border-radius: 0.375rem;
  font-size: 1rem;
  box-sizing: border-box;
}
.submit-btn {
  background-color: #2563eb;
  color: white;
  padding: 0.75rem 1.5rem;
  width: 100%;
  font-size: 1rem;
  border: none;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: .2s;
}
.submit-btn:hover {
  background-color: #1d4ed8;
}
.info-cards {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.info-card,
.info-card-highlight {
  background: white;
  border: 1px solid #bfdbfe;
  padding: 1.5rem;
  border-radius: 0.5rem;
}
.info-card {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.info-card .icon {
  width: 3rem;
  height: 3rem;
  background: #dbeafe;
  border-radius: 9999px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.info-card-highlight {
  background: #485563;
  color: white;
}
.info-card-highlight h5 {
  font-size: 1.125rem;
  margin-bottom: 1rem;
}
.info-card-highlight ul {
  padding-left: 1rem;
}
.form-response {
  margin-top: 1rem;
  font-weight: 600;
  color: #059669;
}


.why-section {
  background: linear-gradient(to right, #eff6ff, #dbeafe);
  padding: 4rem 1rem;
  text-align: center;
}

.benefits {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  list-style: none;
}

.contact-section {
  background-color: #f0f9ff;
  padding: 4rem 1rem;
}

.contact-section h3 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
}

.why-choose-images {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 2rem;
}

.image-container {
  flex: 1 1 300px;
  max-width: 300px;
  text-align: center;
}

.image-container img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  transition: transform 0.3s ease-in-out;
}

.image-container:hover img {
  transform: scale(1.02); /* Zoom leve y elegante */
}


/* Estilo para pantallas pequeñas */
@media (max-width: 768px) {
  .why-choose-images {
    flex-direction: column;
    align-items: center;
  }

  .image-container {
    max-width: 90%;
  }
}


/* Responsive: 1 columna en pantallas pequeñas */
@media (max-width: 768px) {
  .grid.grid-3 {
    grid-template-columns: 1fr;
  }

  .card {
    max-width: 100%;
    margin: 0 auto;
  }
}
