/* Archivo: style.css */
body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fff;
    color: #111820;
    max-width: 1440px;
    margin: auto;
    padding-top: 40px;
    padding-bottom: 40px;
    padding-left: 20px;
    padding-right: 20px;
}

.container {
    display: flex;
    align-items: center;
    justify-content: left;
    gap: 20px;
}
.logo {
    flex: 1;
    text-align: left;
}
.logo img {
    max-width: 80%;
    height: auto;
    background-size: cover;
}
.text {
    flex: 2;
}
h1 {
    font-size: 40px;
    color: #111820;
}
p {
    font-size: 16px;
    color: #111820;
    line-height: 1.5;
}
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        text-align: center;
    }
    .cards-container {
        flex-direction: column;
        align-items: center;
    }
    .docs-container {
        justify-content: center;
        gap: 24px;
    }
    .doc-box {
        width: 45%;
    }
    .logo {
        flex: 1;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .doc-box {
        width: 100%;
    }
    .container-docu{
        padding-top: 80px !important;
    }
    .container-card{
        padding-top: 80px !important;
    }
    .card{
        width: 320px !important;
    }
    body{
        padding-top: 80px !important;
        padding-bottom: 80px !important;
    }

    .language-buttons{
        text-align: center !important;
    }
}

.section-title {
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 48px;
}

.cards-container {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    margin: 0 auto;
}

.card {
    width: 400px;
    background: white;
    border-radius: 24px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
}

.card img {
    width: 100%;
    height: 200px;
    display: block;
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
    background-color: #111820;
    background-size: cover;
}

.card-content {
    padding: 20px;
}

.card h2 {
    font-size: 24px;
    color: #35364a;
    margin: 0 0 8px;
    text-align: left;
}

.card p {
    font-size: 16px;
    color: #111820;
    margin: 0 0 20px;
    text-align: left;
}

.card a {
    font-size: 16px;
    color: #00645E;
    text-decoration: underline;
}

.doc-box a{
    font-size: 16px;
    color: #00645E;
    text-decoration: underline;
}

.docs-container {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    margin: 0 auto;
}
.doc-box {
    width: 270px;
    text-align: left;
}
.doc-box img {
    width: 50px;
    height: 50px;
    margin-bottom: 16px;
}
.doc-box h3 {
    font-size: 24px;
    color: #008080;
    margin-bottom: 16px;
}
.doc-box p {
    font-size: 16px;
    color: #111820;
    line-height: 1.5;
}

.doc-box svg{
    background: #00A69D;
    padding: 5px;
    width: 48px;
    height: 48px;
    border-radius: .375rem;
}

.links-footer {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    margin: 0 auto;
}

.link-box a{
    font-size: 16px;
    color: #00645E;
    text-decoration: underline;
}

.cls-2{
    stroke:#fff !important;
}

.cls-1{
    stroke:#fff !important;
}

.container-docu{
    padding-top: 120px;
}

.container-card{
    padding-top: 120px;
}

.language-buttons {
    text-align: right;
}
.language-buttons button {
    padding: 10px;
    margin: 5px;
    cursor: pointer;
    border: none;
    background-color: #EBEBED;
    color: #111820;
    border-radius: 4px;
}
.language-buttons button.active {
    background-color: #CDCDD2;
}

.language-buttons button:hover {
    background-color: #CDCDD2;
}

.hidden{
    display:none !important;
}