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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Header */
header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: white;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    border-bottom: 1px solid #e5e7eb;
}

.header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1e3a8a;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.check-status {
    color: #1e3a8a;
    text-decoration: none;
    font-weight: 500;
}

.check-status:hover {
    color: #1e40af;
}

.language-selector {
    position: relative;
    display: inline-block;
}

.language-btn {
    background: none;
    border: none;
    color: #1e3a8a;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    padding: 0.5rem;
}

.language-dropdown {
    display: none;
    position: absolute;
    right: 0;
    margin-top: 0.5rem;
    width: 128px;
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    border: 1px solid #e5e7eb;
}

.language-selector:hover .language-dropdown {
    display: block;
}

.language-dropdown button {
    width: 100%;
    text-align: left;
    padding: 0.5rem 1rem;
    background: none;
    border: none;
    cursor: pointer;
}

.language-dropdown button:hover {
    background: #f9fafb;
}

.apply-btn-header {
    background: #dc2626;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.apply-btn-header:hover {
    background: #b91c1c;
}

/* Urgency Bar */
.urgency-bar {
    background: linear-gradient(to right, #dc2626, #b91c1c);
    color: white;
    padding: 0.75rem 0;
}

.urgency-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Hero Section */
.hero {
    position: relative;
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #1e3a8a 100%);
    color: white;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: black;
    opacity: 0.2;
}

.hero-container {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
}


/* quitar segunda columna desktop */
/*
@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 2fr 1fr;
    }
}
*/

.hero-content h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .hero-content h1 {
        font-size: 3rem;
    }
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #bfdbfe;
}

.hero-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .hero-benefits {
        flex-direction: row;
    }
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.check-icon {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
}

.trust-badge {
    font-size: 0.875rem;
    color: #bfdbfe;
}

/* Form */
.hero-form {
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    color: #111827;
}

.hero-form h2 {
    font-size: 1.25rem;
    font-weight: bold;
    color: #1e3a8a;
    margin-bottom: 0.25rem;
}

.hero-form > p {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 0.75rem;
}

.form-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.25rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    outline: none;
}

.form-group input:focus,
.form-group select:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.submit-btn {
    width: 100%;
    background: #dc2626;
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    border: none;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 0.75rem;
}

.submit-btn:hover {
    background: #b91c1c;
}

.secure-text {
    font-size: 0.75rem;
    color: #6b7280;
    text-align: center;
    margin-top: 0.75rem;
}

/* Value Proposition */
.value-prop {
    padding: 4rem 0;
    background: #f9fafb;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.value-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .value-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .value-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    text-align: center;
    transition: box-shadow 0.3s;
}

