:root {
    --ii-blue: #1F0020;
    --ii-dark-blue: #1F0020;
    --ii-orange: #DB0082;
    --text-dark: #1F0020;
    --bg-light: #F8F9FE;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-dark);
    line-height: 1.5;
    background-color: #fff;
}


.container {
    max-width: 1440px; 
    margin: 0 auto;
    padding: 0 80px; 
}


.top-nav {
    background: var(--ii-dark-blue);
    color: white;
    padding: 10px 30px; 
    font-size: 16px;
    
   
    width: 96%;            
    max-width: 1350px;     
    margin: 0px auto;     
    border-radius: 0 0 15px 15px;
    
    
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}


.top-nav .container {
    max-width: 100%; 
    padding: 0; 
}

.top-links {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    align-items: center;
}

.top-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

.separator {
    color: rgba(255,255,255,0.3);
}

.main-header {
    background: white;
    padding: 7px 0;
    border-bottom: 1px solid #f0f0f0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img { height: 60px; }


.icon-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}


.nav-icon {
    width: 18px;  
    height: 18px; 
    object-fit: contain; 
    filter: brightness(0) invert(1); 
}

.main-menu ul {
    display: flex;
    list-style: none;
    gap: 30px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
}

.main-menu li {
    cursor: pointer;
}


/* Contenedor del ítem del menú */
.has-dropdown {
    position: relative;
    cursor: pointer;
    padding: 20px 0;
}

/* Megamenú oculto por defecto */


.megamenu.active {
    display: block;
}






.menu-item {
    display: block;
    text-decoration: none;
    color: #000060;
    padding: 10px 0;
    font-size: 15px;
    transition: color 0.2s;
}

/* Estilo para los botones redondeados lilas */
.menu-item.highlight {
    background: #e8ebff;
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #000060;
    font-weight: 600;
}

.menu-item.highlight .arrow {
    color: #3b46ff;
    font-size: 12px;
}

/* Panel de promoción azul */
.megamenu-promo {
    background: #0000A1;
    border-radius: 20px;
    overflow: hidden; 
    color: #fff;
    /* Añadimos un padding inferior para que el botón no toque el borde */
    padding-bottom: 25px; 
    display: flex;
    flex-direction: column;
    align-items: center;
}

.megamenu-promo img {
    width: 100%;
    height: 130px; /* Reducimos de 150px a 130px */
    object-fit: cover;
}

.promo-content {
    padding: 20px; /* Cambiamos de 0px a 20px para dar margen interno */
    text-align: center;
    width: 100%;
}

.promo-content h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.promo-content p {
    font-size: 13px;
    margin-bottom: 20px;
    line-height: 1.4;
}

.btn-white-pill {
    background: #fff;
    color: #0000A1;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
}



/* Contenedor del ítem en el header */
.main-menu ul li {
    position: relative; /* Base para el centrado del hijo */
    cursor: pointer;
    padding: 15px 0px;
    font-size: 15px;
}

/* El Megamenú */
/* 1. Importante: Quitar el position: relative del li si causa conflictos, 
pero para el fixed no importa el padre */

/* Megamenú de lado a lado */
.megamenu {
    display: none;
    position: fixed;
    top: 110px; /* Ajusta según tu header */
    left: 0;    /* Pegado a la izquierda */
    width: 100vw; /* 100% del ancho de pantalla */
    background: #fff;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    z-index: 99999;
    border-top: 1px solid #eee;
    padding: 40px 0; /* Padding vertical, el horizontal lo da el container */
}

/* Contenedor interno centrado */
.megamenu-container {
    max-width: 1300px; /* O el ancho de tu web */
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr) 1.2fr 1fr; /* Ajuste para las 5 columnas */
    padding: 0 20px;
}

/* Separadores verticales (Columnas) */
.megamenu-col {
    padding: 0 30px;
    border-right: 1px solid #f0f0f0; /* La línea vertical */
}


.megamenu.is-open {
    display: block;
}

/* --- Tus estilos de contenido se mantienen --- */
.megamenu-col h3 {
    min-height: 40px;
    color: #000060;
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 800;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translate(-50%, 10px); }
    to { opacity: 1; transform: translate(-50%, 0); }
}






.btn-join {
    background: var(--ii-blue);
    color: white;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
}


