* {
    font-family: Tahoma;
}

body {
    background-color: #000;
    color: #e0e0e0;
    text-align: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

header {
    padding: 10px;
    text-align: center;
}

header img {
    max-width: 500px;
    padding: 20px;
}

nav {
    background-color: #3db5f2;
    display: flex;
    justify-content: center;
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav a {
    color: #000;
    text-decoration: none;
    margin: 0 20px;
    font-weight: bold;
    font-size: 16px;
    background-color: #fff;
    padding: 8px 12px;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

nav a:hover {
    background-color: #f0f0f0;
    transform: scale(1.05);
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding: 40px;
    background-color: rgba(50, 50, 50, 0.85);
    border-radius: 10px;
    animation: fadeIn 1s ease-in-out;
}

.about-img {
    max-width: 200px;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(255, 255, 255, 0.2);
    border: 3px solid #3db5f2;
}

.about-text {
    max-width: 600px;
    text-align: center;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.6;
}

section {
    padding: 40px 20px;
    max-width: 1200px; 
    margin: auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.1);
    animation: fadeIn 1s ease-in-out;
    margin-bottom: 40px;
}

section h2 {
    color: #fff;
    border-bottom: 2px solid #3db5f2;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.category-nav {
    margin: 20px 0;
}

.category-nav a {
    background-color: #3db5f2;
    color: #000;
    padding: 10px 15px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    margin: 5px;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.category-nav a:hover {
    background-color: #1ca3db;
}

.gallery-section {
    margin-bottom: 30px;
    background-color: rgba(50, 50, 50, 0.85);
    padding: 15px;
    border-radius: 10px;
    animation: fadeIn 1s ease-in-out;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

.gallery img {
    width: 100%;
    max-width: 250px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    border: 3px solid #fff;
}

.gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(255, 255, 255, 0.4);
}

#contacto {
    background-color: rgba(50, 50, 50, 0.85);
    padding: 40px 20px;
    max-width: 1200px; 
    margin: auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.1);
    text-align: center;
    animation: fadeIn 1s ease-in-out;
}

#contacto p {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #3db5f2;
    color: #000;
    text-decoration: none;
    padding: 10px 15px;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.social-link:hover {
    background-color: #1ca3db;
    transform: scale(1.05);
}

.icono {
    width: 24px;
    height: 24px;
}

.phone {
    font-size: 1.2rem;
    font-weight: bold;
}

footer {
    background-color: #000;
    padding: 20px;
    font-size: 14px;
    border-top: 3px solid #fff;
}
