* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

header {
    background-color: white;
    padding: 0.4rem 1rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    height: 50px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-image {
    width: 100px;
    height: auto;
    padding: 5px 0;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li a {
    color: #2c3e50;
    text-decoration: none;
    padding: 0 1.2rem;
    font-weight: bold;
    font-size: 1rem;
}

.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('hero-bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 2rem;
    margin-top: 65px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.2rem;
    max-width: 800px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

section {
    padding: 4rem 2rem;
}

h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.courses-container {
    max-width: 1200px;
    margin: 0 auto;
}

.course-category {
    margin-bottom: 4rem;
}

.course-category h3 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.course-category h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #3498db;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.course-card {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.course-card:hover {
    transform: translateY(-5px);
}

.course-card h4 {
    color: #2c3e50;
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.course-card p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
}

.contact-info {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.contact-info p {
    margin: 1rem 0;
    font-size: 1.1rem;
    color: #2c3e50;
}

.contact-info p:first-child {
    margin-top: 0;
}

.contact-info p:last-child {
    margin-bottom: 0;
}

footer {
    background-color: #2c3e50;
    color: white;
    text-align: center;
    padding: 1rem;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
} 

.contacts-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    width: 100%;
}

.map-container {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .contacts-container {
        padding: 0 1rem;
    }
    
    .map-container iframe {
        height: 300px;
    }
} 

.whatsapp-link {
    color: #25D366;
    text-decoration: none;
    transition: color 0.3s ease;
}

.whatsapp-link:hover {
    color: #128C7E;
}

.instagram-link {
    color: #E1306C;
    text-decoration: none;
    transition: color 0.3s ease;
}

.instagram-link:hover {
    color: #C13584;
}

.phone-link {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.phone-link:hover {
    color: #34495e;
}

.whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background-color: #25D366;
    color: white;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.whatsapp-link:hover {
    background-color: #128C7E;
    color: white;
}

.whatsapp-link i {
    font-size: 1.2rem;
}

.lang-switcher {
    display: flex;
    gap: 0.5rem;
    background-color: #f8f9fa;
    padding: 0.3rem;
    border-radius: 4px;
    z-index: 1001;
}

.lang-btn {
    padding: 0.3rem 0.8rem;
    border: 1px solid #2c3e50;
    background-color: transparent;
    color: #2c3e50;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-weight: 500;
    min-width: 45px;
    position: relative;
}

.lang-btn.active {
    background-color: #2c3e50;
    color: white;
    border-color: #2c3e50;
}

.lang-btn:hover:not(.active) {
    background-color: #eaeaea;
}

[data-lang] {
    display: none !important;
}

[data-lang].active {
    display: block !important;
}

.nav-links a[data-lang] {
    display: none !important;
}

.nav-links a[data-lang].active {
    display: inline-block !important;
} 

.lang-switcher .lang-btn.active {
    background-color: #2c3e50 !important;
    color: white !important;
    border-color: #2c3e50 !important;
} 