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

body {
    font-family: 'Poppins', sans-serif;
    background-color: #002e57; /* fondo azul global */
    color: #002e57;
}

html {
    background-color: #002e57;
}

/* ===== CONTAINER ===== */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* ===== HEADER ===== */

.main-header {
    background-color: #002e57;
    padding: 20px 0;
}

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

.logo img {
    height: 65px;
}

.nav-menu {
    display: flex;
    gap: 35px;
}

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: 0.3s;
}

.nav-menu a {
    position: relative;
}

.nav-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0%;
    height: 2px;
    background-color: #ffffff;
    transition: 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover {
    color: #ffffff;
}

.nav-menu a.active {
    color: #ffffff;
}

/* ===== FOOTER ===== */
.footer {
    background-color: #002e57;
    color: #ffffff;
    padding: 30px 0;
    text-align: center;
    margin-top: 60px;
}

/* ===== HERO IMAGE SECTION ===== */

.hero-image {
    background-color: #002e57;
    padding: 100px 0;
    text-align: center;
}

.hero-image-wrapper img {
    max-width: 1100px;
    width: 100%;
    height: auto;
}

/* ===== TRUST SECTION ===== */

.trust-section {
    background-color: #f4f6f8;
    padding: 80px 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}

.trust-card {
    background-color: #ffffff;
    padding: 40px 20px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.trust-card:hover {
    transform: translateY(-5px);
}

.trust-card h3 {
    font-size: 32px;
    color: #002e57;
    margin-bottom: 10px;
}

.trust-card p {
    color: #555;
    font-size: 16px;
}

/* ===== ABOUT SECTION ===== */

.about-section {
    background-color: #002e57;
    padding: 100px 0;
    color: #ffffff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-left h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.about-left p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.btn-soft {
    background-color: #1f4f7f;
    padding: 14px 28px;
    border-radius: 40px;
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    transition: 0.3s;
    display: inline-block;
}

.btn-soft:hover {
    background-color: #ed1f2a;
}

.about-right-wrapper {
    position: relative;
}

.about-right-wrapper::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #ed1f2a;
    border-radius: 20px;
    bottom: -15px;
    right: -15px;
    z-index: 0;
}

.about-card {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 20px;
    position: relative;
    z-index: 1;
    color: #333;
}

.about-card h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #002e57;
}

.about-card p {
    line-height: 1.7;
    font-size: 16px;
}
/* ===== SERVICES SECTION ===== */

.services-section {
    background-color: #002e57;
    padding: 100px 0;
    color: #ffffff;
}

.services-banner {
    text-align: center;
    margin-bottom: 60px;
}

.services-banner img {
    max-width: 550px;
    width: 100%;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.service-card {
    background-color: #0f3f6a;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    background-color: #205f96;
}

.service-card img {
    width: 90px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.95;
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== CONTACT SECTION ===== */

.contact-section {
    background-color: #002e57;
    padding: 100px 0;
    color: #ffffff;
}

.contact-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact-header h2 {
    font-size: 40px;
    margin-bottom: 10px;
}

.contact-header p {
    opacity: 0.9;
}

.contact-form-wrapper {
    max-width: 600px;
    margin: auto;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 20px;
}

.contact-form-wrapper label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #002e57;
}

.contact-form-wrapper input {
    width: 100%;
    padding: 14px;
    margin-bottom: 20px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 14px;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #0c3557;
    color: #ffffff;
    border: none;
    border-radius: 40px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.btn-submit:hover {
    background-color: #ed1f2a;
}

/* ===== FOOTER ===== */

.main-footer {
    background-color: #002e57;
    color: #ffffff;
    padding: 70px 0 30px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    align-items: start;
}

.footer-col h3 {
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-col p {
    opacity: 0.9;
    margin-bottom: 15px;
}

.footer-col a {
    display: block;
    color: #ffffff;
    text-decoration: none;
    margin-bottom: 10px;
    transition: 0.3s;
}

.footer-col a:hover {
    color: #ed1f2a;
}

/* CENTRADO COLUMNA CENTRAL */
.center-col {
    text-align: center;
}

/* ALINEADO DERECHA */
.right-col {
    text-align: right;
}

.email-title {
    margin-top: 20px;
}

/* ICONOS */

.social-icons {
    margin-top: 15px;
}

.social-icons a {
    display: inline-block;
    margin-right: 15px;
    transition: 0.3s;
}

.social-icons img {
    width: 26px;
    height: 26px;
    object-fit: contain;
    transition: 0.3s;
}

.social-icons a:hover img {
    transform: scale(1.15);
    opacity: 0.8;
}

/* FOOTER BOTTOM */

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    margin-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.2);
    font-size: 14px;
    opacity: 0.8;
}

/* RESPONSIVE */

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .right-col {
        text-align: center;
    }
}

/* ===========================
   HEADER (ajustes finos)
   - Hover blanco con subrayado
   - Activo blanco con subrayado
   - Logo un poquito más grande
=========================== */

.main-header{
  background-color:#002e57;
  padding:18px 0;
}

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

.logo img{
  height:65px; /* más grande */
  width:auto;
  display:block;
}

.nav-menu{
  display:flex;
  gap:30px;
}

.nav-menu a{
  color:#ffffff;
  text-decoration:none;
  font-weight:500;
  position:relative;
  padding-bottom:8px;
  transition:0.25s;
}

/* Hover: NO rojo, se queda blanco */
.nav-menu a:hover{
  color:#ffffff;
}

/* Línea blanca animada */
.nav-menu a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  height:2px;
  width:0%;
  background:#ffffff;
  transition:width .25s ease;
}

.nav-menu a:hover::after{
  width:100%;
}

/* Activo: blanco + subrayado */
.nav-menu a.active{
  color:#ffffff;
}
.nav-menu a.active::after{
  width:100%;
}

/* ===========================
   VISA AMERICANA - SECCIÓN 1
=========================== */
.va-hero{
  background:#ffffff;
  padding:90px 0;
}

.va-grid{
  display:grid;
  grid-template-columns: minmax(0,1fr) minmax(0,1fr);
  gap:80px;
  align-items:start;
}

.va-right{
  display:flex;
  align-items:flex-start;
}

.va-title{
  font-size:56px;
  font-weight:700;
  line-height:1.05;
  color:#0b1b2a;
  margin-bottom:18px;
}

.va-subtitle{
  font-size:18px;
  color:#222;
  max-width:520px;
  line-height:1.6;
  margin-bottom:26px;
}

.va-btn{
  display:inline-block;
  background:#002e57;
  color:#ffffff;
  text-decoration:none;
  padding:14px 34px;
  border-radius:999px;
  font-weight:600;
  transition:.25s;
}

.va-btn:hover{
  background:#001f3a;
}

.va-illustration{
  margin-top:40px;
}

.va-illustration img{
  max-width:320px;
  width:100%;
  height:auto;
}

/* Caja azul y tarjeta gris */
.va-requisitos-wrap{
  background:#002e57;
  border-radius:28px;
  padding:18px; /* marco más delgado */
  display:inline-block;
}

.va-requisitos-card{
  background:#f1f1f1;
  border-radius:22px;
  padding:36px;
  color:#111;
  width:100%;
}

.va-requisitos-card h3{
  font-size:28px;
  margin-bottom:18px;
  color:#111;
}

.va-list{
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  flex-direction:column;
  gap:16px;
}

.va-list li{
  font-size:18px;
  line-height:1.55;
}

.va-num{
  font-weight:800;
  margin-right:8px;
}

/* Responsive */
@media (max-width: 768px){
  .va-grid{
    grid-template-columns:1fr;
    gap:28px;
  }
}