* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, #10b981 0%, #059669 50%, #f97316 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Top Bar */
.top-bar {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 12px 20px;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Header */
.header {
    background: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 40;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-icon {
    font-size: 1.875rem;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
}

.nav-desktop {
    display: none;
}

@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
        gap: 2rem;
    }
}

.nav-link {
    color: #4b5563;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #059669;
}

.mobile-menu-btn {
    padding: 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
    color: #4b5563;
}

.mobile-menu {
    background: white;
    border-top: 1px solid #f3f4f6;
}

.mobile-nav-link {
    display: block;
    padding: 0.75rem 1rem;
    color: #4b5563;
    text-decoration: none;
}

.hidden {
    display: none;
}

/* Hero */
.hero {
    background: linear-gradient(to bottom right, #ecfdf5, white, #fff7ed);
    padding: 5rem 1rem;
    text-align: center;
}

.hero-content {
    max-width: 4xl;
    margin: 0 auto;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .hero-title {
        font-size: 3rem;
    }
}

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

.hero-subtitle {
    font-size: 1.25rem;
    color: #4b5563;
    margin-bottom: 0.5rem;
}

@media (min-width: 640px) {
    .hero-subtitle {
        font-size: 1.5rem;
    }
}

.hero-description {
    font-size: 1rem;
    color: #6b7280;
    margin-bottom: 2.5rem;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

/* Buttons */
.btn-orange {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: white;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
    display: inline-block;
}

.btn-orange:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4);
}

.btn-green-outline {
    background: transparent;
    color: #10b981;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 12px;
    border: 2px solid #10b981;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.btn-green-outline:hover {
    background: #10b981;
    color: white;
}

/* Cookie Banner */
.cookie-backdrop {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: flex-end;
    z-index: 9999;
    padding: 1rem;
}

.cookie-banner {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 1.5rem 2rem;
    max-width: 950px;
    width: 100%;
    margin-bottom: 2rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 768px) {
    .cookie-content {
        flex-direction: row;
        align-items: center;
        gap: 1.5rem;
    }
}

.cookie-icon {
    font-size: 2.5rem;
}

.cookie-text {
    flex: 1;
}

.cookie-text h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.cookie-text p {
    color: #94a3b8;
    line-height: 1.6;
    font-size: 0.95rem;
}

.cookie-text a {
    color: #fb923c;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.cookie-btn-accept {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: white;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.cookie-btn-accept:hover {
    transform: translateY(-2px);
}

.cookie-btn-reject {
    background: transparent;
    color: white;
    font-weight: 500;
    padding: 12px 28px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s;
}

.cookie-btn-reject:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Sections */
.section-white {
    background: white;
    padding: 4rem 1rem;
}

.section-gray {
    background: #f9fafb;
    padding: 4rem 1rem;
}

.section-container {
    max-width: 1280px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

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

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

.section-subtitle {
    color: #4b5563;
    font-size: 1.125rem;
}

/* Cards Grid */
.cards-grid-3 {
    display: grid;
    gap: 2rem;
}

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

.cards-grid-4 {
    display: grid;
    gap: 1.5rem;
}

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

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

/* Card */
.card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    border: 1px solid #e5e7eb;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.card-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.card-text {
    color: #4b5563;
    margin-bottom: 1rem;
}

.card-link {
    color: #059669;
    font-weight: 600;
    text-decoration: none;
}

.card-link:hover {
    color: #047857;
}

/* Card Destino */
.card-destino {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    border: 1px solid #e5e7eb;
}

.card-destino:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.destino-emoji {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.destino-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.destino-subtitle {
    color: #6b7280;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.destino-link {
    color: #059669;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
}

/* Ad Container */
.ad-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1.5rem 1rem;
}

.ad-container-footer {
    max-width: 728px;
    margin: 0 auto 2rem;
    background: #1f2937;
    border-radius: 12px;
    padding: 1rem;
}

.ad-label {
    text-align: center;
    color: #6b7280;
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
}

/* Trust Section */
.trust-grid {
    display: grid;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .trust-grid {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
}

.trust-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 12px;
    margin-bottom: 1rem;
}

.trust-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.trust-title {
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.trust-text {
    color: #4b5563;
    font-size: 0.875rem;
}

.trust-card {
    background: white;
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

.trust-card-content {
    text-align: center;
}

.trust-emoji {
    font-size: 5rem;
    display: block;
    margin-bottom: 1.5rem;
}

.trust-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.trust-card-text {
    color: #4b5563;
}

/* Notice Bar */
.notice-bar {
    max-width: 64rem;
    margin: 0 auto;
    padding: 0 1rem;
}

.notice-bar {
    background: #fef3c7;
    border-left: 4px solid #f59e0b;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem auto;
}

.notice-title {
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.notice-icon {
    color: #f59e0b;
}

.notice-text {
    color: #4b5563;
}

/* CTA Section */
.cta-section {
    max-width: 64rem;
    margin: 0 auto;
    padding: 0 1rem;
}

.cta-section {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    border-radius: 24px;
    padding: 4rem 2rem;
    text-align: center;
}

.cta-title {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .cta-title {
        font-size: 2.25rem;
    }
}

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

.cta-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

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

.cta-btn-white {
    background: white;
    color: #ea580c;
    font-weight: 700;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-size: 1.125rem;
    transition: all 0.3s;
}

.cta-btn-white:hover {
    background: #f3f4f6;
}

.cta-btn-outline {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    font-weight: 700;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-size: 1.125rem;
    border: 2px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s;
}

.cta-btn-outline:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Footer */
.footer {
    background: #111827;
    color: white;
    padding: 4rem 1rem 2rem;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.footer-logo .logo-icon {
    font-size: 1.875rem;
}

.footer-logo .logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
}

.footer-desc {
    color: #9ca3af;
    font-size: 0.875rem;
}

.footer-title {
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #10b981;
}

.google-notice {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 2rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.google-notice p {
    color: #6ee7b7;
    font-size: 0.875rem;
    text-align: center;
}

.footer-copyright {
    border-top: 1px solid #1f2937;
    padding-top: 2rem;
    text-align: center;
}

.footer-copyright p {
    color: #6b7280;
    font-size: 0.875rem;
}

/* Legal Page */
.legal-section {
    background: white;
    padding: 4rem 1rem;
    min-height: 60vh;
}

.legal-container {
    max-width: 48rem;
    margin: 0 auto;
}

.legal-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.legal-date {
    color: #6b7280;
    margin-bottom: 2rem;
}

.legal-content h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-content p {
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-content ul {
    color: #4b5563;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

.legal-content a {
    color: #059669;
}

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