
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    font-family: Arial, Helvetica, sans-serif;
}

.main-header {
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}

.header-container {
    display: flex;
    background-color: rgba(0, 0, 0, 0.55);
 
    border-bottom: 1px solid rgba(255, 255, 255);
}


.logo-section {
    width: 490px; 
    padding: 15px 40px; 
    border-right: 1px solid rgba(255, 255, 255);
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo {
    height: 60px;
}


.nav-section {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}


.top-row {
    display: flex;
    justify-content: flex-end;
 
    border-bottom: 1px solid rgba(255, 255, 255);
}

.top-row a, .top-row .dropdown {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
 
    padding: 13px 25px; 
    display: block;
    border-left: 1px solid rgba(255, 255, 255);
}


.main-row {
    flex-grow: 1;
    display: flex;
    align-items: center;
}

.main-row ul {
    display: flex;
    list-style: none;
    width: 100%;
    height: 100%;
}

.main-row ul li {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 100%;
}


.main-row ul li:not(:last-child)::before {
    content: "";
    position: absolute;
    right: 0;
    top: 30%;    
    height: 40%;
    width: 1px;
    background-color: rgba(255, 255, 255);
}

.main-row ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: bold;
   
    padding: 0px 20px; 
    white-space: nowrap;
    text-align: center;
    display: block;
}


.main-row ul li.active::after {
    content: "";
    position: absolute;
  
    bottom: -5px; 
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #F7941E;
    z-index: 10;
}


.hero-section {
    width: 100%;
    height: 110vh; 
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    
    
    background-image: 
    
        linear-gradient(to bottom, rgba(0,0,0,0) 40%, rgba(0,0,0,0.85) 90%, rgba(0,0,0,1) 100%),
  
        linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.1)),
 
        url('img/contacts.jpg');
    
    background-size: cover;
    background-position: center;
}

.hero-content {
    color: #fff;
    padding: 0 50px 25px; 
    z-index: 2;
}


.hero-content h1 {
    font-size: 47px; 
    font-weight: bold;
    margin-top: 20px;
    letter-spacing: -1px;
    line-height: 1;
}

.breadcrumb a {
    text-decoration: underline;
    color: #fff;
    font-size: 15px;
}


.share-bar {
    width: 100%;
    background-color: #000; 
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    border-top: 1px solid rgba(178, 178, 178, 1.5);
    z-index: 5;
}

.share-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.share-left span {
    color: #fff;
    font-size: 14px;
    font-weight: 200;
}


.social-icons {
    display: flex;
    gap: 10px; 
    align-items: center;
}


.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.2s ease;
}


.social-link img {
    width: 32px;  
    height: auto;
    display: block;
    
}


.social-link:hover {
    transform: scale(1.1);
}


.search-container {
    position: relative;
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.3); 
    border-radius: 25px;
    padding: 2px 5px 2px 20px;
    width: 320px;
}

.search-container input {
    background: transparent;
    border: none;
    color: #fff;
    flex: 1;
    padding: 8px 0;
    outline: none;
    font-size: 15px;
}

.search-container input::placeholder {
    color: rgba(255, 255, 255, 0.9);
}

.search-btn {
    width: 30px;
    height: 30px;
    background-color: #fff; 
    border-radius: 50%;
    border: none;
    cursor: pointer;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="black" viewBox="0 0 16 16"><path d="M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001c.03.04.062.078.098.115l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85a1.007 1.007 0 0 0-.115-.1zM12 6.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0z"/></svg>');
    background-repeat: no-repeat;
    background-position: center;
}



.content-container {
    max-width: 95%;
    margin: 0 auto;
    padding: 60px 20px;
    background-color: #FFFFFF; 
    color: #333;
}


.intro-text {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
    font-size: 18px;
    line-height: 1.6;
    color: #444;
}


.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

.column-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
    margin-bottom: 25px;
}

.column-header h2 {
    color: #F6931E; 
    font-size: 30px;
    font-weight: bold;
}


.learn-more {
    text-decoration: none;
    color: #888;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 1px;
    
  
    display: flex;
    align-items: center;
    gap: 8px; 
}




.arrow-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    opacity: 0.6;

    transition: transform 0.3s ease;
}


.btn-orange .arrow-icon-white {
    width: 20px; 
    height: auto;
    margin-left: 10px; 
    filter: brightness(0) invert(1);

    transition: transform 0.3s ease;
    display: block;
}


.learn-more:hover .arrow-icon,
.btn-orange:hover .arrow-icon-white {
    transform: translateX(4px); 
}




.glance-list {
    list-style: none;
    font-size: 16px;
    line-height: 1.6;
}

