/* ===== RESET Y BASE ===== */
* {
    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;
    background: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== HEADER WARNING (STICKY) ===== */
.header-warning {
    background: #dc3545;
    color: white;
    padding: 15px 20px;
    text-align: center;
    font-weight: bold;
    font-size: 14px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

/* ===== NAVIGATION ===== */
.navbar {
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 15px 0;
    position: sticky;
    top: 45px;
    z-index: 999;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-size: 20px;
    font-weight: bold;
    color: #667eea;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #667eea;
}

/* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.hero h1 {
    font-size: 3em;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 30px;
    opacity: 0.95;
}

.hero-disclaimer {
    font-size: 0.9em;
    margin-top: 20px;
    opacity: 0.9;
}

/* ===== BUTTONS ===== */
.btn-primary {
    display: inline-block;
    background: #28a745;
    color: white;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: #218838;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

.btn-whatsapp {
    display: inline-block;
    background: #25d366;
    color: white;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s;
}

.btn-whatsapp:hover {
    background: #1da851;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

/* ===== DISCLAIMER BOX ===== */
.disclaimer-box {
    background: #fff3cd;
    border-left: 5px solid #ffc107;
    padding: 30px;
    margin: 30px 0;
    border-radius: 5px;
}

.disclaimer-box h2 {
    color: #856404;
    margin-bottom: 15px;
    font-size: 1.3em;
}

.disclaimer-box p {
    margin: 10px 0;
    color: #856404;
}

.disclaimer-box a {
    color: #0066cc;
    font-weight: bold;
}

/* ===== STATS SECTION ===== */
.stats-section {
    padding: 60px 20px;
    background: #f8f9fa;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: bold;
    color: #667eea;
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 16px;
    color: #666;
}

/* ===== SECTIONS ===== */
.section {
    padding: 60px 20px;
}

.section.bg-light {
    background: #f8f9fa;
}

.section-title {
    font-size: 2.5em;
    margin-bottom: 30px;
    color: #2c3e50;
    text-align: center;
}

.section-intro {
    text-align: center;
    font-size: 1.2em;
    color: #666;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== PROBLEM GRID ===== */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.problem-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    border-left: 5px solid #667eea;
    transition: transform 0.3s, box-shadow 0.3s;
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(0,0,0,0.12);
}

.problem-icon {
    font-size: 2.5em;
    margin-bottom: 15px;
}

.problem-card h3 {
    color: #667eea;
    margin-bottom: 15px;
    font-size: 1.4em;
}

.problem-card p {
    margin: 15px 0;
    line-height: 1.7;
}

.problem-card ul {
    margin: 15px 0;
    padding-left: 20px;
}

.problem-card li {
    margin: 10px 0;
    line-height: 1.6;
}

.problem-note {
    margin-top: 20px;
    padding: 15px;
    background: #e9ecef;
    border-radius: 8px;
    font-size: 0.95em;
}

/* ===== CONTENT BLOCKS ===== */
.content-block {
    margin: 40px 0;
}

.content-block h3 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 1.5em;
}

.content-block p {
    margin: 15px 0;
    line-height: 1.8;
}

.content-block ul, .content-block ol {
    margin: 20px 0;
    padding-left: 30px;
}

.content-block li {
    margin: 12px 0;
    line-height: 1.7;
}

/* ===== SOLUTIONS GRID ===== */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.solution-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    border: 2px solid #e9ecef;
}

.solution-card h4 {
    color: #667eea;
    margin-bottom: 15px;
    font-size: 1.2em;
}

.solution-card ul {
    margin: 15px 0;
    padding-left: 20px;
}

.solution-card li {
    margin: 10px 0;
}

.help-box {
    background: #fff3cd;
    padding: 25px;
    border-radius: 8px;
    margin-top: 40px;
    text-align: center;
    border-left: 5px solid #ffc107;
}

/* ===== FEATURES GRID ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3em;
    margin-bottom: 15px;
}

.feature-card h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.3em;
}

.feature-card p {
    line-height: 1.7;
    color: #666;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: 1.2em;
    margin-bottom: 30px;
    opacity: 0.95;
}

.contact-info {
    margin-top: 50px;
}

.contact-info h3 {
    margin-bottom: 20px;
    font-size: 1.5em;
}

.contact-info p {
    margin: 10px 0;
    font-size: 1.1em;
}

.hours-note {
    font-style: italic;
    opacity: 0.9;
    margin-top: 15px;
}

.contact-form-link {
    margin-top: 30px;
    font-size: 1.1em;
}

.contact-form-link a {
    color: white;
    text-decoration: underline;
    font-weight: bold;
}

/* ===== RESOURCES ===== */
.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.resource-block {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.resource-block h3 {
    color: #667eea;
    margin-bottom: 20px;
    font-size: 1.3em;
}

.resource-block ul {
    list-style: none;
    padding: 0;
}

.resource-block li {
    margin: 15px 0;
    padding-left: 25px;
    position: relative;
}

.resource-block li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

.resource-block a {
    color: #0066cc;
    text-decoration: none;
    font-weight: 500;
}

.resource-block a:hover {
    text-decoration: underline;
}

.resources-note {
    margin-top: 30px;
    padding: 20px;
    background: #fff3cd;
    border-radius: 8px;
    text-align: center;
}

/* ===== CONTACT PAGE ===== */
.contact-section {
    padding: 60px 20px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    margin-top: 40px;
}

.contact-form-container {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 3px 20px rgba(0,0,0,0.1);
}

.contact-form-container h2 {
    margin-bottom: 30px;
    color: #2c3e50;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: normal;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
}

.checkbox-label a {
    color: #0066cc;
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.form-note {
    margin-top: 20px;
    padding: 15px;
    background: #fff3cd;
    border-radius: 8px;
    font-size: 0.9em;
    text-align: center;
}

.contact-info-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.contact-card h3 {
    color: #667eea;
    margin-bottom: 15px;
    font-size: 1.2em;
}

.contact-card p {
    margin: 10px 0;
    line-height: 1.6;
}

.contact-detail {
    font-weight: bold;
    color: #333;
}

.disclaimer-card {
    background: #fff3cd;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #ffc107;
}

.disclaimer-card ul {
    margin-top: 10px;
    padding-left: 20px;
}

.disclaimer-card li {
    margin: 8px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.faq-item {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.faq-item h4 {
    color: #667eea;
    margin-bottom: 12px;
    font-size: 1.1em;
}

.faq-item p {
    line-height: 1.7;
}

/* ===== THANK YOU PAGE ===== */
.thankyou-section {
    padding: 80px 20px;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.thankyou-card {
    background: white;
    max-width: 700px;
    margin: 0 auto;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.1);
    text-align: center;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: #28a745;
    color: white;
    font-size: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.thankyou-card h1 {
    color: #28a745;
    margin-bottom: 20px;
}

.thankyou-text {
    font-size: 1.2em;
    color: #666;
    margin-bottom: 40px;
}

.next-steps {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    margin: 30px 0;
    text-align: left;
}

.next-steps h2 {
    color: #2c3e50;
    margin-bottom: 20px;
    text-align: center;
}

.next-steps ul {
    list-style: none;
    padding: 0;
}

.next-steps li {
    margin: 15px 0;
    padding-left: 30px;
    position: relative;
}

.next-steps li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
    font-size: 1.2em;
}

.immediate-help {
    margin: 40px 0;
}

.immediate-help h3 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.helpful-links {
    margin: 30px 0;
    text-align: left;
}

.helpful-links h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    text-align: center;
}

.helpful-links ul {
    list-style: none;
    padding: 0;
}

.helpful-links li {
    margin: 12px 0;
    text-align: center;
}

.helpful-links a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
}

.helpful-links a:hover {
    text-decoration: underline;
}

.confirmation-note {
    background: #fff3cd;
    padding: 20px;
    border-radius: 8px;
    margin-top: 30px;
}

/* ===== LEGAL PAGES ===== */
.legal-section {
    padding: 60px 20px;
    background: #f8f9fa;
}

.legal-section h1 {
    font-size: 2.5em;
    color: #2c3e50;
    margin-bottom: 10px;
}

.update-date {
    color: #666;
    font-style: italic;
    margin-bottom: 40px;
}

.legal-content {
    background: white;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h2 {
    color: #667eea;
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 1.8em;
}

.legal-content h3 {
    color: #2c3e50;
    margin-top: 25px;
    margin-bottom: 15px;
    font-size: 1.3em;
}

.legal-content p {
    margin: 15px 0;
    line-height: 1.8;
}

.legal-content ul {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-content li {
    margin: 12px 0;
    line-height: 1.7;
}

.legal-content a {
    color: #0066cc;
    text-decoration: none;
    font-weight: 500;
}

.legal-content a:hover {
    text-decoration: underline;
}

.legal-acceptance {
    background: #e7f3ff;
    padding: 30px;
    border-radius: 10px;
    margin-top: 40px;
    text-align: center;
    border-left: 5px solid #667eea;
}

/* ===== FOOTER ===== */
.footer {
    background: #2c3e50;
    color: white;
    padding: 50px 20px 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    margin-bottom: 20px;
    font-size: 1.2em;
}

.footer-section p {
    margin: 10px 0;
    line-height: 1.7;
    color: #ddd;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section li {
    margin: 10px 0;
}

.footer-section a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-disclaimer {
    background: #1a252f;
    padding: 30px;
    margin-top: 30px;
    border-top: 3px solid #667eea;
    text-align: center;
}

.footer-disclaimer h3 {
    color: #ffc107;
    margin-bottom: 20px;
}

.footer-disclaimer p {
    margin: 15px 0;
    line-height: 1.8;
    color: #ddd;
}

.footer-disclaimer a {
    color: #4a90e2;
    text-decoration: none;
    font-weight: bold;
}

.footer-disclaimer a:hover {
    text-decoration: underline;
}

.footer-copyright {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #445566;
    color: #aaa;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2em;
    }
    
    .hero-subtitle {
        font-size: 1.1em;
    }
    
    .section-title {
        font-size: 2em;
    }
    
    .problem-grid,
    .features-grid,
    .solutions-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 15px;
    }
    
    .legal-content {
        padding: 30px 20px;
    }
    
    .thankyou-card {
        padding: 30px 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .resources-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .header-warning {
        font-size: 12px;
        padding: 12px 15px;
    }
    
    .hero {
        padding: 50px 20px;
    }
    
    .hero h1 {
        font-size: 1.8em;
    }
    
    .btn-primary,
    .btn-whatsapp {
        font-size: 16px;
        padding: 12px 30px;
    }
    
    .stat-number {
        font-size: 36px;
    }
}
