/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Currency Ticker */
.currency-ticker {
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.95), rgba(41, 128, 185, 0.95));
    color: white;
    padding: 0.5rem 1rem;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 10;
    border-bottom-left-radius: 10px;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.ticker-content {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.85rem;
}

.ticker-flags {
    font-size: 1.2rem;
    display: flex;
    align-items: center;
}

.ticker-rate {
    color: #fff;
    font-weight: 700;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.ticker-update {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.75rem;
    font-style: italic;
}

/* Header */
.header {
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    color: white;
    padding: 1.5rem 0 1rem 0;
    position: relative;
    overflow: hidden;
}

.header-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
    position: relative;
}

.logo i {
    font-size: 3rem;
    color: #fff;
    filter: drop-shadow(0 0 10px rgba(116, 185, 255, 0.8));
    animation: skiFloat 3s ease-in-out infinite;
}

@keyframes skiFloat {
    0%, 100% {
        transform: translateY(0) rotate(-10deg);
    }
    50% {
        transform: translateY(-10px) rotate(-15deg);
    }
}

.logo h1 {
    font-size: 3rem;
    font-weight: 900;
    text-shadow: 
        3px 3px 0px rgba(41, 128, 185, 0.8),
        6px 6px 0px rgba(0, 0, 0, 0.2),
        0 0 20px rgba(255, 255, 255, 0.5);
    letter-spacing: 2px;
    background: linear-gradient(180deg, #fff 0%, #e3f2fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.logo h1::before {
    content: 'Ski no Chile';
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    text-shadow: 
        -1px -1px 0 #fff,
        1px -1px 0 #fff,
        -1px 1px 0 #fff,
        1px 1px 0 #fff,
        0 0 30px rgba(116, 185, 255, 0.5);
    -webkit-text-fill-color: #fff;
}

.subtitle {
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 300;
}

/* Snow Animation */
.snow-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.snowflake {
    position: absolute;
    top: -10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    animation: fall linear infinite;
}

.snowflake:nth-child(1) { left: 10%; animation-duration: 3s; animation-delay: 0s; }
.snowflake:nth-child(2) { left: 20%; animation-duration: 4s; animation-delay: 1s; }
.snowflake:nth-child(3) { left: 30%; animation-duration: 3.5s; animation-delay: 0.5s; }
.snowflake:nth-child(4) { left: 40%; animation-duration: 5s; animation-delay: 1.8s; }
.snowflake:nth-child(5) { left: 50%; animation-duration: 4.5s; animation-delay: 1s; }

@keyframes fall {
    to {
        transform: translateY(100vh);
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.9), rgba(155, 89, 182, 0.85)),
                url('https://images.unsplash.com/photo-1551698618-1dfe5d97d256?w=1600&q=80') center/cover;
    padding: 2.5rem 0 2rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, 
        rgba(255, 255, 255, 0.1) 0%, 
        rgba(255, 255, 255, 0.95) 100%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 0.8rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8);
    line-height: 1.3;
}

.hero-content p {
    font-size: 1rem;
    color: #34495e;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    min-width: 140px;
}

.stat:hover {
    transform: translateY(-5px);
}

.stat .number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #3498db;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.5);
}

.stat .label {
    font-size: 0.85rem;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Tabs */
.tabs-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 1.5rem 0;
    border-bottom: 3px solid #3498db;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.tabs-hint {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-weight: 500;
    animation: fadeInDown 0.5s ease;
}

.tabs-hint i {
    color: #3498db;
    margin-right: 0.5rem;
    animation: bounceDown 2s infinite;
    transform: rotate(180deg);
    display: inline-block;
}

@keyframes bounceDown {
    0%, 20%, 50%, 80%, 100% {
        transform: rotate(180deg) translateY(0);
    }
    40% {
        transform: rotate(180deg) translateY(5px);
    }
    60% {
        transform: rotate(180deg) translateY(3px);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-5px);
    }
    60% {
        transform: translateY(-3px);
    }
}

.tabs {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 0.5rem;
    scrollbar-width: thin;
    scrollbar-color: #3498db #f8f9fa;
}

.tabs::-webkit-scrollbar {
    height: 6px;
}

