.gracias-contacto-container {
    background: linear-gradient(180deg, #0055B8 0%, #002171 100%);
    max-width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    box-sizing: border-box;
}

.gracias-contacto-content {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
}

.gracias-contacto-content img {
    width: 100%;
    max-width: 400px;
    height: auto;
    margin: 0 auto;
    padding: 30px 0;
}

.gracias-contacto-texto {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    width: 100%;
    text-align: center;
}

.gracias-contacto-texto h1,
.gracias-contacto-texto h2 {
    color: white;
    font-weight: 200;
    font-size: calc(1.5rem + 0.5vw);
    line-height: 1.2;
    margin: 0;
    word-wrap: break-word;
}

.gracias-contacto-texto h2 {
    font-weight: 900;
}

.gracias-contacto-division-line {
    height: 1px;
    background: #A1D8F1;
    width: 100%;
    max-width: 300px;
    margin: 10px auto;
}

.gracias-contacto-bottom-text {
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
    width: 100%;
    max-width: 100%;
    text-align: center;
}

.gracias-contacto-bottom-text img {
    width: 35px;
    height: auto;
}

.gracias-contacto-bottom-text h3 {
    font-size: calc(0.5rem + 0.5vw);
    font-weight: 300;
    margin: 0;
    word-wrap: break-word;
}

.gracias-contacto-button-home {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    margin: 20px 0;
}

.gracias-contacto-button-home a {
    color: white;
    text-decoration: none;
    font-weight: 200;
    border: 1px solid white;
    border-radius: 10px;
    padding: 10px 20px;
    transition: background 0.3s ease;
    display: inline-block;
}

.gracias-contacto-button-home a:hover {
    background-color: white;
    color: #002171;
}

@media screen and (max-width: 600px) {
    .gracias-contacto-content {
        padding: 10px;
    }

    .gracias-contacto-texto h1,
    .gracias-contacto-texto h2 {
        font-size: calc(1.2rem + 0.5vw);
    }

    .gracias-contacto-division-line {
        width: 80%;
    }

    .gracias-contacto-bottom-text h3 {
        font-size: calc(0.8rem + 0.5vw);
    }

    .gracias-contacto-button-home a {
        padding: 8px 15px;
    }
}