/* Reset y estilos base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background-color: #2c3e50;
    color: white;
    padding: 1rem 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header h1 {
    font-size: 1.8rem;
    font-weight: 600;
}

/* Selector de idiomas */
.language-selector {
    display: flex;
    list-style: none;
}

.language-selector li {
    margin-left: 10px;
}

.language-selector a {
    display: block;
    width: 30px;
    height: 20px;
    border-radius: 3px;
    overflow: hidden;
    transition: transform 0.2s;
}

.language-selector a:hover {
    transform: scale(1.1);
}

/* Secciones principales */
main {
    padding: 2rem 0;
}

.section {
    margin-bottom: 2.5rem;
}

.section h2 {
    color: #2c3e50;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e74c3c;
    font-size: 1.5rem;
}

/* Tarjetas de información */
.info-card {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.info-card ul {
    margin-left: 1.5rem;
    margin-top: 0.5rem;
}

.info-card li {
    margin-bottom: 0.5rem;
}

/* Botones */
.btn {
    display: inline-block;
    background-color: #e74c3c;
    color: white;
    padding: 0.7rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    margin-top: 1rem;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #c0392b;
}

/* Footer */
footer {
    background-color: #34495e;
    color: white;
    text-align: center;
    padding: 1.5rem 0;
    margin-top: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        text-align: center;
    }
    
    .language-selector {
        margin-top: 1rem;
    }
    
    .section h2 {
        font-size: 1.3rem;
    }
}