* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Quicksand', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9fafb;
    font-optical-sizing: auto;
    font-style: normal;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background-color: white;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 200;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 130px;
}

nav ul {
    display: flex;
    list-style: none;
}

nav li a {
    margin: 0 15px;
    text-decoration: none;
    color: #333;
    font-size: 14px;
    font-weight: 700;
}

.language-selector {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    font-size: 14px;
}

.language-selector img {
    width: 20px;
    height: 15px;
}

/* Hero Section */
.hero {
    background: linear-gradient(45deg, #334dd7, #07ffd0);
    color: white;
    padding: 60px 0;
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.hero-text h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    line-height: 1.2;
}

.arrow {
    color: #00d4b4;
    font-weight: bold;
    margin: 0 10px;
}

.hero-text p {
    font-size: 16px;
    margin-bottom: 20px;
    max-width: 500px;
}

.hero-text h3 {
    font-size: 16px;
    margin-bottom: 10px;
}

/* Search Container in Hero */
.search-container {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    width: 100%;
    max-width: 500px;
}

.search-input-wrapper {
    display: flex;
    align-items: center;
    padding: 0 15px;
    gap: 10px;
    flex: 1;
}

.search-input-wrapper svg {
    width: 20px;
    height: 20px;
}

.search-input-wrapper input {
    flex: 1;
    padding: 12px 0;
    border: none;
    outline: none;
    font-size: 14px;
    color: #666;
    background: transparent;
}

.search-input-wrapper input::placeholder {
    color: #aaa;
    font-style: italic;
}

.search-btn {
    background: #00d4b4;
    color: white;
    border: none;
    padding: 12px 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.search-btn:hover {
    background: #00c4a4;
}

.search-btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.hero-image {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.hero-image img {
    width: 100%;
    border-radius: 20px;
    /*box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);*/
}

.graphic-elements {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.qr-code {
    position: absolute;
    top: 20%;
    left: 10%;
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #00d4b4, #1e6fff);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.qr-code::before {
    content: "QR";
    color: white;
    font-weight: bold;
}

.airplane {
    position: absolute;
    bottom: 10%;
    left: 20%;
    width: 120px;
    height: 60px;
    background: #00d4b4;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    transform: rotate(-45deg);
    opacity: 0.7;
}

/* Benefits Section */
.benefits {
    padding: 90px 0;
    background-color: #f9fafb;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.benefit-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    width: 450px;
    /* Ancho fijo para consistencia */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.icon-circle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1e6fff, #00d4b4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
    font-size: 24px;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.benefit-card h4 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

/* Regional Plans */
/* Regional Plans */
.regional-plans {
    padding: 60px 0;
    background-color: white;
    text-align: center;
}

.regional-plans h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.regional-plans p {
    color: #666;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.plan-icons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 90px;
    margin-bottom: 40px;
}

.plan-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 25px;
    border-radius: 15px;
    transition: all 0.3s ease;
    width: 180px;
    text-align: center;
    background: transparent;
    border: 2px solid transparent;
}

.plan-icon:hover {
    background: #f0f7ff;
    border-color: #1e6fff;
    transform: scale(1.05);
}

.plan-icon.active {
    background: #f0f7ff;
    border: 2px solid #1e6fff;
    box-shadow: 0 0 15px rgba(30, 111, 255, 0.3);
}

.icon-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.icon-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.plan-icon span {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin: 0;
}

.show-more {
    background: #1e6fff;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s ease;
}

.show-more:hover {
    background: #1a5bbf;
}

.plan-icon.hidden {
    display: none;
}


/* Countries Banner */
.countries-banner {
    padding: 60px 0;
    /*background: linear-gradient(135deg, #1e6fff, #00d4b4);*/
    background: #334dd7;
    color: white;
    text-align: center;
}

.countries-banner h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.countries-banner h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.countries-banner p {
    max-width: 600px;
    margin: 0 auto 30px;
}

.country-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.country-card {
    background: white;
    color: #333;
    padding: 15px 20px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 280px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.country-cards :hover {

    cursor: pointer;

}

.country-card img {
    width: 80px;
    height: 70px;
    border-radius: 3px;
}

.country-card div {
    flex: 1;
}

.country-card strong {
    display: block;
    font-size: 16px;
    margin-bottom: 5px;
}

.country-card span {
    font-size: 12px;
    color: #666;
    display: block;
}

.arrow {
    color: #00d4b4;
    font-size: 20px;
    font-weight: bold;
}

.contenedor-burbuja {
    width: 280px;
    height: 100px;
    position: relative;
    box-sizing: border-box;
    background-image: url('images/country-bg.5d2f97b8.png');
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
}

.contenedor-burbuja:hover {
    scale: 1.05;
}

.contenido-superpuesto {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding-left: 10px;
    padding-right: 50px;
    box-sizing: border-box;
    z-index: 10;
}

.contenido-superpuesto .info-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.banderax {
    width: 110px;
    height: 110px;
    object-fit: cover;
    padding: 20px;
}

.texto-iso {
    line-height: 1.5;
}

.texto-regionx {
    font-size: 10px;
    font-size: 10px;
    color: #000000;

}

.pais-nombre {
    font-weight: bold;
    font-size: 15px;
    color: #202020;
}

/* Why Dialo Travel? */
.why-dialo {
    padding: 60px 0;
    background-color: #f9fafb;
    text-align: center;
}

.why-dialo h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.why-dialo p {
    color: #666;
    max-width: 600px;
    margin: 0 auto 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.feature-card .icon {
    font-size: 30px;
    margin-bottom: 15px;
    color: #1e6fff;
}

.feature-card h4 {
    margin-bottom: 10px;
}

.feature-card:hover {
    transform: scale(1.05);
    transition: 0.3s ease;
}

/* FAQ Section */
.faq-section {
    padding: 60px 0;
    background-color: white;
    text-align: center;
}

.faq-section h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.faq-section p {
    color: #666;
    margin-bottom: 30px;
}

/* FAQ Search */
.faq-search {
    max-width: 500px;
    margin: 0 auto 20px;
}

.search-input-wrapper {
    display: flex;
    align-items: center;
    background: rgb(248, 248, 248);
    border-radius: 30px;
    padding: 12px 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    gap: 10px;
}

.search-input-wrapper svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.search-input-wrapper input {
    flex: 1;
    padding: 0;
    border: none;
    outline: none;
    font-size: 14px;
    color: #333;
    background: transparent;
}

.search-input-wrapper input::placeholder {
    color: #aaa;
    font-style: italic;

}

.search-input-wrapper input:focus {
    box-shadow: 0 0 0 2px rgba(30, 111, 255, 0.2);
    color: #1a5bbf;
}

.faq-answer {
    padding: 15px 20px;
    background: #fff;
    display: none;
}

.greeting {
    color: #1e6fff;
    font-size: 14px;
    margin-bottom: 30px;
}

.faq-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

.tab {
    background: #f0f0f0;
    padding: 15px 25px;
    border-radius: 15px;
    cursor: pointer;
    font-weight: 500;
}

.tab:hover {
    transform: scale(1.05);
}

.tab.active {
    background: #1e6fff;
    color: white;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #f9fafb;
    border-radius: 10px;
    margin-bottom: 10px;
    overflow: hidden;
}

.faq-question {
    padding: 15px 20px;
    background: #fff;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-weight: 600;
}

.faq-question::after {
    content: "▼";
    font-size: 12px;
}

.faq-answer {
    padding: 15px 20px;
    background: #fff;
    display: none;
}

/* Promo Section */
.promo-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #e0f2fe, #d9eaf7);
    text-align: center;
}

.promo-content {
    display: flex;
    justify-content: space-between;
    align-items: center;


}

.promo-text {
    flex: 1;
    text-align: left;
}

.promo-text h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.promo-text p {
    margin-bottom: 15px;
}

.promo-text h3 {
    font-size: 1.2rem;
    margin: 20px 0 10px;
}

.promo-image {

    background: white;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.promo-image img {
    width: 100%;

}

.game-changers {
    /*background: white;*/
    padding: 40px;
    border-radius: 20px;
    /*box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);*/

    justify-content: space-between;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
}


.game-changers h1 {
    font-size: x-large;
    margin-bottom: 15px;
}

.game-changers h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.game-changers p {
    margin-bottom: 15px;
}

.game-changers h3 {
    font-size: 1.2rem;
    margin: 20px 0 10px;
}


.container-promo {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);

    justify-content: space-between;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
}



.promo-image-right {
    flex: 0 0 250px;
}

.promo-image-right img {
    width: 100%;
    border-radius: 10px;
}

/* Newsletter */
.newsletter {
    padding: 60px 0;
    background: linear-gradient(135deg, #e0f2fe, #d1fae5);
    text-align: center;
    background-image: url(images/bg-1.png);
    background-size: cover;
    background-position: left;
}

.newsletter-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.newsletter-text {
    flex: 1;
    text-align: left;
}

.newsletter-text h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.newsletter-text p {
    margin-bottom: 20px;
    max-width: 500px;
}

.newsletter-text form {
    display: flex;
    gap: 10px;
}

.newsletter-text input {
    flex: 1;
    padding: 12px 20px;
    border: 1px solid #ddd;
    border-radius: 30px;
    font-size: 14px;
}

.newsletter-text button {
    background: #1e6fff;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
}

.newsletter-image {
    flex: 0 0 250px;
    /*background: white;*/
    padding: 20px;
    border-radius: 20px;
    /*box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);*/
}

.newsletter-image img {
    width: 100%;
    border-radius: 10px;
}

/* Footer */
footer {
    background: #f9fafb;
    padding: 40px 0 20px;
    border-top: 1px solid #eee;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-left,
.footer-center,
.footer-right {
    flex: 1;
}

.footer-left .logo {
    height: 60px;
    margin-bottom: 20px;
}

.footer-links {
    margin-bottom: 20px;
    font-size: 14px;
}

.footer-links a {
    color: #333;
    text-decoration: none;
}

.app-stores {
    display: flex;
    gap: 10px;
}

.app-stores img {
    height: 40px;
}

.footer-info h4,
.footer-contact h4 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #333;
}

.footer-info p,
.footer-contact p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.footer-bottom {
    text-align: center;
    font-size: 12px;
    color: #666;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.footer-bottom a {
    color: #1e6fff;
    text-decoration: none;
    margin: 0 5px;
}

/* Selector de lenguaje */
.lang-select {
    background: white;
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 6px 12px;
    font-size: 14px;
    color: #333;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23333'%3e%3cpath d='M7 10l5 5 5-5z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.5rem center;
    background-size: 12px;
    padding-right: 28px;
    min-width: 100px;
    text-align-last: center;
    outline: none;
}


/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #1e6fff;
    /* Azul sólido como en la imagen */
    color: white;
    padding: 15px 20px;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Quicksand', sans-serif;
}

.cookie-content {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 1200px;
    width: 100%;
    text-align: left;
}

.cookie-icon {
    font-size: 24px;
}

.cookie-text {
    flex: 1;
    line-height: 1.5;
    font-size: 14px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.btn-accept {
    background: #4caf50;
    /* Verde como en la imagen */
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.2s ease;
}

.btn-accept:hover {
    background: #45a049;
}

.btn-decline {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.2s ease;
}

.btn-decline:hover {
    background: rgba(255, 255, 255, 0.3);
}


/* Game Changers Section */
.game-changers {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow);
    margin-top: 40px;
}

.game-changers-content {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.game-changers-image {
    flex: 0 0 300px;
}

.game-changers-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;

}

.game-changers-text {
    flex: 1;
    text-align: left;
}

.game-changers-text h1 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.game-changers-text h2 {
    font-size: 1.5rem;
    margin: 25px 0 10px;
    color: var(--text-color);
}

.game-changers-text p {
    margin-bottom: 15px;
    color: #666;
    line-height: 1.6;
}



/* ✅ MEJORADO: Modal - Diseño más moderno y espacioso */
.modal {
    display: none;
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    overflow: auto;
    padding: 20px;
    box-sizing: border-box;
}

.modal-content {
    background: #fff;
    margin: 5% auto;
    padding: 30px;
    border-radius: 24px;
    max-width: 1000px;
    min-height: 70vh;
    /* Mínimo 60% de la altura de la ventana */
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.close {
    color: #777;
    float: right;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.2s ease;
    background: #f8f9fa;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
}

.close:hover,
.close:focus {
    color: #333;
    background: #e9ecef;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #eee;
    gap: 15px;
}

.modal-header h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e6fff;
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-header h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.filter-badge {
    background: linear-gradient(135deg, #1e6fff, #00d4b4);
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(30, 111, 255, 0.3);
    transition: all 0.2s ease;
}

.filter-badge:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 15px rgba(30, 111, 255, 0.4);
}

.filters {
    display: flex;
    gap: 25px;
    margin-bottom: 25px;
    flex-wrap: wrap;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 16px;
    border: 1px solid #dee2e6;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
    min-width: 200px;
}

.filter-group label {
    font-weight: 600;
    color: #495057;
    font-size: 14px;
    margin-bottom: 5px;
}

.filter-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-btn {
    background: #f8f9fa;
    border: 2px solid #dee2e6;
    padding: 8px 16px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    color: #495057;
    text-align: center;
    min-width: 80px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.filter-btn.active {
    background: linear-gradient(135deg, #1e6fff, #2e00d4);
    color: white;


}

.filter-btn:hover {
    background: #06c054;
    border-color: #ced4da;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.plans-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px 0;
}

.plan-card {
    background: #fff;
    border: 2px solid #e9ecef;
    border-radius: 16px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: relative;
    overflow: hidden;
}




.plan-details {
    flex: 1;
}

.plan-name {
    font-weight: 700;
    font-size: 16px;
    color: #333;
    margin: 0 0 5px 0;
    line-height: 1.3;
}

.plan-info {
    font-size: 13px;
    color: #6c757d;
    margin: 5px 0;
    display: flex;
    align-items: center;
    gap: 5px;
}

.plan-info::before {
    content: "•";
    color: #adb5bd;
    font-weight: bold;
}

.plan-price {
    font-weight: 700;
    color: #1e6fff;
    font-size: 20px;
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.plan-price::before {

    font-weight: 600;
    font-size: 16px;
}

.plan-arrow {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #1e6fff, #00d4b4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(30, 111, 255, 0.3);
    transition: all 0.2s ease;
}

.plan-arrow:hover {
    transform: scale(1.1) rotate(45deg);
    box-shadow: 0 6px 15px rgba(30, 111, 255, 0.4);
}

/* ✅ Mejora adicional: Scroll suave dentro del modal */


.modal-content::-webkit-scrollbar {
    width: 1px;
}

.modal-content::-webkit-scrollbar-track {
    /*background: #f1f3f5;*/
    border-radius: 25px;
}

.modal-content::-webkit-scrollbar-thumb {
    /*background: #1e6fff;*/
    border-radius: 25px;
    border:none;
}

.modal-content::-webkit-scrollbar-thumb:hover {
    background: #00d4b4;
}

/* --- ESTILOS PARA EL FILTRO DE PAÍSES EN EL MODAL REGIONAL --- */

.country-filter-container {
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 16px;
    border: 1px solid #dee2e6;
}

.country-filter-container h3 {
    font-size: 14px;
    font-weight: 600;
    color: #495057;
    margin-bottom: 10px;
}

.country-scroll-wrapper {
    overflow-x: scroll;
    /* Habilita el scroll horizontal */
    white-space: nowrap;
    /* Evita que los botones salten de línea */
    padding-bottom: 10px;
    /* Espacio para la barra de scroll */
    cursor: grab;
}

.country-buttons-container {
    display: inline-flex;
    /* Permite el scroll horizontal en el contenedor de botones */
    gap: 8px;
    padding-right: 5px;
    /* Un poco de espacio al final del scroll */
}

.country-filter-btn {
    flex-shrink: 0;
    /* Asegura que el botón no se encoja */
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    padding: 6px 12px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s ease;
    color: #495057;
    white-space: normal;
    /* Permitir que el texto se ajuste si es muy largo, aunque la imagen sugiere una línea */
    text-align: center;
    min-width: 80px;
    max-width: 150px;
    /* Limitar el ancho del botón */
}

.country-filter-btn.active {
    background: linear-gradient(135deg, #1e6fff, #2e00d4);
    color: white;
    border-color: #1e6fff;
}

.country-filter-btn:not(.active):hover {
    background: #e9ecef;
    border-color: #adb5bd;
}

.country-flag-icon {
    width: 16px;
    height: 12px;
    margin-right: 4px;
    vertical-align: middle;
}

/* Estilos para la barra de scroll visual (opcional, para emular la imagen) */
.scroll-track {
    height: 8px;
    background: #e9ecef;
    border-radius: 4px;
    margin-top: 5px;
    position: relative;
}

.scroll-thumb {
    height: 100%;
    background: #1e6fff;
    /* Color azul */
    border-radius: 4px;
    width: 20%;
    /* Ancho inicial del pulgar de scroll, se ajustará con JS */
    position: absolute;
    left: 0;
}

/* Hamburger menu styles */
.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Ocultar menú en móviles por defecto */
.main-nav {
    display: block;
}

/* Animación al abrir el menú hamburguesa */
.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* ✅ Responsive: Ajustes para pantallas pequeñas */
@media (max-width: 768px) {
    .modal-content {
        margin: 10% auto;
        padding: 20px;
        max-width: 95%;
        min-height: 50vh;
    }

    .modal-header h2 {
        font-size: 1.5rem;
    }

    .modal-header h3 {
        font-size: 1rem;
    }

    .filters {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
    }

    .filter-group {
        min-width: auto;
    }

    .plan-card {
        padding: 15px;
    }

    .plan-name {
        font-size: 14px;
    }

    .plan-info {
        font-size: 12px;
    }

    .plan-price {
        font-size: 18px;
    }

    .plan-arrow {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }
}

.app-promo-section {
    background: linear-gradient(90deg, #334dd7, #07ffd0); /* Gradiente similar al del banner */
    padding: 40px 0;
    color: white;
    
    margin: 0px auto;
    max-width: 100%; /* Opcional: limita el ancho si quieres que esté centrado */
}

.promo-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    gap: 40px;
}

.promo-text-content {
    flex: 2;
    text-align: left;
}

.promo-text-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
}

.app-store-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.app-store-links a {
    display: block;
    line-height: 0; /* Para que las imágenes no agreguen espacio extra */
}

.app-store-logo {
    height: 50px; /* Ajusta según el tamaño real de tus logos */
    border-radius: 8px;
    transition: transform 0.2s ease;
}

.app-store-logo:hover {
    transform: scale(1.05);
}

.promo-image-content {
    flex: 1;
    display: flex;
    justify-content: flex-end; /* Alinea la imagen a la derecha */
}

.mobile-screenshot {
    max-width: 250px; /* Ajusta el tamaño del teléfono si es necesario */
    height: auto;
    /* Posicionamiento y otros ajustes visuales se manejan con el layout de flexbox y padding */
}



/* ✅ Responsive Design Mejorado - Menú Hamburguesa Centrado */
@media (max-width: 768px) {
    /* Header */
    .header-content {
        flex-direction: row;
        gap: 15px;
        padding: 0 20px; /* Aseguramos padding lateral */
        align-items: center; /* Centramos todo horizontalmente */
    }

    /* Botón hamburguesa */
    .hamburger {
        display: flex;
        order: 1; /* Lo movemos después del logo */
        margin-top: 1px; /* Espacio entre logo y hamburguesa */
        margin-left: 20%;
    }

    /* Logo */
    .logo {
        height: 60px;
        
    }

    /* Selector de idioma */
    .language-selector {
        display: block;
        order: 2; /* Lo movemos después del menú */
        margin-top: 1px; /* Espacio entre menú y selector */
        margin-left: 0; /* Eliminamos margen izquierdo */
        width: 100%; /* Ocupa todo el ancho */
        text-align: right; /* Centra el contenido dentro del selector */
    }

    /* Menú de navegación */
    nav.main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: white;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        z-index: 999;
        padding: 20px;
        display: none;
        /* Oculto por defecto */
    }

    nav.main-nav.active {
        display: block;
    }

    nav ul {
        flex-direction: column;
        gap: 15px;
        align-items: center; /* Centra los enlaces */
        width: 100%; /* Ocupa todo el ancho disponible */
        padding: 0; /* Elimina padding extra */
        margin: 0; /* Elimina margen extra */
    }

    nav li a {
        margin: 0;
        font-size: 16px;
        color: #333;
        text-decoration: none;
        display: block;
        padding: 8px 0;
        width: 100%; /* Asegura que el enlace ocupe todo el ancho */
        text-align: center; /* Centra el texto del enlace */
        transition: background-color 0.2s ease;
    }

    nav li a:hover {
        background-color: #f0f0f0; /* Efecto hover opcional */
    }

    /* Estilos adicionales para mantener la coherencia visual */
    .container {
        max-width: 100%; /* Para pantallas pequeñas, no limitar el ancho */
        padding: 0 15px; /* Padding más pequeño en móviles */
    }

    /* Game Changers Mobile */
    .game-changers-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    .game-changers-image {
        flex: 0 0 auto;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    .game-changers-text {
        text-align: center;
    }
    .game-changers-text h1,
    .game-changers-text h2 {
        font-size: 1.5rem;
        text-align: center;
    }
    .game-changers-text p {
        text-align: center;
    }

    /* Hero */
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    .hero-text h1 {
        font-size: 2rem;
    }
    .hero-text p {
        max-width: 100%;
    }
    .search-container {
        max-width: 100%;
    }

    /* Benefits - Corrige estructura visual */
    .benefits {
        padding: 50px 0;
        flex-direction: column;
        align-items: center;
    }
    .benefit-card {
        width: 100%;
        max-width: 400px;
        margin-bottom: 20px;
    }

    /* Regional Plans */
    .plan-icons {
        gap: 30px;
    }
    .plan-icon {
        width: 130px;
        padding: 15px;
    }
    .icon-circle {
        width: 80px;
        height: 80px;
    }
    .plan-icon span {
        font-size: 13px;
    }

    /* Countries Banner */
    .country-cards {
        flex-direction: column;
        align-items: center;
    }
    .country-card {
        min-width: 100%;
        max-width: 400px;
        margin-bottom: 15px;
        justify-content: space-between;
    }
    .country-card img {
        width: 60px;
        height: 50px;
    }

    /* Why Dialo Travel */
    .features-grid {
        grid-template-columns: 1fr;
    }

    /* FAQ */
    .faq-tabs {
        flex-direction: column;
        gap: 10px;
    }
    .tab {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    /* Promo Section */
    .promo-content,
    .newsletter-content {
        flex-direction: column;
        gap: 30px;
    }
    .promo-text,
    .newsletter-text {
        text-align: center;
    }
    .newsletter-form {
        justify-content: center;
    }

    /* Footer */
    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    .app-stores {
        justify-content: center;
    }

    /* Cookie Banner */
    .cookie-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    .cookie-buttons {
        width: 100%;
        justify-content: center;
        gap: 10px;
    }
    .btn-accept,
    .btn-decline {
        width: 100%;
        max-width: 150px;
        padding: 10px;
    }

    /* Promo Banner Appstores */

    .promo-container {
        flex-direction: column;
        text-align: center;
        padding: 0 25px;
    }

    .promo-text-content h2 {
        font-size: 2rem;
        margin-top: 10px;
    }

    .promo-image-content {
        justify-content: center;
    }

    .mobile-screenshot {
        max-width: 280px;
        order: -1; /* Poner la imagen arriba en móvil */
    }
    
    .app-store-links {
        justify-content: center;
    }
    .app-promo-section {
        padding: 30px 0;
        margin: 30px auto;
    }
    .promo-text-content h2 {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    .app-store-logo {
        height: 45px;
    }
    /* Modal */
    .modal-content {
        margin: 10% auto;
        padding: 20px;
        max-width: 95%;
        min-height: 50vh;
    }
    .modal-header h2 {
        font-size: 1.5rem;
    }
    .modal-header h3 {
        font-size: 1rem;
    }
    .filters {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
    }
    .filter-group {
        min-width: auto;
    }
    .plan-card {
        padding: 15px;
    }
    .plan-name {
        font-size: 14px;
    }
    .plan-info {
        font-size: 12px;
    }
    .plan-price {
        font-size: 18px;
    }
    .plan-arrow {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }
}