@font-face {
    font-family: RegularFont;
    src: url(/font/Marcellus-Regular.ttf);
}

* {
    font-family: RegularFont;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    background-color: #FCFCFC;
}

header {
    width: 100%;
    display: block;
    position: absolute;
    overflow: hidden;
    z-index: 3;
}

#header-menu {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#header-menu img {
    max-width: 7%;
    margin: 1%;
}

#menu {
    margin: 1%;
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    font-style: italic;
}

#menu a {
    font-size: 2em;
    text-decoration: none;
    color: white;
}

#menu a:hover {
    color: #12B57E;
}

#hero-experiencias {
    position: relative;
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 120px 20px 60px;
    background-image: url('../img/experiencias/banner.png');
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero-content h1 {
    font-size: 4.8em;
    margin-bottom: 16px;
}

.hero-content p {
    font-size: 1.35em;
    margin-bottom: 22px;
}

.download-btn {
    margin-top: 1%;
    display: inline-block;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(90deg, #12B57E, #0f8c5ab3);
    border: none;
    border-radius: 30px;
    text-decoration: none;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.download-btn:hover {
    background: linear-gradient(90deg, #0F8C5A, #0b6e46);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

#experiencias {
    padding: 40px 20px;
    text-align: center;
    background-color: #f7f7f7;
}

#experiencias h2 {
    font-size: 3em;
    color: #333;
    margin-bottom: 10px;
}

.experiencias-subtitle {
    font-size: 1.2em;
    color: #666;
    margin-bottom: 28px;
}

.experiencias-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(280px, 1fr));
    gap: 20px;
    align-items: stretch;
}

.experiencia-card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    text-align: left;
}

.experiencia-media {
    background: #eef9f5;
}

.experiencia-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.experiencia-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.experiencia-content h3 {
    font-size: 2.1em;
    margin-bottom: 10px;
}

.experiencia-content p {
    margin-bottom: 10px;
    color: #27313a;
    font-size: 1.05em;
}

.experiencia-note {
    font-weight: bold;
}

.experiencia-list {
    margin: 12px 0 16px 22px;
    color: #27313a;
}

.experiencia-list li {
    margin-bottom: 8px;
}

.card-btn {
    margin-top: auto;
    width: fit-content;
}

#info-experiencias {
    background-color: #f7f7f7;
    margin: 0;
    padding: 20px 20px 50px;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 860px;
    margin: 0 auto;
}

.info-block {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
    padding: 0;
    overflow: hidden;
    width: 100%;
}

.info-block summary {
    font-size: 2em;
    color: #12B57E;
    cursor: pointer;
    list-style: none;
    padding: 24px;
    font-weight: bold;
}

.info-block summary::-webkit-details-marker {
    display: none;
}

.info-block summary::after {
    content: "+";
    float: right;
    color: #0F8C5A;
}

.info-block[open] summary::after {
    content: "-";
}

.info-content {
    border-top: 1px solid #e8f2ee;
    padding: 18px 24px 24px;
    min-height: 120px;
}

.info-block p,
.info-block li {
    color: #444;
    line-height: 1.6;
    font-size: 1.04em;
}

.info-block ul,
.info-block ol {
    margin-left: 22px;
}

footer {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.footer-section {
    margin: 20px 0;
    width: 300px;
}

.footer-section h4 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.footer-section p,
.footer-section ul,
.footer-section li,
.footer-section a {
    font-size: 1em;
    margin: 5px 0;
    color: #ddd;
    text-decoration: none;
}

.footer-section ul {
    list-style-type: none;
    padding: 0;
}

.footer-section ul li a:hover {
    color: #fff;
}

.footer-logo img {
    width: 10vw;
}

.social-media a {
    margin: 0 10px;
    display: inline-block;
}

.social-media img {
    width: 24px;
    height: 24px;
}

.footer-bottom {
    border-top: 1px solid #444;
    margin-top: 20px;
    padding-top: 10px;
}

.footer-bottom p {
    font-size: 0.9em;
    color: #bbb;
}

@media (max-width: 1024px) {
    #menu a {
        font-size: 1.3em;
    }

    .hero-content h1 {
        font-size: 3.5em;
    }

    .experiencias-grid {
        grid-template-columns: repeat(2, minmax(260px, 1fr));
    }

    .info-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    #hero-experiencias {
        min-height: 65vh;
        padding-top: 150px;
    }

    .hero-content h1 {
        font-size: 2.4em;
    }

    .hero-content p {
        font-size: 1.05em;
    }

    #experiencias h2 {
        font-size: 2.2em;
    }

    .experiencias-subtitle {
        font-size: 1em;
    }

    .experiencias-grid {
        grid-template-columns: 1fr;
    }

    .experiencia-content h3 {
        font-size: 1.9em;
    }

    .card-btn {
        width: 100%;
    }

    .info-block summary {
        font-size: 1.8em;
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-section {
        width: 100%;
        text-align: center;
    }

    .footer-logo img {
        width: 50vw;
    }
}