.hero {
    width: 100%;
    overflow: visible; 
    background: white;
    padding: 60px 0;
    z-index: 2; 

}

.hero-layout {
    display: flex;
    align-items: center;
    
    margin-left: max(20px, calc((100% - 1400px) / 2 + 80px)); 
    gap: 40px;
}

.hero-text {
    flex: 1;
    max-width: 600px;
    z-index: 3; 
    position: relative;
    margin-top: -150px;
    
}

.hero-text h1{
    font-size: 40px;
    color: var(--text-dark);
    font-weight: 700;

 
}


.hero-text p{
    font-size: 18px;
    color: var(--text-dark);
  
}



.hero-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.hero-mask {
    width: 100%; 
    height: 600px;
    overflow: hidden;
    position: relative;
    z-index: 15; 
    /* 1. Aseguramos que la imagen respete los márgenes internos */
    box-sizing: border-box;
    
    /* 2. Añadimos el margen interno (padding).
       Ajusta este número para hacer la imagen más pequeña o más grande.
       A mayor padding, más pequeña se verá la imagen. */
    padding: 30px; /* Prueba con 10px, 20px, 30px, etc. */
}

.hero-mask img {
    max-width: 100%; /* No se sale del contenedor */
    height: auto;     /* Mantiene la proporción */
    display: block;
    object-fit: cover;
    object-position: center;
    border-radius: 150px 0px 150px 0;
}