.glance-list > li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 20px;
}

.glance-list > li::before {
    content: "•";
    color: #F6931E;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.glance-list ul {
    list-style: none;
    margin: 10px 0 10px 20px;
}

.glance-list ul li::before {
    content: "◇"; 
    color: #F6931E;
    margin-right: 10px;
}

.footnote a {
    color: #000;             
    text-decoration: underline;  
    font-size: 12px;  
    font-style: italic;
    margin-top: 20px;    
}

.footnote p {
    color: #000;             
    text-decoration: underline;  
    font-size: 12px;  
    font-style: italic;
   
}


.footnote a:hover {
    text-decoration: none; 
}


.values-graphic {
    text-align: center;
    margin-bottom: 20px;
}

.values-graphic img {
    max-width: 250px;
}

.values-text {
    font-size: 16px;
    line-height: 1.6;
    text-align: left;
}


.explore-section {
    text-align: center;
    border-top: 1px solid #eee;
    padding-top: 40px;
}

.explore-section h3 {
    font-size: 27px;
    letter-spacing: 0px;
    margin-bottom: 40px;

}



.explore-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px; 
    padding: 0 20px;
}

.explore-card {
    height: 450px; 
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end; 
    text-align: left;
    transition: transform 0.3s ease;
}


.card-overlay {
    padding: 40px 30px;
    width: 100%;
 
    background: linear-gradient(to top, rgba(0,0,0,0.9) 10%, rgba(0,0,0,0.4) 50%, transparent 100%);
    color: white;
}

.card-overlay h4 {
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: bold;
}

.card-overlay p {
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 25px;
    font-weight: 300;
}


.btn-orange {
    display: inline-flex;    
    align-items: center;     
    background-color: #F6931E;
    color: white;
    text-decoration: none;
    padding: 13px 25px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: bold;
    transition: background 0.3s;
             
}

.btn-orange:hover {
    background-color: #d68100;
}





.intro-full-width {
    width: 100%;
    padding: 33px 0;
}

.intro-content-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    font-size: 22px;
    line-height: 1.6;
    color: #333;
}



.explore-card img {
    width: 100%;
    height: 100%; 
    object-fit: cover;
    display: block;
}


.esg-full-width {
    width: 100%;
    background-color: #F4F3F2; 
    padding: 25px 0;
    text-align: center;
    border-top: 1px solid #F4F3F2;
}

.esg-container h5 {
    font-size: 22px;
    margin-bottom: 20px;
    letter-spacing: 0px;
}

.esg-container p{
    font-size: 16px;

}

.esg-container a{
    color: black;
    font-weight: bold;
    font-style: italic;

    
}

.esg-logos-row {
    display: flex;
    justify-content: center;
    gap: 40px;
    align-items: center;
    margin-bottom: 20px;
}


.esg-logos-row img {
    width: auto; 
    display: block;
}


.logo-ftse {
    height: 110px; 
}

.logo-sp {
    height: 70px;
}

.logo-un {
    height: 110px; 
}

.logo-msci {
    height: 45px; 
}



.site-footer {
    background-color: #000;
    color: #fff;
    padding-top: 30px;
    padding-bottom: 0PX;
    font-family: Arial, sans-serif;
}

.footer-container {
    max-width: 95%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1.5fr 1.5fr;
    gap: 40px;
    padding-bottom: 25px;
}


.footer-column h6 {
    color: #F6931E; 
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-column p {
    font-size: 13px;
    line-height: 1.6;
    color: #ccc;
    margin-bottom: 15px;
}


.footer-logo { height: 55px; margin-bottom: 15px; }
.vault-logo { height: 40px; margin-bottom: 15px; }

.footer-social { display: flex; gap: 15px; }

.footer-social img { 
    height: 30px; 

}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.footer-social a:hover {
    transform: scale(1.1);
}


.footer-links { list-style: none; }
.footer-links li { margin-bottom: 20px; margin-top: 18px; }
.footer-links li a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    display: flex;
    align-items: center;
}
.footer-links li a::before {
    content: ">";
    color: #F6931E;
    margin-right: 10px;
    font-weight: bold;
}


