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

body {
  font-family: "Segoe UI", sans-serif;
  color: #000000;
  background-color: #f4f4f4;
  line-height: 1.6;
}

.btn {
  background-color: #0055a5;
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-decoration: none;
}
.btn:hover {
  background-color: #003b73;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}
.navbar a img {
  height: 45px;
  width: auto;
}
.navbar ul {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.navbar ul li a {
  color: #001e50;
  font-weight: 500;
  text-decoration: none;
}
.navbar ul li a:hover {
  color: #0095d9;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 768px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }
}

.elegir-vw {
  text-align: center;
  padding: 5rem 2rem;
  background: #f4f4f4;
}
.elegir-vw h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #001e50;
}
.elegir-vw h2 span {
  color: #0095d9;
}
.elegir-vw p {
  color: #444;
  margin-bottom: 2.5rem;
}
.elegir-vw .grid-3 {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.elegir-vw .grid-3 .card {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  width: 300px;
  transition: transform 0.3s;
}
.elegir-vw .grid-3 .card:hover {
  transform: translateY(-5px);
}
.elegir-vw .grid-3 .card img {
  width: 50px;
  margin-bottom: 1rem;
}
.elegir-vw .grid-3 .card h3 {
  color: #001e50;
  margin-bottom: 1rem;
}
.elegir-vw .grid-3 .card p {
  font-size: 0.95rem;
  color: #333;
}

.virtus-hero {
  background: url("../img/virtus-new.jpg") no-repeat center/cover;
  height: 100vh;
  position: relative;
}
.virtus-hero .virtus-overlay {
  background: rgba(0, 0, 0, 0.5);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.virtus-hero .virtus-overlay .virtus-content {
  text-align: center;
  color: white;
  padding: 2rem;
}
.virtus-hero .virtus-overlay .virtus-content h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.virtus-hero .virtus-overlay .virtus-content h2 span {
  color: #0095d9;
}
.virtus-hero .virtus-overlay .virtus-content p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 2rem auto;
}
.virtus-hero .virtus-overlay .virtus-content .btn {
  background-color: #0055a5;
  color: white;
  padding: 0.8rem 2rem;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s;
}
.virtus-hero .virtus-overlay .virtus-content .btn:hover {
  background-color: #003b73;
}

.modelos {
  background: #f7f7f7;
  padding: 4rem 2rem;
}
.modelos .modelos-header {
  text-align: center;
  margin-bottom: 3rem;
}
.modelos .modelos-header h1 {
  font-size: 2.8rem;
  color: #001e50;
}
.modelos .modelos-header p {
  color: #444;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 1rem auto 0;
}
.modelos .modelos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.modelos .modelo-card {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  text-align: center;
  position: relative;
  transition: transform 0.3s;
}
.modelos .modelo-card:hover {
  transform: translateY(-5px);
}
.modelos .modelo-card img {
  width: 100%;
  height: 180px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 1rem;
}
.modelos .modelo-card h3 {
  color: #003399;
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}
.modelos .modelo-card .ficha {
  list-style: none;
  padding: 0;
  margin-bottom: 1rem;
}
.modelos .modelo-card .ficha li {
  font-size: 0.95rem;
  color: #333;
  margin-bottom: 0.3rem;
}
.modelos .modelo-card .acciones {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.modelos .modelo-card .acciones .btn, .modelos .modelo-card .acciones .btn-secundario {
  padding: 0.5rem 1.2rem;
  border-radius: 25px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s;
}
.modelos .modelo-card .acciones .btn {
  background-color: #003399;
  color: white;
}
.modelos .modelo-card .acciones .btn:hover {
  background-color: #001e50;
}
.modelos .modelo-card .acciones .btn-secundario {
  background: transparent;
  border: 2px solid #003399;
  color: #003399;
}
.modelos .modelo-card .acciones .btn-secundario:hover {
  background-color: #003399;
  color: white;
}
.modelos .modelo-card .badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: #0073e6;
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: bold;
}

.contacto-pro {
  background: linear-gradient(to bottom, #f4f4f4, #e0e0e0);
  padding: 4rem 2rem;
}
.contacto-pro .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .contacto-pro .container {
    grid-template-columns: 1fr;
  }
}
.contacto-pro .contacto-info h1 {
  color: #001e50;
  font-size: 2.2rem;
  margin-bottom: 1rem;
}
.contacto-pro .contacto-info p {
  color: #444;
  margin-bottom: 2rem;
  line-height: 1.6;
}
.contacto-pro .contacto-info .contact-icons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}
.contacto-pro .contacto-info .contact-icons .icono-box {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.contacto-pro .contacto-info .contact-icons .icono-box img {
  width: 28px;
}
.contacto-pro .contacto-info .contact-icons .icono-box span {
  font-size: 1rem;
  color: #003399;
}
.contacto-pro .contacto-info .redes-contacto {
  display: flex;
  gap: 1rem;
}
.contacto-pro .contacto-info .redes-contacto img {
  width: 32px;
  transition: transform 0.3s;
}
.contacto-pro .contacto-info .redes-contacto img:hover {
  transform: scale(1.1);
}
.contacto-pro .contacto-form {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}
.contacto-pro .contacto-form h2 {
  font-size: 1.5rem;
  color: #001e50;
  margin-bottom: 1.5rem;
}
.contacto-pro .contacto-form form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contacto-pro .contacto-form form input,
.contacto-pro .contacto-form form textarea {
  padding: 0.8rem 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
}
.contacto-pro .contacto-form form textarea {
  height: 120px;
}
.contacto-pro .contacto-form form .btn {
  align-self: flex-start;
  background-color: #003399;
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
}
.contacto-pro .contacto-form form .btn:hover {
  background-color: #001e50;
}/*# sourceMappingURL=style.css.map */