.hero-btns {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.btn-primary, .btn-secondary {
    position: relative;
    z-index: 3; 
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
}

.btn-primary { background: #1E011F; color: white; }
.btn-secondary { background: #DB0082; color: white; }



.info-bar {
    background: #F4F6FF;
    margin-top: -350px; 
    padding: 220px 0 100px 0;
    position: relative;
    z-index: 1;
   
    border-radius: 60px 60px 0 0; 
}

.info-bar p{
    font-size: 18px;
    margin-top: 15px;
}

.info-bar .tp-logo-img{
    width: 75px;
    height: 45px;
}

.info-bar .trustpilot-top{
    margin-top: -30px;
    margin-left: 300px;
}


.cashback-banner {
    background: var(--ii-dark-blue); 
    border-radius: 25px;
    margin: 50px auto;
    padding: 60px;
    color: white;
    max-width: 1300px;
}

.cashback-content {
    display: flex;
    align-items: center;
    gap: 45px;

}

.cashback-circle {
    min-width: 320px;
    height: 320px;
    border: 18px solid #DB0082; 
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.cashback-circle .amount {
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
}

.cashback-circle .label {
    font-size: 24px;
    font-weight: 600;
}

.cashback-text h2 {
    font-size: 36px;
    margin-top: -50px;
    font-weight: 800;
}

.cashback-text p {
    font-size: 18px;
    margin-bottom: 15px;

}

.cashback-text a{
    color: white;
}


.cashback-image {
    flex: 0 0 500px; 
    display: flex;
    justify-content: center;
    align-items: center;
}

.cashback-image img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
 
}

.btn-details {
    background: var(--ii-orange);
    color: #000033;
    padding: 14px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    margin-top: 25px;
}


.disclaimer {
    color: #4C4C5E;
    font-size: 12px;
    margin-top: 40px;
    text-align: left;
}


.secondary-disclaimer {
    max-width: 1300px;
    margin: 40px auto 0;
    text-align: left;
    color: #4C4C5E;
    font-size: 12px;
    line-height: 1.6;

}

.secondary-disclaimer p {
    margin-bottom: 15px;
}


.goals-section{
    margin-top: 130px;
    width: 100%;
    overflow: hidden; 
}

.goals-header h2{
    font-size: 33px;
}



.carousel-wrapper {
    overflow: hidden;
    padding: 10px 0;
}

.goals-grid {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease-in-out;
    align-items: stretch;
}

.goal-card {
    min-width: calc(33% - 15px); 
    background: #fff;
    border: 1px solid #e0e4f5;
    border-radius: 15px;
    padding: 30px 30px 15px 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    /* Añade esto: */
    display: flex;
    flex-direction: column;

}

.nav-btn {
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    font-size: 18px;
    transition: 0.3s;
}


.goal-card img {
    width: 40px;          
    height: 40px;        
    object-fit: contain;  
    margin-bottom: 15px;  
    display: block;       
}




.goal-card h3 {
    font-size: 25px;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.goal-card p {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--text-dark);
    
    flex-grow: 1; 

}


.goal-card .btn-orange-sm {
    align-self: flex-start; 
    display: inline-block;
    margin-top: 40px;
    margin-bottom: 20px;
}

.disclaimer-mini {
    max-width: 1300px;
    margin: 140px auto 0;
    text-align: left;
    color: #4C4C5E;
    font-size: 19px;
    line-height: 1.6;
    margin-bottom: 100px;

}


.nav-btn:hover { background: #f0f0f0; }


.managed-section { padding: 80px 0; background: #fff; }
.managed-flex { display: flex; align-items: center; gap: 60px; }
.managed-image { position: relative; flex: 1; }
.managed-image img { width: 100%; border-radius: 20px; }



.managed-content { flex: 1; }
.managed-content h2 { font-size: 35px; color: #000060; margin-bottom: 20px; }

.managed-content p{
    font-size: 18px;


}
.btn-orange-sm {
    background: var(--ii-orange);
    color: var(--text-dark);
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    margin-top: 20px;
}


.why-ii-section {
    padding: 80px 0 0 0; 
    background: url('img/señoras.jpg') no-repeat center top; 
    background-position: center 0%;
    background-size: cover;
    
  
    width: 100%;             
    margin: 40px 0 150px 0;  
    border-radius: 0;        
    
    position: relative;
    height: 400px; 
}

.why-ii-card {
    background: white;
    border-radius: 25px;
    padding: 60px 50px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    max-width: 1300px;
    margin: 0 auto;
    
   
    position: relative;
    top: 250px; 
    z-index: 10;
}

.why-ii-card h2 {
    color: var(--text-dark);
    font-size: 33px;
    margin-bottom: 40px;
    font-weight: 800;
}


.why-ii-grid {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 30px;
}

.why-ii-item {
    flex: 1;
    text-align: center;
}


.why-ii-item img {
    width: 35px; 
    height: 35px;
    margin: 0 auto 20px;
    display: block;
    object-fit: contain;
}

.why-ii-item h3 {
    color: var(--text-dark);
    font-size: 25px;
    margin-bottom: 12px;
}

.why-ii-item p {
    color: var(--text-dark);
    font-size: 18px;
    line-height: 1.6;
    margin-top: 30px;
    margin-bottom: 20px;
}




.transfer-section {

    padding: 540px 0 100px 0; 
    background: white;
    width: 100%;
    margin-bottom: -40px;
}

.transfer-banner {
    background: #E5E5FF;
    
    border-radius: 30px 250px 250px 30px; 
    
    padding: 30px 80px;
    display: block;
    position: relative;
}

.transfer-flex {
    display: flex;
    align-items: center;
    gap: 80px;
}

.transfer-image-container {
    flex: 1;
    max-width: 550px;
}

.main-transfer-img {
    width: 100%;
    border-radius: 20px;
    display: block;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.transfer-content {
    flex: 1;
}

.transfer-content h2 {
    font-size: 33px;
    color: var(--text-dark);
    margin-bottom: 25px;
    font-weight: 800;
    line-height: 1.1;
}

.transfer-content p {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--text-dark);
    line-height: 1.6;
}


.why-ii-card {
   
    margin-bottom: 50px; 
}



.products-section {
    padding: 100px 0;
    background-color: #fff;
    overflow: hidden;
}

.products-carousel-wrapper {
    overflow: hidden;
    width: 100%;
}

.products-header {
    margin-bottom: 50px;
}

.products-header h2 {
    font-size: 33px;
    color: var(--text-dark);
    font-weight: 800;
    margin-bottom: 15px;
}

.products-header p {
    font-size: 18px;
    color: var(--text-dark);
}


.products-grid {
    display: flex;          
    gap: 25px;
    transition: transform 0.5s ease-in-out;
    align-items: stretch;
    width: 100%;              
}

.product-card {
  
    min-width: calc(33% - 17px); 
    
    background: #fff;
    border: 1px solid #e0e4f5;
    border-radius: 20px;
    padding: 35px;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s ease;
    height: auto; 
}

.product-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.product-card img {
    width: 45px;
    height: 45px;
    object-fit: contain;
    margin-bottom: 25px;
}

.product-card h3 {
    font-size: 25px;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 700;
}

.product-card p {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 30px;
    flex-grow: 1; 
}


.product-card .btn-orange-sm {
    align-self: flex-start; 
    margin-top: auto;
    padding: 12px 25px;
}



.header-content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-end; 
    margin-bottom: 30px;
}

.carousel-controls {
    display: flex;
    align-items: center;
    gap: 15px;
}


.nav-arrow {
    background: none;
    border: none;
    color: #0000CC;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    transition: opacity 0.2s;
}

.nav-arrow:hover {
    opacity: 0.6;
}

.nav-arrow:disabled {
    color: #D1D5DB; 
    cursor: not-allowed;
}


.carousel-dots {
    display: flex;
    align-items: center;
    gap: 8px;
}

.dot {
    height: 8px;
    width: 8px;
    background-color: #D1D5DB; 
    border-radius: 50%;
    display: inline-block;
    transition: all 0.3s ease;
}


.dot.active {
    width: 20px;
    background-color: #000066; 
    border-radius: 10px;
}




.testimonial-image-mask {
    flex: 1;
    height: 100%;
    position: relative;
   
    clip-path: circle(75% at 85% 50%); 
    display: flex;
    justify-content: flex-end;
}

.couple-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


.testimonial-btns .btn-orange-sm {
    padding: 12px 20px;
    font-size: 14px;
}



.ii-why-choose {
    padding: 60px 0;
    background-color: #fff;
}

.ii-banner-wrapper {
    background-color: #E5E5FF; 
    border-radius: 20px;
    display: flex;
    overflow: hidden;
    align-items: stretch;
    min-height: 420px;
}


.ii-text-content {
    flex: 1;
    padding: 50px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ii-title {
    color: var(--text-dark); 
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 25px;
}

.ii-quote-text {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.ii-sub-text {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.ii-action-btns {
    display: flex;
    gap: 15px;
}


.ii-image-container {
    flex: 1;
    position: relative;
}

.ii-curved-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    
    clip-path: ellipse(100% 100% at 100% 50%);
}


.btn-orange {
    background-color: #DB0082;
    color: #000033;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: background 0.3s ease;
}

.btn-orange:hover {
    background-color: #DB0082;
}




.ii-cta-section {
    padding: 100px 0;
    background-color: #fff;
    text-align: center;
}

.ii-logo-circle {
    width: 180px;
    height: 180px;
    border-radius: 50%; 
    overflow: hidden;    
    display: flex;
    align-items: center;
    justify-content: center;
}

.ii-logo-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
}
.ii-cta-title {
    font-size: 36px;
    font-weight: 800;
    color: #000033;
    margin-bottom: 20px;
}

.logo-google {
    height: 47px !important;
    margin-top: -4px; 
    width: auto;
}

.ii-cta-text {
    font-size: 18px;
    color: var(--text-dark);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.5;
}

.btn-blue-pill {
    background-color: #0000FF;
    color: #fff;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 50px;
    transition: transform 0.2s;
}

.btn-blue-pill:hover {
    transform: scale(1.05);
}

.ii-app-stores {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.ii-app-stores img {
    height: 40px;
}






/* =========================================
   FOCUS PERSONALIZADO CAMPOS
========================================= */

.input-group input:focus,
.input-group select:focus,
.date-grid input:focus,
.date-grid select:focus,
.select-wrapper select:focus,
.input-wrapper-amount input:focus {
    outline: none; 
    border: 1px solid #66AFE9;
    
}

.select-wrapper select,
.date-grid select {
    background-image: url("img/flecha.png");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 14px 14px; 
    padding-right: 40px; 
    cursor: pointer;
}


.wu-header {
    background: var(--wu-bg);
    height: 68px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.wu-container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 65px;
    display: flex;
    align-items: center;
}

.wu-left {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 7px;
}

.wu-icon { height: 20px; }

.wu-text {
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: -0.3px;

}

.wu-nav {
    display: flex;
    gap: 27px;
    margin-left: auto;
}

.wu-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

.wu-right {
    display: flex;
    align-items: center;
    height: 88px;
}

.wu-divider {
    width: 1px;
    height: 78%;
    background: #777;
    margin: 0 15px;
}

.wu-menu {
    width: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
}

.wu-menu span {
    height: 2.6px;
    width: 100%;
    background: var(--we-yellow);
}

.wu-login {
    border: 1px solid rgba(255,255,255,0.9);
    padding: 5px 11px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    border-radius: 3px;
    margin-right: 16px;
}

.wu-register {
    color: var(--we-yellow);
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
}

/* =========================================
   CONTENIDO
========================================= */

.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 10px;
}

.top-bar h1 {
    font-weight: 300;
    font-size: 22px;
}

.lang-selector {
    color: #255E80;
    font-size: 12.5px;
    text-decoration: none;
    margin-left: auto;
    margin-right: 380px; 
}

.main-grid {
    display: grid;
    grid-template-columns: 3fr 1.6fr;
    gap: 30px;
}




.card-style {
    background: #ffffff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    width: 100%;
}




.instruction-text {
    margin-bottom: 20px;
    color: var(--wu-gray-text);
    font-size: 12px;
    text-align: center;
}



.input-card {
    padding: 18px 0;
    margin-bottom: 12px;
}



.form-content {
    padding: 25px 30px;
}

.form-card {
    margin-bottom: 10px;
}


.radio-container {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    position: relative;
    font-size: 14px;
    color: #222;
}


.radio-container input[type="radio"] {
    display: none;
}


.radio-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.search-options {
    margin-bottom: 25px; 
}

.search-options span {
    font-size: 30px;
    color: #0000A1; 
    font-weight: bold;
}

.names-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 10px;
}

.input-group input,
.date-grid input,
.date-grid select,
.select-wrapper select,
.input-wrapper-amount input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ced4da;
    border-radius: 2px;
    font-size: 14px;
    color: #333;
}



input::placeholder {
    color: #595959 !important;
    opacity: 1 !important;
}

input::-webkit-input-placeholder {
    color: #595959 !important;
}

input:-ms-input-placeholder {
    color: #595959 !important;
}

input::-ms-input-placeholder {
    color: #595959 !important;
}


.country-selector-field {
    height: 45px;
    border: 1px solid #ced4da;
    padding: 0px 15px;
    margin-bottom: 30px;
    background-color: #fff;
    border-radius: 2px;
    display: flex;
    flex-direction: column;
    justify-content: center;
   
}

.country-select {
    border: none;
    background: transparent;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    outline: none;
    appearance: none;
    inset: 0;                 
    width: 100%;
    height: 100%;
    cursor: pointer;
}


.field-info-label {
    font-size: 9px;
    color: #666;
    margin-bottom: 2px;
    font-weight: 400;
    margin-left: 35px;
}


.country-display-box {
    display: flex;
    align-items: center;
    gap: 12px;

}


.country-flag {
    width: 22px;
    height: auto;
    border-radius: 1px;
    box-shadow: 0 0 1px rgba(0,0,0,0.2);
    margin-top: -12px;
}


.country-name-text {
    font-size: 11px;
    font-weight: 700; 
    color: #000;
}




.amount-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 10px;
}

.input-wrapper-amount {
    position: relative;
}

.currency {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    color: #888;
}



.date-icon {
    width: 17px;
    height: 17px;
}

.optional-date-section {
    padding-top: 0px;
}

.date-header {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--wu-blue);
    font-size: 13px;
    margin-bottom: 23px;
}

.field-label {
    display: block;
    font-size: 13px;
    margin-bottom: 8px;
}

.date-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
    margin-bottom: 10px;
}


.btn-continue-blue {
    width: 100%;
    background-color: #0000A1;
    color: white;
    border: none;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 2px;
    margin-bottom: 15px;
    margin-top: 12px;
}

.btn-continue-blue:hover {
    background-color: #000060; /* Naranja oscuro */
}

.mtcn-link {
    color: var(--wu-blue);
    text-decoration: none;
    font-size: 13px;
}



.mtcn-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.mtcn-block {
    display: flex;
    gap: 10px;
}

.mtcn-block input {
    width: 20px;          
    height: 30px;         
    text-align: center;
    font-size: 22px;
    border: none;
    border-bottom: 2px solid #ccc;
    outline: none;
    background: transparent;
}

.mtcn-block input:focus {
    border-bottom: 2px solid var(--wu-blue);
}

.mtcn-separator {
    font-size: 30px;
    font-weight: 500;
    color: #D3D3D3;
}

.input-wrapper input {
    width: 100%;
    max-width: 500px;
    border: none;
    border-bottom: 1px solid #ccc;
    font-size: 32px;
    text-align: center;
    letter-spacing: 8px;
    outline: none;
    color: #4a4a4a;
}

.btn-continue {
    width: 100%;
    max-width: none;
    padding: 15px;
    background-color: #0000A1;
    color: white;
    border: none;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    margin-bottom: 20px;
}

.btn-continue:disabled {
    cursor: not-allowed;
    background-color: #0000A1; 
}

.help-wrapper {
    text-align: center;
}

.mtcn-help {
    color: #0000A1;
    text-decoration: none;
    font-size: 12px;
}


.card-promo {
    padding: 10px;
    display: flex;
    gap: 13px;
    margin-top: 75px;
    align-items: center;
    border-radius: 3px;

}

.card-promo p {
    font-size: 13.1px;
    line-height: 1.25;
    font-weight: 500;
    
}


.card-promo a {
    text-decoration: none !important;
    color: #0000A1;  
    font-weight: 600;
}

.card-promo img {
    width: 100px;
    height: auto;
}



.copyright {
    color: #000;
    padding-bottom: 5px;
}



.input-error {
    border: 1px solid red !important;
}

.error-message {
    color: red;
    font-size: 12px;
    margin-top: 5px;
}


/* Contenedor principal de la columna de contactos */
.contacts-sidebar {
    font-family: 'Arial', 'Helvetica', sans-serif;
    color: #333;
    line-height: 1.5;
    max-width: 400px; /* Ajustable a tu diseño */
}

/* Títulos en naranja (Media e Investor relations) */
.contacts-sidebar h2 {
    color: #0000A1; /* El naranja característico de la imagen */
    font-size: 28px;
    font-weight: bold;
    margin-top: 30px;
    margin-bottom: 20px;
}

/* Subtítulos (General media enquiries, etc.) */
.contacts-sidebar h3 {
    font-size: 16px;
    font-weight: bold;
    color: #000;
    margin-bottom: 5px;
    margin-top: 20px;
}



/* Estilo para los bloques de texto (teléfonos, emails) */
.contacts-sidebar p {
    margin: 4px 0;
    font-size: 15px;
}

/* Estilo de los enlaces (Emails) */
.contacts-sidebar a {
    color: #333;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.contacts-sidebar a:hover {
    color: #000060;
}

/* Etiquetas de Telephone, Mobile, E-mail */
.contacts-sidebar .label {
    display: inline-block;
    min-width: 75px; /* Para alinear si lo deseas, o déjalo natural */
}

/* Estilo para los enlaces (Emails) */
.contacts-sidebar a {
    color: #000000; /* Forzamos color negro */
    text-decoration: underline; /* Mantiene el subrayado de la imagen */
    font-size: inherit; /* Hereda el tamaño del párrafo */
}

/* Opcional: que cambie a naranja solo cuando pasas el ratón */
.contacts-sidebar a:hover {
    color: #000060; 
    text-decoration: none; /* Quita el subrayado al pasar el mouse (opcional) */
}

/* Estilo para los bloques de texto (teléfonos, etc) */
.contacts-sidebar p {
    color: #000000;
    margin: 2px 0;
    font-size: 15px;
}

.contacts-sidebar p a {
    color: #000 !important;
    text-decoration: underline !important;
}

/* El campo donde el usuario escribe su número */
.phone-input {
    border: 1px solid #ced4da;
    border-left: none;       
    border-radius: 0 4px 4px 0; 
    height: 40px;
    padding-left: 10px;
    margin-left: -1px;     
}

.phone-container {
    display: flex;
    align-items: center;
}


#dialCodeSelect {
  
    width: 85px;             
    height: 40px;            
    padding: 0 5px;
    text-align: center;
    
    
    background-color: #f8f9fa; 
    border: 1px solid #ced4da; 
    border-radius: 2px 0 0 2px; 
    
   
    font-family: sans-serif;
    font-size: 14px;
    color: #333;
    
    
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    
    
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23000000%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E');
    background-repeat: no-repeat;
    background-position: right 8px center;
    background-size: 10px;
    cursor: pointer;
}