.tabs::-webkit-scrollbar-track {
    background: #f8f9fa;
    border-radius: 10px;
}

.tabs::-webkit-scrollbar-thumb {
    background: #3498db;
    border-radius: 10px;
}

.tab-button {
    background: white;
    border: 2px solid #e9ecef;
    padding: 0.9rem 1.5rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    white-space: nowrap;
    font-size: 0.95rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
}

.tab-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(52, 152, 219, 0.2), transparent);
    transition: left 0.5s ease;
}

.tab-button:hover::before {
    left: 100%;
}

.tab-button:hover {
    border-color: #3498db;
    color: #3498db;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.tab-button.active {
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-color: #2980b9;
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 5px 20px rgba(52, 152, 219, 0.4);
}

.tab-button.active::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 3px;
    background: white;
    border-radius: 2px;
}

.tab-button i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.tab-button:hover i,
.tab-button.active i {
    transform: scale(1.2) rotate(5deg);
}

/* Main Content */
.main-content {
    background: white;
    padding: 3rem 0;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.tab-content h3 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 2rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

/* Price Grid */
.price-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.price-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid #f8f9fa;
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.price-card.best-value {
    border-color: #27ae60;
    transform: scale(1.02);
}

.price-card.premium {
    border-color: #f39c12;
}

.badge {
    position: absolute;
    top: -10px;
    left: 20px;
    background: #27ae60;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.premium .badge {
    background: #f39c12;
}

.price-card h4 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 600;
}

.price {
    margin-bottom: 1.5rem;
    text-align: center;
}

.price .currency {
    font-size: 1rem;
    color: #666;
    vertical-align: top;
}

.price .amount {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0.5rem;
}

.price .conversion {
    display: block;
    font-size: 1.2rem;
    color: #27ae60;
    font-weight: 600;
    margin-top: 0.5rem;
}

.features {
    list-style: none;
    margin-bottom: 2rem;
}

.features li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
}

.features i {
    color: #3498db;
    width: 20px;
}

