.header{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-bottom: 60px;
}
.logo_container{
    padding: 10px;
    box-sizing: border-box;
    width: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.header_logo{
    width: 100%;
    max-width: 300px;
}
.cta_container {
    width: 100%;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-image: url('../images/rudy_cta.jpg'); /* Reemplaza con la URL de tu imagen */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.cta {
    font-size: 2rem;
    color: white;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.cta b{
    color: #FCBD00;
}

.header_anchor {
    display: inline-block;
    padding: 12px 24px;
    font-size: 1.2rem;
    font-weight: bold;
    color: black;
    background-color: #FCBD00;
    text-decoration: none;
    border-radius: 8px;
    transition: transform 0.2s, background-color 0.2s;
    cursor: pointer;
}

.header_anchor:hover {
    background-color: #d8aa05;
    transform: scale(1.05);
}

@media only screen and (min-width: 800px) {
    .cta {
        font-size: 2.5rem;
    }
    .header_anchor {
        font-size: 1.5rem;
        padding: 14px 28px;
    }
    .logo_container, .cta_container{
        min-height: 600px;
    }
    .header_logo{
        max-width: 400px;
    }
}