#dialCodeSelect:focus {
    outline: none;
    border-color: #80bdff;
}

/* Contenedor principal */
.contacts-sidebar {
    flex: 0 0 350px;
    background: #ffffff;
    padding: 20px;
    border-radius: 8px;
}

/* Títulos */
.sidebar-title {
    color: #0000A1;
    font-size: 24px;
    margin-bottom: 20px;
}

.title-spacing {
    margin-top: 40px;
}

/* Enlaces */
.contact-link {
    color: #0056b3;
}

.link-no-deco {
    text-decoration: none;
}

/* Contenedor de lista de contactos */
.contacts-group {
    margin-top: 25px;
}






/* Estilos Sección App */
.app-download-section {
    background: #fdfdfd;
    padding: 60px 0;
    border-top: 1px solid #eee;
    overflow: hidden;
}

.app-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.app-image {
    flex: 1;
    text-align: right;
}

.app-logo-bounce {
    width: 220px;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.1));
    animation: float 4s ease-in-out infinite;
}

.app-text {
    flex: 1;
}

.badge {
    background: #DB0082;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
}

.app-text h2 {
    font-size: 2.2rem;
    color: #1F0020;
    margin: 15px 0;
    line-height: 1.2;
}

.app-text p {
    color: #555;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

/* Botón de descarga estilo Store */
.btn-download {
    display: inline-flex;
    align-items: center;
    background: #1F0020; /* Color oscuro para resaltar */
    color: white;
    padding: 12px 25px;
    border-radius: 10px;
    text-decoration: none;
    transition: transform 0.3s, background 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-download:hover {
    background: #DB0082;
    transform: translateY(-3px);
}

.btn-icon {
    width: 30px;
    margin-right: 15px;
}

.btn-content span {
    display: block;
    font-size: 0.7rem;
}

.btn-content strong {
    font-size: 1.1rem;
}

.app-version {
    font-size: 0.7rem;
    color: #999;
    margin-top: 10px !important;
}

/* Animación de flotado */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* Responsive */
@media (max-width: 768px) {
    .app-flex {
        flex-direction: column;
        text-align: center;
    }
    .app-image {
        text-align: center;
    }
    .app-logo-bounce {
        width: 150px;
    }
}








footer {
    background-color: #0E1116; /* Color oscuro del fondo */
    padding: 30px 40px;
    border-top: 1px solid #272B34; /* Línea divisoria superior sutil */
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px; /* O el ancho máximo que estés usando */
    margin: 0 auto;
}

.footer-copyright {
    color: #94a3b8; /* Color gris suave para el texto */
    font-size: 14px;
    font-weight: 400;
}

.footer-links {
    display: flex;
    gap: 25px; /* Espaciado entre los enlaces */
}

.footer-links a {
    color: #cbd5e1; /* Color de los enlaces */
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #ffffff; /* Brillo al pasar el mouse */
}



.tp-wrapper, .trustpilot-widget-footer {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
}


.tp-stars {
    height: 20px; 
    width: auto;
}


.tp-logo-img {
    height: 18px;
    width: auto;
    margin-left: 2px;
}


.tp-text {
    font-weight: 700;
    color: #000;
}

.tp-text-white {
    font-weight: 700;
    color: #fff;
}

.tp-count {
    color: #444;
    font-size: 13px;
}


.trustpilot-top {
    padding: 10px 0;
    display: flex;
    justify-content: flex-start;
}


.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 20px;
    margin-bottom: 30px;
}



.tp-widget-vertical {
    display: flex;
    flex-direction: column;
   
    align-items: flex-start; 
    gap: 5px;
    padding: 15px 0;
    max-width: 200px;
    
   
    margin-left: auto; 
    text-align: left;
}




.tp-brand-img {
    height: 22px; 
    width: auto;
}



.tp-stars-img {
    width: 140px;
    height: auto;
    display: block;
    margin-right: 0;
}


.tp-text-bottom p {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 12px;
    color: #ffffff;         
    margin: 0;
    white-space: nowrap;    
    margin: 0;
    padding: 0;
    text-align: left; 
}

.tp-text-bottom b {
    font-weight: 700;
}



.carousel-container {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.goals-grid, .products-grid {
    display: flex !important; 
    flex-wrap: nowrap !important; 
    transition: transform 0.4s ease-out;
    gap: 20px; 
}

.goal-card, .product-card {
    flex: 0 0 280px; 
    max-width: 300px;
}


/* Quitar subrayado por defecto a todos los enlaces */
a {
    text-decoration: none !important;
}


/* 1. Estilo base SOLO para los textos del menú principal */
.main-menu ul li a {
    color: #1F0020 !important; /* Tu morado oscuro */
    text-decoration: none !important; /* Sin subrayado */
    font-weight: 600;
    transition: color 0.3s ease;
    display: inline-block;
}

/* 2. Color cuando pasas el mouse SOLO en esos textos */
.main-menu ul li a:hover {
    color: #DB0082 !important; /* Fucsia vibrante para resaltar */
}

/* 3. Asegurar que los otros enlaces (lupa, ayuda, etc.) no cambien */
.top-nav a {
    color: inherit; /* Mantiene su color original de antes */
    text-decoration: none;
}





/* ================================================= */
/* 1. LAPTOPS / PANTALLAS PEQUEÑAS (1200px - 1024px) */
/* ================================================= */
@media (max-width: 1200px) {
    .container, .wu-container, .cashback-banner, .why-ii-card, .secondary-disclaimer {
        max-width: 95%;
        padding: 0 20px;
    }

    .hero-layout {
        margin-left: 20px;
        gap: 20px;
    }

    .goal-card, .product-card {
        min-width: calc(50% - 15px); /* Pasa de 3 a 2 columnas */
    }
}

/* ================================================= */
/* 2. TABLETS (992px - 768px)                       */
/* ================================================= */
@media (max-width: 992px) {
    /* Header & Nav */
    .top-links { gap: 10px; font-size: 14px; }
    .main-menu { display: none; } /* Aquí deberías implementar un menú hamburguesa */
    
    /* Hero Section */
    .hero-layout {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-text {
        max-width: 100%;
        margin-top: 0;
    }
    
    .hero-mask {
        height: 400px;
        border-radius: 80px 0 80px 0;
    }

    /* Cashback Banner */
    .cashback-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cashback-circle {
        min-width: 250px;
        height: 250px;
    }

    .cashback-image {
        flex: 0 0 auto;
        width: 100%;
    }

    /* Info Bar & Transfer Section */
    .info-bar { margin-top: 0; padding: 60px 20px; border-radius: 30px; }
    .transfer-flex { flex-direction: column; gap: 40px; }
    
    /* Grids */
    .main-grid {
        grid-template-columns: 1fr; /* Apila el formulario y el sidebar */
    }

    .why-ii-grid {
        flex-direction: column;
        gap: 30px;
    }
    
    .why-ii-section { height: auto; padding-bottom: 50px; }
    .why-ii-card { top: 0; margin-top: 30px; }
    
    .ii-banner-wrapper { flex-direction: column; }
}

/* ================================================= */
/* 3. MÓVILES (768px - 480px)                        */
/* ================================================= */
@media (max-width: 768px) {
    /* Tipografía */
    .hero-text h1 { font-size: 28px; }
    .cashback-text h2, .ii-title, .managed-content h2 { font-size: 24px; }
    
    /* Nav */
    .top-nav { width: 100%; border-radius: 0; }
    .top-bar { flex-direction: column; align-items: center; }
    .lang-selector { margin-right: 0; margin-top: 10px; }

    /* Cards & Carousel */
    .goal-card, .product-card {
        min-width: 100%; /* 1 sola columna */
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        text-align: center;
    }

    /* Formulario MTCN y Grids de inputs */
    .names-grid, .amount-grid, .date-grid {
        grid-template-columns: 1fr; /* Inputs uno debajo del otro */
        gap: 15px;
    }

    .mtcn-block input {
        width: 15px;
        font-size: 18px;
    }

    /* Footer */
    .footer-container, .footer-top {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .tp-widget-vertical {
        margin: 0 auto;
        align-items: center;
    }
}

/* ================================================= */
/* 4. AJUSTES EXTRA PARA MÓVILES PEQUEÑOS (360px)    */
/* ================================================= */
@media (max-width: 480px) {
    .cashback-circle {
        width: 200px;
        height: 200px;
        border-width: 10px;
    }
    
    .cashback-circle .amount { font-size: 32px; }
    
    .ii-action-btns {
        flex-direction: column;
    }
}