.value-card:hover {
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.value-icon {
    width: 3rem;
    height: 3rem;
    color: #dc2626;
    margin: 0 auto 1rem;
}

.value-card h3 {
    font-size: 1.25rem;
    font-weight: bold;
    color: #1e3a8a;
    margin-bottom: 0.75rem;
}

.value-card p {
    color: #6b7280;
}

/* How We Help */
.how-help {
    padding: 4rem 0;
    background: white;
}

.section-title {
    font-size: 2rem;
    font-weight: bold;
    color: #1e3a8a;
    text-align: center;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
}

.help-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .help-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.help-card {
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    display: flex;
    gap: 1rem;
}

.help-icon-box {
    width: 3rem;
    height: 3rem;
    background: #fee2e2;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.help-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: #dc2626;
}

.help-card h3 {
    font-size: 1.25rem;
    font-weight: bold;
    color: #1e3a8a;
    margin-bottom: 0.5rem;
}

.help-card p {
    color: #6b7280;
}

/* What is TDAC */
.what-tdac {
    padding: 4rem 0;
    background: #f9fafb;
}

.tdac-content {
    max-width: 56rem;
    margin: 0 auto;
    text-align: center;
}

.tdac-content p {
    font-size: 1.125rem;
    color: #374151;
    line-height: 1.75;
    margin-bottom: 1rem;
}

/* Countries */
.countries {
    padding: 4rem 0;
    background: white;
}

.countries-content {
    text-align: center;
}

.countries-content p {
    color: #6b7280;
    font-size: 1.125rem;
}

/* Steps */
.steps {
    padding: 4rem 0;
    background: #f9fafb;
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.step-card {
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    display: flex;
    gap: 1.5rem;
}

.step-number {
    width: 4rem;
    height: 4rem;
    background: #dc2626;
    color: white;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.875rem;
    font-weight: bold;
    flex-shrink: 0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.step-content {
    flex: 1;
}

.step-icon {
    width: 2.5rem;
    height: 2.5rem;
    color: #1e3a8a;
    margin-bottom: 0.75rem;
}

.step-card h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1e3a8a;
    margin-bottom: 0.75rem;
}

.step-card p {
    color: #6b7280;
}

/* Comparison Table */
.comparison {
    padding: 4rem 0;
    background: white;
}

.comparison-container {
    max-width: 80rem;
    margin: 0 auto;
}

.table-wrapper {
    overflow-x: auto;
}

table {
    width: 100%;
    background: white;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

thead {
    background: #1e3a8a;
    color: white;
}

th {
    padding: 1rem 1.5rem;
    text-align: left;
    font-weight: 600;
    font-size: 1.125rem;
}

th:nth-child(2),
th:nth-child(3) {
    text-align: center;
}

th:nth-child(3) {
    background: #dc2626;
}

tbody tr {
    border-bottom: 1px solid #e5e7eb;
}

tbody tr:hover {
    background: #f9fafb;
}

td {
    padding: 1rem 1.5rem;
}

td:nth-child(2),
td:nth-child(3) {
    text-align: center;
}

td:nth-child(3) {
    background: #f0fdf4;
}

.comparison-cell {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.icon-check-green {
    width: 1.5rem;
    height: 1.5rem;
    color: #16a34a;
}

.icon-check-blue {
    width: 1.5rem;
    height: 1.5rem;
    color: #2563eb;
}

.icon-alert {
    width: 1.5rem;
    height: 1.5rem;
    color: #f97316;
}

.comparison-text {
    font-size: 0.875rem;
    color: #6b7280;
}

.comparison-text-bold {
    font-size: 0.875rem;
    color: #111827;
    font-weight: 600;
}

.cta-center {
    text-align: center;
    margin-top: 3rem;
}

.cta-btn {
    background: #dc2626;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 9999px;
    font-size: 1.125rem;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 10px 15px rgba(0,0,0,0.1);
}

.cta-btn:hover {
    background: #b91c1c;
    transform: scale(1.05);
}

/* Trust Section */
.trust {
    padding: 4rem 0;
    background: white;
}

.trust-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 56rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.trust-item {
    display: flex;
    gap: 1rem;
}

.trust-icon-box {
    width: 3rem;
    height: 3rem;
    background: #dcfce7;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.trust-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: #16a34a;
}

.trust-item h3 {
    font-size: 1.125rem;
    font-weight: bold;
    color: #1e3a8a;
    margin-bottom: 0.25rem;
}

.trust-item p {
    color: #6b7280;
}

.testimonials {
    margin-top: 3rem;
    background: #eff6ff;
    border-left: 4px solid #1e3a8a;
    padding: 2rem;
    border-radius: 0.5rem;
    max-width: 56rem;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-header {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.testimonial-icon {
    width: 2rem;
    height: 2rem;
    color: #1e3a8a;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.testimonials h3 {
    font-size: 1.25rem;
    font-weight: bold;
    color: #1e3a8a;
}

.testimonial-list {
    margin-top: 1rem;
}

.testimonial-item {
    margin-bottom: 1rem;
}

.testimonial-item:last-child {
    margin-bottom: 0;
}

blockquote {
    color: #374151;
    font-style: italic;
}

.testimonial-author {
    display: block;
    font-size: 0.875rem;
    color: #6b7280;
    margin-top: 0.5rem;
    font-style: normal;
}

/* Notice */
.notice-section {
    padding: 2rem 0;
    
}

.notice-box {
    background: #eff6ff;
    border-left: 4px solid #2563eb;
    padding: 1.5rem;
    border-radius: 0.5rem;
    max-width: 56rem;
    margin: 0 auto;
}

.notice-content {
    display: flex;
    gap: 0.75rem;
}

.notice-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: #2563eb;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.notice-box h4 {
    font-weight: bold;
    color: #1e3a8a;
    margin-bottom: 0.5rem;
}

.notice-box p {
    font-size: 0.875rem;
    color: #1e3a8a;
    line-height: 1.5;
}

/* Footer */
footer {
    background: #172554;
    color: white;
    padding: 3rem 0;
}

.footer-disclaimer {
    background: #fffbeb;
    border-left: 4px solid #f59e0b;
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin-bottom: 2rem;
}

.footer-disclaimer-content {
    display: flex;
    gap: 0.75rem;
}

.disclaimer-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: #d97706;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.footer-disclaimer h4 {
    font-weight: bold;
    color: #78350f;
    margin-bottom: 0.5rem;
}

.footer-disclaimer p {
    font-size: 0.875rem;
    color: #92400e;
    line-height: 1.5;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer-section h3 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #bfdbfe;
}

.footer-section h4 {
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding-left:0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #bfdbfe;
    text-decoration: none;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #1e40af;
    padding-top: 2rem;
    text-align: center;
    color: #bfdbfe;
    font-size: 0.875rem;
}

@media (max-width: 640px) {
    .check-status {
        display: none;
    }
}

.language-dropdown{margin-top: -5px;margin-right: -70px;}
.language-dropdown a{display:block;padding:10px;text-decoration:none;}
.language-dropdown a:hover{background:#1e3a8a;color:white;}

.apply-btn-header{text-decoration:none;}


@media (max-width: 640px) {
    .table-wrapper td { 
        padding: 0.3rem .5rem 0.3rem 0;
    }
}

/* flags */

@media (min-width: 640px) {
    .select_countries{
        max-width: 700px;
        margin: auto;
    }
}

.search-box {
    max-width: 400px;
    margin: 2rem auto;
}

.search-box .form-control {
    border-radius: 30px;
    padding: 12px 20px;
    border: 1px solid #e9ecef;
    box-shadow: 0 3px 10px rgb(0 0 0 / .05);
}

.flag-item {
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    border-radius: 50%;
    background-color: var(--white);
    box-shadow: 0 3px 15px rgb(0 0 0 / .08);
    position: relative;
    overflow: hidden;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.flag-item img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 60%;
    max-height: 60%;
    object-fit: contain;
}

.flag-name {
    display: block;
    text-align: center;
    font-size: .85rem;
    margin-top: .5rem;
    color: #212529;
    font-weight: 500;
}
 
a.flag-link {
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
    cursor: pointer;
}