/* General Styles */
body {
    font-family: 'Libre Baskerville', serif;
    background-color: #eae1d9;
    margin: 0;
    overflow: hidden;
}

.main-section {
    height: 100vh;
    position: relative;
}

.logo {
    max-width: 100%;
    height: auto;
}

.main-text {
    font-size: 2rem;
    margin-bottom: 1rem;
    position: relative;
    color: #325060; /* Texto 1 */
}

.contact-text {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 600;
    font-size: 1.9rem;
    margin-top: 20px;
    margin-bottom: 0.5rem;
    color: #54290f;
}

.email a {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    text-decoration: none;
    color: #325060;
}

.email a:hover {
    text-decoration: none;
}

.social-media a {
    font-size: 1rem;
    text-decoration: none;
    color: #325060;
}

.social-media a:hover {
    text-decoration: none;
}

/* Highlight with "Círculo" Image */
.highlight {
    position: relative;
}

/* Underline with "Subrayado" Image */
.underline {
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    top: -10px;
    right: -10px;
    width: 100%; /* Ancho más grande */
    height: 100px; /* Altura más grande */
    background-image: url('../img/circulo.png');
    background-size: contain;
    background-repeat: no-repeat;
    -webkit-background-size: contain;
    z-index: -1;
}

.underline::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 0;
    width: 100%;
    height: 30px;
    background-image: url('../img/subrayado.png');
    background-size: contain;
    background-repeat: no-repeat;
    -webkit-background-size: contain;
    z-index: -1;
}

/* Background Images */
.background-top {
    position: absolute;
    top: -10px;
    left: -15px;
    max-width: 200px;
    height: auto;
}

.background-side {
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    max-width: 150px;
    height: auto;
}

/* Responsive Design */
@media (max-width: 768px) {

.logo {
    max-width: 250px;
    height: auto;
}
    .main-text {
        font-size: 1.5rem;
    }

    .contact-text {
        font-size: 1.3rem;
    }

    .email a {
        font-size: 1rem;
    }

.social-media a {
        font-size: 0.75rem;
    }
/*
    .highlight::after {
        width: 100%;
        height: 40px;
        top: -10px;
        right: -10px;
    }

    .underline::after {
        height: 10px;
    }
*/
    .background-top {
        max-width: 150px !important;
    }
.background-side {
    right: -10px;
    top: 75%;
max-width: 120px !important;
}

}