.inline-link { color: #fff; text-decoration: underline; }
.more-link {
    color: #fff;
    text-decoration: underline;
    font-size: 12px;
    font-weight: bold;
}


.member-logos {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 10px;
}
.member-logos img { height: 45px; }


.member-logos img[src*="wwc"] {
    height: 68px;
}


.member-logos img[src*="icmm"] {
    height: 35px; 
}


.footer-bottom {
    border-top: 1px solid #333;
    padding: 20px 0;
    background-color: #fff; 
    color: #666;
}

.bottom-container {
    max-width: 95%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.bottom-links a {
    color: #333;
    text-decoration: none;
    margin-left: 20px;
}

.bottom-links a:hover { text-decoration: underline; }


.footer-group { margin-bottom: 20px; }

.footer-group p{
    font-size: 14px;
}

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}


.top-row {
    display: flex;
    justify-content: flex-end;
    border-bottom: 1px solid rgba(255, 255, 255);
    max-height: 100px; 
    opacity: 1;
    overflow: hidden; 
    transition: max-height 0.4s ease, opacity 0.3s ease, border 0.4s ease;
}


.logo {
    height: 60px;
    transition: height 0.4s ease;
}

.logo-section {
    transition: padding 0.4s ease, height 0.4s ease;
}


.header-container {
    transition: background-color 0.4s ease, height 0.4s ease;
}


.header-shrink .top-row {
    max-height: 0;
    opacity: 0;
    border-bottom: 1px solid transparent;
}


.header-shrink .logo-section {
    padding: 5px 50px; 
}

.header-shrink .logo {
    height: 35px; 
}


.header-shrink .header-container {
    background-color: rgba(0, 0, 0, 0.75); 
}


.header-shrink .main-row ul li a {
    padding: 15px 10px; 
    transition: padding 0.4s ease;
}



/* =========================================
   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: #F6931E; 
    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: #F6931E;
    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: #e5821a; /* 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: #F6931E;
    color: white;
    border: none;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    margin-bottom: 20px;
}

.btn-continue:disabled {
    cursor: not-allowed;
    background-color: #F6931E; 
}

.help-wrapper {
    text-align: center;
}

.mtcn-help {
    color: #F6931E;
    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: #F6931E;  
    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: #F6931E; /* 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: #F6931E;
}

/* 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: #F6931E; 
    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;
}



/* ================================
TABLETS GRANDES / LAPTOPS
================================ */
@media (max-width: 1200px){

.logo-section{
    width: 320px;
    padding: 15px 25px;
}

.main-row ul li a{
    font-size: 13px;
    padding: 0 10px;
}

.hero-content h1{
    font-size: 38px;
}

.explore-grid{
    gap: 30px;
}

.footer-container{
    grid-template-columns: 1fr 1fr;
}

.main-grid{
    grid-template-columns: 1fr;
}

.contacts-sidebar{
    max-width: 100%;
}

}


/* ================================
TABLETS
================================ */
@media (max-width: 992px){

.header-container{
    flex-direction: column;
}

.logo-section{
    width: 100%;
    border-right: none;
    justify-content: center;
}

.nav-section{
    width: 100%;
}

.main-row ul{
    flex-wrap: wrap;
}

.main-row ul li{
    flex: 50%;
    padding: 10px 0;
}

.hero-section{
    height: 80vh;
}

.hero-content{
    padding: 0 30px 20px;
}

.hero-content h1{
    font-size: 32px;
}

.share-bar{
    flex-direction: column;
    gap: 20px;
}

.search-container{
    width: 100%;
}

.info-grid{
    grid-template-columns: 1fr;
}

.explore-grid{
    grid-template-columns: 1fr 1fr;
}

.footer-container{
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

}


/* ================================
MÓVILES
================================ */
@media (max-width: 768px){

.top-row{
    display:none;
}

.main-row ul{
    flex-direction: column;
}

.main-row ul li{
    flex: none;
    padding: 10px 0;
}

.hero-section{
    height: 70vh;
}

.hero-content h1{
    font-size: 26px;
}

.hero-content{
    padding: 0 20px 20px;
}

.breadcrumb a{
    font-size: 13px;
}

.content-container{
    padding: 40px 15px;
}

.intro-text{
    font-size: 16px;
}

.explore-grid{
    grid-template-columns: 1fr;
}

.card-overlay h4{
    font-size: 22px;
}

.card-overlay p{
    font-size: 14px;
}

.footer-container{
    grid-template-columns: 1fr;
}

.bottom-container{
    flex-direction: column;
    gap: 10px;
}

.bottom-links{
    margin-top: 10px;
}

.names-grid,
.amount-grid{
    grid-template-columns: 1fr;
}

.date-grid{
    grid-template-columns: 1fr;
}

}



/* ================================
MÓVILES PEQUEÑOS
================================ */
@media (max-width: 480px){

.logo{
    height: 45px;
}

.hero-content h1{
    font-size: 22px;
}

.search-options span{
    font-size: 22px;
}

.mtcn-block input{
    width: 16px;
    font-size: 18px;
}

.btn-continue{
    font-size: 16px;
    padding: 12px;
}

.card-overlay{
    padding: 25px;
}

}