.contact-btn {
    width: 100%;
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.contact-btn:hover {
    background: linear-gradient(135deg, #2980b9, #21618c);
    transform: translateY(-2px);
}

/* Tips Section */
.tips-section {
    background: #f8f9fa;
    padding: 4rem 0;
}

.tips-section h3 {
    text-align: center;
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.tip-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.tip-card:hover {
    transform: translateY(-5px);
}

.tip-card i {
    font-size: 3rem;
    color: #3498db;
    margin-bottom: 1rem;
}

.tip-card h4 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.tip-card p {
    color: #666;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-info h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.footer-info p {
    color: #bdc3c7;
    line-height: 1.6;
}

.footer-links h5,
.footer-contact h5 {
    margin-bottom: 1rem;
    color: #74b9ff;
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #74b9ff;
}

.footer-contact p {
    color: #bdc3c7;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 1rem;
    text-align: center;
    color: #bdc3c7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .tabs {
        gap: 0.5rem;
    }
    
    .tab-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .price-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .price-card {
        padding: 1.5rem;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .logo h1 {
        font-size: 2rem;
    }
    
    .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .tab-content h3 {
        font-size: 1.5rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .price .amount {
        font-size: 1.8rem;
    }
}/* New C
omparison Table Styles */
.section-intro {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    font-style: italic;
}

.comparison-table-container {
    overflow-x: auto;
    margin: 2rem 0;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 15px;
    overflow: hidden;
}

.comparison-table thead {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
}

.comparison-table th {
    padding: 1.2rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.comparison-table td {
    padding: 1rem 1.2rem;
    border-bottom: 1px solid #f1f2f6;
    vertical-align: top;
}

.comparison-table tbody tr:hover {
    background: #f8f9fa;
    transform: scale(1.01);
    transition: all 0.2s ease;
}

.comparison-table .highlight-row {
    background: #e8f5e8;
    border-left: 4px solid #27ae60;
}

.comparison-table .highlight-row:hover {
    background: #d4edda;
}

.comparison-table td:nth-child(2),
.comparison-table td:nth-child(3),
.comparison-table td:nth-child(4) {
    font-weight: 600;
    color: #2c3e50;
}

.comparison-table small {
    color: #27ae60;
    font-weight: 600;
}

.data-note {
    background: #f8f9fa;
    border-left: 4px solid #74b9ff;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 10px 10px 0;
}

.data-note p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

.data-note i {
    color: #74b9ff;
    margin-right: 0.5rem;
}

/* Equipment Extras */
.equipment-extras {
    margin: 3rem 0;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
}

.equipment-extras h4 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.extras-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.extra-item {
    background: white;
    padding: 1rem;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.item-name {
    font-weight: 600;
    color: #2c3e50;
}

.item-price {
    color: #27ae60;
    font-weight: 600;
}

/* Transport Only Section */
.only-transport {
    margin: 3rem 0;
}

.only-transport h4 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.transport-only-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.transport-item {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-left: 4px solid #74b9ff;
}

.company-name {
    display: block;
    font-weight: 700;
    color: #2c3e50;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.price-range {
    display: block;
    color: #27ae60;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.service-type {
    display: block;
    color: #666;
    font-size: 0.9rem;
    font-style: italic;
}

/* Airport Tips */
.airport-tips {
    margin: 3rem 0;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
}

.airport-tips h4 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tips-list {
    display: grid;
    gap: 1rem;
}

.tip-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.tip-item i {
    color: #74b9ff;
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.tip-item span {
    color: #666;
    line-height: 1.5;
}

/* Responsive adjustments for tables */
@media (max-width: 768px) {
    .comparison-table {
        font-size: 0.85rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 0.8rem 0.6rem;
    }
    
    .extras-grid {
        grid-template-columns: 1fr;
    }
    
    .transport-only-grid {
        grid-template-columns: 1fr;
    }
    
    .extra-item,
    .tip-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .comparison-table-container {
        margin: 1rem -20px;
        border-radius: 0;
    }
    
    .comparison-table {
        border-radius: 0;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 0.6rem 0.4rem;
        font-size: 0.8rem;
    }
    
    .section-intro {
        font-size: 1rem;
        padding: 0 10px;
    }
}/* 
Contacts Section Styles */
.contacts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.contact-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border-left: 4px solid #74b9ff;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.contact-card h4 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.contact-link.whatsapp {
    background: #e8f5e8;
    color: #25d366;
    border-color: #25d366;
}

.contact-link.whatsapp:hover {
    background: #25d366;
    color: white;
}

.contact-link.email {
    background: #fff5f5;
    color: #e74c3c;
    border-color: #e74c3c;
}

.contact-link.email:hover {
    background: #e74c3c;
    color: white;
}

.contact-link.instagram {
    background: #fdf2f8;
    color: #e91e63;
    border-color: #e91e63;
}

.contact-link.instagram:hover {
    background: #e91e63;
    color: white;
}

.contact-link i {
    font-size: 1.2rem;
}

.contact-note {
    color: #666;
    font-size: 0.9rem;
    font-style: italic;
    margin: 0;
}

/* Experience Section Styles */
.experience-section {
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    margin: 2rem 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-left: 4px solid #f39c12;
}

.experience-section h4 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.4rem;
    border-bottom: 2px solid #f8f9fa;
    padding-bottom: 1rem;
}

.experience-content {
    line-height: 1.7;
}

.experience-highlight {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.highlight-item {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.highlight-label {
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.highlight-value {
    font-size: 1.1rem;
    color: #2c3e50;
    font-weight: 700;
}

.experience-content p {
    color: #555;
    margin: 1rem 0;
}

.experience-content p strong {
    color: #2c3e50;
}

/* Budget Table Styles */
.budget-table-container {
    overflow-x: auto;
    margin: 2rem 0;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.budget-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 15px;
    overflow: hidden;
}

.budget-table thead {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
}

.budget-table th {
    padding: 1.2rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.budget-table td {
    padding: 1rem 1.2rem;
    border-bottom: 1px solid #f1f2f6;
    vertical-align: top;
}

.budget-table tbody tr:hover {
    background: #fff8f0;
}

.budget-table .total-row {
    background: #f39c12;
    color: white;
    font-weight: 700;
}

.budget-table .total-row:hover {
    background: #e67e22;
}

.budget-table .total-row td {
    border-bottom: none;
    font-size: 1.1rem;
}

/* Responsive adjustments for new sections */
@media (max-width: 768px) {
    .contacts-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-card {
        padding: 1.5rem;
    }
    
    .experience-section {
        padding: 2rem;
    }
    
    .experience-highlight {
        grid-template-columns: 1fr;
        padding: 1rem;
    }
    
    .budget-table th,
    .budget-table td {
        padding: 0.8rem 0.6rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .contact-info {
        gap: 0.6rem;
    }
    
    .contact-link {
        padding: 0.6rem 0.8rem;
        font-size: 0.9rem;
    }
    
    .experience-section {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .experience-section h4 {
        font-size: 1.2rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .budget-table-container {
        margin: 1rem -20px;
        border-radius: 0;
    }
    
    .budget-table {
        border-radius: 0;
        font-size: 0.8rem;
    }
    
    .budget-table th,
    .budget-table td {
        padding: 0.6rem 0.4rem;
    }
}
/* Ex
change Rate Info Styles */
.exchange-rate-info {
    background: linear-gradient(135deg, #27ae60, #229954);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    margin: 1.5rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    box-shadow: 0 5px 15px rgba(39, 174, 96, 0.3);
}

.exchange-rate-info i {
    font-size: 1.2rem;
    animation: rotate 2s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.exchange-rate-info span {
    font-size: 1rem;
}

.exchange-rate-display {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
}

.exchange-update-info {
    font-size: 0.9rem;
    opacity: 0.9;
    font-style: italic;
    margin-left: auto;
}

.package-note {
    background: #fff8e1;
    border-left: 4px solid #f39c12;
    padding: 1rem;
    margin-top: 1.5rem;
    border-radius: 0 8px 8px 0;
}

.package-note p {
    margin: 0;
    color: #666;
    font-size: 1rem;
}

.package-note strong {
    color: #2c3e50;
}

/* Responsive adjustments for exchange rate info */
@media (max-width: 768px) {
    .exchange-rate-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .exchange-update-info {
        margin-left: 0;
    }
}

@media (max-width: 480px) {
    .exchange-rate-info {
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    .exchange-rate-display {
        font-size: 1rem;
    }
}

/* Live Badge Styles */
.live-badge {
    background: #000;
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.rec-dot {
    width: 8px;
    height: 8px;
    background: #ff0000;
    border-radius: 50%;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.2);
    }
}

.currency-flags {
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

/* Responsive Tabs Improvements */
@media (max-width: 1024px) {
    .tabs {
        gap: 0.6rem;
        padding: 0.5rem 1rem;
    }
    
    .tab-button {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .tabs-hint {
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .tabs-section {
        padding: 1rem 0;
    }
    
    .tabs {
        gap: 0.5rem;
        padding: 0.5rem;
        justify-content: flex-start;
    }
    
    .tab-button {
        padding: 0.7rem 1rem;
        font-size: 0.85rem;
        flex-shrink: 0;
    }
    
    .tab-button i {
        font-size: 1rem;
    }
    
    .tabs-hint {
        font-size: 0.8rem;
        margin-bottom: 0.8rem;
    }
}

@media (max-width: 480px) {
    .tabs {
        gap: 0.4rem;
    }
    
    .tab-button {
        padding: 0.6rem 0.8rem;
        font-size: 0.8rem;
        gap: 0.3rem;
    }
    
    .tab-button i {
        font-size: 0.9rem;
    }
    
    .tabs-hint {
        font-size: 0.75rem;
        margin-bottom: 0.6rem;
    }
}

/* Currency Ticker Responsive */
@media (max-width: 1024px) {
    .currency-ticker {
        padding: 0.5rem 0.8rem;
    }
    
    .ticker-content {
        gap: 0.6rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .currency-ticker {
        position: relative;
        width: 100%;
        border-radius: 0;
        text-align: center;
        padding: 0.6rem 0.5rem;
    }
    
    .ticker-content {
        justify-content: center;
        gap: 0.5rem;
        font-size: 0.75rem;
        flex-wrap: wrap;
    }
    
    .ticker-update {
        width: 100%;
        text-align: center;
        font-size: 0.65rem;
        margin-top: 0.2rem;
    }
}

@media (max-width: 480px) {
    .currency-ticker {
        padding: 0.5rem;
    }
    
    .ticker-content {
        font-size: 0.7rem;
        gap: 0.4rem;
    }
    
    .ticker-label {
        font-size: 0.7rem;
    }
    
    .ticker-rate {
        font-size: 0.75rem;
    }
}

/* Hero Visual Enhancements */
.hero .ski-emoji {
    position: absolute;
    font-size: 8rem;
    opacity: 0.05;
    top: 50%;
    left: 10%;
    transform: translateY(-50%) rotate(-15deg);
    z-index: 1;
}

/* Animated snow particles in hero */
@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* Ticker flags animation */
.ticker-flags {
    animation: fadeIn 1s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}



/* Logo Responsive */
@media (max-width: 768px) {
    .logo h1 {
        font-size: 2.5rem;
    }
    
    .logo i {
        font-size: 2.5rem;
    }
    
    .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 0.95rem;
    }
    
    .stat .number {
        font-size: 1.8rem;
    }
    
    .stat .label {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 2rem;
        letter-spacing: 1px;
    }
    
    .logo i {
        font-size: 2rem;
    }
    
    .hero {
        padding: 2rem 0 1.5rem 0;
    }
    
    .hero-content h2 {
        font-size: 1.5rem;
    }
    
    .hero-content p {
        font-size: 0.9rem;
    }
    
    .hero-stats {
        gap: 1rem;
    }
    
    .stat {
        padding: 0.8rem 1rem;
        min-width: 120px;
    }
    
    .stat .number {
        font-size: 1.5rem;
    }
    
    .stat .label {
        font-size: 0.75rem;
    }
    
    .scroll-indicator i {
        font-size: 1.5rem;
    }
}

/* Content Wrapper with Sidebars */
.content-wrapper {
    display: flex;
    justify-content: center;
    gap: 2rem;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 1rem;
}

.content-wrapper .container {
    flex: 1;
    max-width: 1200px;
    padding: 0;
}

/* Sidebar Ads */
.sidebar-ad {
    width: 160px;
    flex-shrink: 0;
}

.ad-container {
    position: sticky;
    top: 80px;
    background: #f8f9fa;
    border: 2px dashed #ddd;
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
}

.ad-label {
    display: block;
    font-size: 0.7rem;
    color: #999;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.ad-placeholder {
    background: linear-gradient(135deg, #e9ecef 0%, #f8f9fa 100%);
    border: 1px solid #dee2e6;
    border-radius: 5px;
    padding: 2rem 0.5rem;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #adb5bd;
}

.ad-placeholder p {
    margin: 0.5rem 0;
    font-size: 0.9rem;
}

/* Responsive Ads */
@media (max-width: 1400px) {
    .sidebar-ad {
        width: 120px;
    }
    
    .ad-placeholder {
        min-height: 500px;
        padding: 1.5rem 0.3rem;
    }
}

@media (max-width: 1200px) {
    .content-wrapper {
        gap: 1rem;
    }
    
    .sidebar-ad {
        display: none;
    }
    
    .content-wrapper .container {
        max-width: 100%;
    }
}
/* FAQ Section Styles */
.faq-section {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.faq-section h4 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: rgba(52, 152, 219, 0.05);
    border-radius: 10px;
    padding: 1.2rem;
    border-left: 4px solid #3498db;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(52, 152, 219, 0.1);
    transform: translateX(5px);
}

.faq-question {
    color: #2c3e50;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.faq-answer {
    color: #34495e;
    line-height: 1.6;
    font-size: 0.95rem;
}

.faq-answer strong {
    color: #e74c3c;
    font-weight: 600;
}

/* Responsive FAQ */
@media (max-width: 768px) {
    .faq-section {
        padding: 1.5rem;
        margin: 1rem 0;
    }
    
    .faq-item {
        padding: 1rem;
    }
    
    .faq-question {
        font-size: 1rem;
    }
    
    .faq-answer {
        font-size: 0.9rem;
    }
}
/* Quick Answer Boxes for Google AI Overviews */
.quick-answer {
    background: linear-gradient(135deg, #e8f5e8, #f0f8f0);
    border: 2px solid #27ae60;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.2);
}

.quick-answer h4 {
    color: #27ae60;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quick-answer p {
    margin: 0.5rem 0;
    font-size: 1rem;
    color: #2c3e50;
}

.quick-answer strong {
    color: #e74c3c;
    font-weight: 600;
}

/* Responsive Quick Answer */
@media (max-width: 768px) {
    .quick-answer {
        padding: 1rem;
        margin: 1rem 0;
    }
    
    .quick-answer h4 {
        font-size: 1.1rem;
    }
    
    .quick-answer p {
        font-size: 0.9rem;
    }
}
/* Planning Guide Styles */
.planning-guide {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.planning-guide h4 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.planning-steps {
    list-style: none;
    counter-reset: step-counter;
    padding-left: 0;
}

.planning-steps li {
    counter-increment: step-counter;
    margin: 1rem 0;
    padding: 1rem;
    background: rgba(52, 152, 219, 0.05);
    border-radius: 8px;
    border-left: 4px solid #3498db;
    position: relative;
    padding-left: 3rem;
}

.planning-steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: #3498db;
    color: white;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.8rem;
}

.planning-steps li strong {
    color: #e74c3c;
    font-weight: 600;
}

/* Responsive Planning Guide */
@media (max-width: 768px) {
    .planning-guide {
        padding: 1.5rem;
        margin: 1rem 0;
    }
    
    .planning-steps li {
        padding: 0.8rem;
        padding-left: 2.5rem;
        font-size: 0.9rem;
    }
    
    .planning-steps li::before {
        width: 1.2rem;
        height: 1.2rem;
        font-size: 0.7rem;
        left: 0.8rem;
    }
}
/* AdSense Optimization Styles */
.ad-placeholder {
    position: relative;
}

.ad-dev-placeholder {
    background: #f8f9fa;
    border: 2px dashed #dee2e6;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    color: #6c757d;
    font-size: 0.9rem;
}

.ad-dev-placeholder p {
    margin: 0.25rem 0;
}

/* Hide dev placeholder when AdSense loads */
.adsbygoogle[data-adsbygoogle-status="done"] + .ad-dev-placeholder {
    display: none;
}

/* In-content Ad Banner */
.in-content-ad {
    margin: 2rem 0;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.in-content-ad .ad-label {
    display: block;
    font-size: 0.75rem;
    color: #6c757d;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ad-banner {
    max-width: 100%;
    margin: 0 auto;
}

/* Responsive Ad Adjustments */
@media (max-width: 768px) {
    .sidebar-ad {
        display: none; /* Hide sidebar ads on mobile */
    }
    
    .in-content-ad {
        margin: 1rem 0;
        padding: 0.8rem;
    }
    
    .ad-dev-placeholder {
        padding: 1rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 1200px) {
    .sidebar-ad {
        width: 120px; /* Smaller sidebar ads on tablets */
    }
}
/* Affiliate Links Styles */
.affiliate-section {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 15px;
    padding: 1.5rem;
    margin: 2rem 0;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.affiliate-section h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.affiliate-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.affiliate-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.2rem;
    background: white;
    border-radius: 10px;
    text-decoration: none;
    color: #2c3e50;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.affiliate-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    color: #2c3e50;
}

.affiliate-link.booking:hover {
    border-color: #003580;
}

.affiliate-link.decolar:hover {
    border-color: #ff6900;
}

.affiliate-link.seguro:hover {
    border-color: #28a745;
}

.affiliate-link i {
    font-size: 2rem;
    margin-bottom: 0.8rem;
    color: #3498db;
}

.affiliate-link.booking i {
    color: #003580;
}

.affiliate-link.decolar i {
    color: #ff6900;
}

.affiliate-link.seguro i {
    color: #28a745;
}

.affiliate-link span {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.3rem;
    text-align: center;
}

.affiliate-link small {
    font-size: 0.8rem;
    color: #6c757d;
    text-align: center;
}

/* Responsive Affiliate Links */
@media (max-width: 768px) {
    .affiliate-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .affiliate-link {
        padding: 1rem;
    }
    
    .affiliate-link i {
        font-size: 1.5rem;
    }
    
    .affiliate-section {
        padding: 1rem;
        margin: 1rem 0;
    }
}
/* Privacy Policy Page Styles */
.privacy-content {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    padding: 2rem 0;
}

.privacy-wrapper {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 3rem;
    margin: 2rem 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 800px;
    margin: 0 auto;
}

.privacy-wrapper h2 {
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.last-updated {
    text-align: center;
    color: #6c757d;
    font-style: italic;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e9ecef;
}

.privacy-section {
    margin: 2rem 0;
}

.privacy-section h3 {
    color: #2c3e50;
    font-size: 1.4rem;
    margin: 1.5rem 0 1rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #3498db;
}

.privacy-section h4 {
    color: #34495e;
    font-size: 1.1rem;
    margin: 1rem 0 0.5rem 0;
}

.privacy-section p {
    color: #2c3e50;
    line-height: 1.6;
    margin: 0.8rem 0;
}

.privacy-section ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.privacy-section li {
    color: #2c3e50;
    line-height: 1.6;
    margin: 0.5rem 0;
}

.privacy-section strong {
    color: #e74c3c;
    font-weight: 600;
}

.privacy-section a {
    color: #3498db;
    text-decoration: none;
}

.privacy-section a:hover {
    color: #2980b9;
    text-decoration: underline;
}

.privacy-footer {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 10px;
    padding: 1.5rem;
    margin: 2rem 0 0 0;
    border-left: 4px solid #27ae60;
}

.privacy-footer p {
    margin: 0.5rem 0;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #3498db !important;
    font-weight: 600;
    text-decoration: none;
    margin-top: 1rem;
}

.back-link:hover {
    color: #2980b9 !important;
}

/* Responsive Privacy Policy */
@media (max-width: 768px) {
    .privacy-wrapper {
        padding: 1.5rem;
        margin: 1rem;
    }
    
    .privacy-wrapper h2 {
        font-size: 2rem;
    }
    
    .privacy-section h3 {
        font-size: 1.2rem;
    }
    
    .privacy-section ul {
        padding-left: 1rem;
    }
}
/* Header Controls (Language & Currency Selectors) */
.header-controls {
    position: absolute;
    top: 4rem;
    right: 1rem;
    display: flex;
    gap: 0.5rem;
    z-index: 20;
}

.selector {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    padding: 0.5rem 0.8rem;
    font-size: 0.85rem;
    color: #2c3e50;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.selector:hover {
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.selector:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
}

/* Responsive Header Controls */
@media (max-width: 768px) {
    .header-controls {
        position: static;
        justify-content: center;
        margin: 1rem 0;
        padding: 0 1rem;
    }
    
    .selector {
        font-size: 0.8rem;
        padding: 0.4rem 0.6rem;
    }
    
    .currency-ticker {
        position: static;
        text-align: center;
        border-radius: 0;
        margin-bottom: 1rem;
    }
}
/* Currency Column Visibility */
.currency-column-brl {
    display: none; /* Hidden by default (English mode) */
}

.currency-column-usd,
.currency-column-eur {
    display: table-cell; /* Visible by default (English mode) */
}

/* Language-specific adjustments */
[data-language="pt"] .currency-column-brl {
    display: table-cell;
}

[data-language="pt"] .currency-column-usd,
[data-language="pt"] .currency-column-eur {
    display: none;
}

/* Responsive table adjustments */
@media (max-width: 768px) {
    .currency-column-eur {
        display: none !important; /* Hide EUR on mobile to save space */
    }
}
/* Enhanced Currency Ticker with EUR */
.ticker-separator {
    margin: 0 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: normal;
}

.ticker-flags-eur {
    font-size: 1.2rem;
    display: flex;
    align-items: center;
}

.ticker-rate-eur {
    font-weight: 600;
}

/* Responsive ticker adjustments */
@media (max-width: 768px) {
    .ticker-content {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.3rem;
    }
    
    .ticker-separator {
        display: none !important; /* Hide separator on mobile */
    }
    
    .ticker-rate-eur {
        display: none !important; /* Hide EUR on mobile to save space */
    }
    
    .ticker-flags-eur {
        display: none !important;
    }
}