* {
    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-color: #f8f9fa;
}

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

.site-header {
    background-color: #fff;
    padding: 20px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: #667eea;
}

.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

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

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.badge {
    background-color: rgba(255,255,255,0.2);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.95rem;
    backdrop-filter: blur(10px);
}

.features {
    padding: 60px 0;
    background-color: #fff;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 30px;
    border-radius: 10px;
    background-color: #f8f9fa;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #667eea;
}

.feature-card p {
    color: #666;
    font-size: 1rem;
}

.application-form {
    padding: 80px 0 100px;
    background: linear-gradient(to bottom, #f8f9fa 0%, #e9ecef 100%);
}

.application-form h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: #2d3748;
    font-weight: 800;
}

.form-subtitle {
    text-align: center;
    color: #718096;
    margin-bottom: 50px;
    font-size: 1.05rem;
}

#responseMessage {
    max-width: 650px;
    margin: 0 auto 30px;
    padding: 18px 25px;
    border-radius: 12px;
    display: none;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    text-align: center;
}

#responseMessage.success {
    background-color: #d4edda;
    color: #155724;
    border: 2px solid #c3e6cb;
    display: block;
}

#responseMessage.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 2px solid #f5c6cb;
    display: block;
}

.form-card {
    max-width: 650px;
    margin: 0 auto;
    background-color: #fff;
    padding: 50px 45px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    border: 1px solid rgba(0,0,0,0.05);
}

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

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #2d3748;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
    background-color: #f8f9fa;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #667eea;
    background-color: #fff;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

.form-group input[type="file"] {
    padding: 12px;
    cursor: pointer;
    background-color: #fff;
    border: 2px dashed #cbd5e0;
}

.form-group input[type="file"]:hover {
    border-color: #667eea;
    background-color: #f7fafc;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%232d3748' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 45px;
}

.error-message {
    display: block;
    color: #e53e3e;
    font-size: 0.875rem;
    margin-top: 8px;
    min-height: 22px;
    font-weight: 500;
}

.form-group.error input,
.form-group.error select {
    border-color: #fc8181;
    background-color: #fff5f5;
}

.hidden {
    display: none;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 1.15rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    letter-spacing: 0.5px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5);
}

.submit-btn:active {
    transform: translateY(-1px);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.2);
}

.site-footer {
    background-color: #2d3748;
    color: #fff;
    padding: 60px 0 20px;
}

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

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #fff;
}

.footer-column p {
    color: #a0aec0;
    line-height: 1.8;
    margin-bottom: 15px;
}

.footer-badges {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-badges span {
    background-color: rgba(102, 126, 234, 0.2);
    padding: 8px 12px;
    border-radius: 5px;
    font-size: 0.85rem;
    display: inline-block;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #a0aec0;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-badges {
        flex-direction: column;
        align-items: center;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .application-form {
        padding: 60px 0;
    }

    .form-card {
        padding: 40px 30px;
        border-radius: 12px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 40px 0;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    .application-form h2 {
        font-size: 1.75rem;
    }

    .application-form {
        padding: 40px 0;
    }

    .form-card {
        padding: 30px 20px;
        border-radius: 10px;
    }

    .form-group input,
    .form-group select {
        padding: 12px 16px;
    }

    .submit-btn {
        padding: 14px;
        font-size: 1.05rem;
    }
}

.logo a {
    color: #667eea;
    text-decoration: none;
}

.page-content {
    padding: 60px 0;
    min-height: 70vh;
}

.content-card {
    max-width: 900px;
    margin: 0 auto;
    background-color: #fff;
    padding: 50px 45px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
}

.subtitle {
    color: #718096;
    font-size: 1rem;
    margin-bottom: 10px;
}

.content-card h1 {
    font-size: 2.2rem;
    color: #2d3748;
    margin-bottom: 30px;
    font-weight: 800;
}

.content-card h2 {
    font-size: 1.4rem;
    color: #2d3748;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 700;
}

.content-card p {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 15px;
}

.content-card ul {
    margin: 15px 0 15px 30px;
    color: #4a5568;
}

.content-card ul li {
    margin-bottom: 10px;
    line-height: 1.7;
}

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

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

.page-links {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #e2e8f0;
    text-align: center;
    font-size: 0.95rem;
}

.copyright {
    text-align: center;
    color: #718096;
    font-size: 0.9rem;
    margin-top: 20px;
}

.contact-page {
    text-align: center;
}

.contact-intro {
    font-size: 1.1rem;
    margin: 30px 0;
}

.whatsapp-btn {
    display: inline-block;
    padding: 16px 40px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 12px;
    font-size: 1.15rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    margin: 20px 0;
}

.whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
    text-decoration: none;
}

@media (max-width: 768px) {
    .content-card {
        padding: 40px 30px;
    }

    .content-card h1 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .page-content {
        padding: 40px 0;
    }

    .content-card {
        padding: 30px 20px;
    }

    .content-card h1 {
        font-size: 1.5rem;
    }

    .content-card h2 {
        font-size: 1.2rem;
    }
}
