/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Hero Section */
.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    color: #5B9BD5;
    margin-bottom: 0.5rem;
}

.hero-subtitle {
    font-size: 32px;
    font-weight: 500;
    color: #333;
    margin-bottom: 0.5rem;
}

.hero-specialties {
    font-size: 24px;
    color: #A8C090;
    margin-bottom: 0.5rem;
}

.hero-location {
    font-size: 20px;
    color: #888;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 20px;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    text-align: center;
}

.hero-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-align: center;
    min-width: 180px;
}

.btn-primary {
    background-color: #5B9BD5;
    color: #fff;
    border: 2px solid #5B9BD5;
}

.btn-primary:hover {
    background-color: #4A8BC2;
    border-color: #4A8BC2;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: #5B9BD5;
    border: 2px solid #5B9BD5;
}

.btn-secondary:hover {
    background-color: #5B9BD5;
    color: #fff;
    transform: translateY(-2px);
}

.btn-whatsapp {
    background-color: #25D366;
    color: #fff;
    border: 2px solid #25D366;
}

.btn-whatsapp:hover {
    background-color: #1da851;
    border-color: #1da851;
    transform: translateY(-2px);
}

/* Sections */
.about, .contact {
    padding: 80px 0;
}

.about {
    background-color: #fff;
}

.contact {
    background-color: #f8f9fa;
}

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

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #5B9BD5;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 20px;
    color: #666;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text h3 {
    font-size: 28px;
    color: #5B9BD5;
    margin-bottom: 1rem;
}

.about-text p {
    font-size: 18px;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.about-intro {
    margin-bottom: 3rem;
}

.curriculum {
    margin-bottom: 3rem;
}

.education-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #7A9B6B;
}

.education-item h4 {
    font-size: 22px;
    color: #333;
    margin-bottom: 0.5rem;
}

.education-item p {
    font-size: 18px;
    color: #666;
    margin-bottom: 0;
}

.specialty-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.specialty-item {
    padding: 1.5rem;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-top: 3px solid #A8C090;
}

.specialty-item h4 {
    font-size: 20px;
    color: #5B9BD5;
    margin-bottom: 0.5rem;
}

.specialty-item p {
    font-size: 16px;
    color: #666;
    margin-bottom: 0;
}

.about-images {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 2rem;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-icon {
    font-size: 32px;
    min-width: 50px;
}

.contact-details h3 {
    font-size: 22px;
    color: #5B9BD5;
    margin-bottom: 0.5rem;
}

.contact-details p {
    font-size: 18px;
    color: #666;
    margin-bottom: 0.5rem;
}

.contact-details a {
    color: #5B9BD5;
    text-decoration: none;
    font-weight: 500;
}

.contact-details a:hover {
    text-decoration: underline;
}

.contact-cta {
    background-color: #fff;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    height: fit-content;
}

.contact-cta h3 {
    font-size: 28px;
    color: #5B9BD5;
    margin-bottom: 1rem;
}

.contact-cta p {
    font-size: 18px;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.7;
}

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

/* Footer */
.footer {
    background-color: #333;
    color: #fff;
    padding: 3rem 0 1rem;
}

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

.footer-info h3 {
    font-size: 24px;
    color: #A8C090;
    margin-bottom: 1rem;
}

.footer-info p,
.footer-contact p {
    font-size: 16px;
    margin-bottom: 0.5rem;
}

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

.footer-bottom p {
    font-size: 16px;
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding: 60px 0 40px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 28px;
    }
    
    .hero-specialties {
        font-size: 22px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .specialty-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .btn {
        min-width: auto;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 24px;
    }
    
    .hero-specialties {
        font-size: 20px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .contact-item {
        padding: 1.5rem;
    }
    
    .contact-cta {
        padding: 2rem;
    }
}

