body {
    font-family: 'Nunito', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
}

header {
    background: linear-gradient(135deg, #72c1e8, #f0c020);
    color: white;
    text-align: center;
    padding: 50px 20px;
}

header img {
    max-width: 150px;
    margin-bottom: 15px;
}

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

h1,
h2,
h3 {
    color: #333;
}

.section a {
    color: #f0c020;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s, border-bottom 0.3s;
    border-bottom: 2px solid transparent;
}

.section a:hover {
    color: #72c1e8;
    border-bottom: 2px solid #72c1e8;
}


.title-underline {
    display: inline-block;
    position: relative;
    /* padding-bottom: 8px; */
    text-align: left;
}

.title-underline::after {
    content: "";
    display: block;
    width: 40px;
    height: 4px;
    background: linear-gradient(to right, #72c1e8 50%, #f0c020 50%);
    margin-top: 5px;
    border-radius: 2px;
    text-align: left;
}

.section {
    background: white;
    padding: 30px;
    margin: 20px 0;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.button {
    background: #72c1e8;
    color: white;
    padding: 12px 20px;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
    margin-top: 15px;
}

.card {
    background: #f0c020;
    color: white;
    padding: 15px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
    text-align: left;
    font-weight: bold;
    margin-bottom: 15px;
}

.card-content {
    display: none;
    background: white;
    padding: 15px;
    border-radius: 8px;
    margin-top: 10px;
    color: black;
}

/*Galeria*/
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.gallery-grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.gallery-grid img:hover {
    transform: scale(1.05);
}

.glightbox-clean .gdesc-inner {
    text-align: center;
}

.extra-images {
    display: none;
}

#show-more-btn {
    margin-top: 20px;
    background: #f0c020;
    color: #333;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s;
}

#show-more-btn:hover {
    background: #dca916;
}

/**/


.about-me h2 {
    text-align: left;
    width: 100%;
}

.about-me img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    text-align: center !important;
}

.social_icons img {
    width: 32px;
}

footer {
    font-size: 12px;
    background: #333;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 30px;
}