@font-face {
    font-family: 'Neue Helvetica VFDP Cond';
    src: url('fonts/helveticaneue-condensed-webfont.ttf');
    font-weight: 400;
}

@font-face {
    font-family: 'Neue Helvetica VFDP Cond';
    src: url('fonts/helveticaneue-boldcond-webfont.ttf');
    font-weight: 600;
}

* {
    margin: 0;
    padding: 0;
}

body{
    font-family: "Neue Helvetica VFDP Cond", Arial, Helvetica, sans-serif;
}

.container-img {
    background-image: url(img/mps-saegen-3.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 5vw 0;
}

.logo {
    width: 100%;
    max-width: 350px;
}

.presentation {
    padding: 50px 0;
    text-align: center;
}

.presentation h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    padding-bottom: 10px;
}

.presentation hr {
    margin: 20px 50px;
    border: 0;
    height: 2px;
    background-color: #333;
    width: calc(100% - 100px);
}

.presentation p {
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 75%;
    margin: 0 auto 30px auto;
    text-align: left;
    padding: 0 20px;
}

.presentation ul {
    list-style: none;
    margin-top: 20px;
}

.presentation li {
    font-size: 1.2rem;
    list-style: none;
    text-align: left;
    margin-bottom: 10px;
    padding: 0 12%;
    position: relative;
    font-weight: 500;
}

.presentation li::before {
    content: url(img/check.svg);
    padding-right: 10px;
    vertical-align: sub;
}

.presentation li:last-child {
    margin-bottom: 0;
}

.presentation p,
.presentation h1,
.presentation li {
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}

.main-color {
    color: rgb(227, 0, 11) !important;
}

.bg-main {
    background-color: rgb(227, 0, 11) !important;
}

.secondary-color {
    color: rgb(110, 110, 110);
}

.image-section {
    background-size: cover;
    background-position: center;
    padding: 2vw 0;
    margin-top: 50px; /* Añadido para asegurar el espacio adecuado */
}

.overlay-text {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    max-width: 500px;
}


/* Botón personalizado */
.custom-btn-red {
    background-color: rgb(227, 0, 11);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.custom-btn-red:hover {
    background-color: rgb(180, 0, 11);
    color: #fff;
    /* transform: translateY(-5px); */
}

/* Input de correo */
.custom-form-control {
    font-size: 1rem;
    padding: 15px;
    border: 2px solid #ccc;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: border-color 0.3s ease;
}

.custom-form-control:focus {
    border-color: rgb(227, 0, 11);
    box-shadow: 0 2px 6px rgba(227, 0, 11, 0.4);
}

.newsletter-form {
    position: relative;
    height: 60px;
}

.newsletter-form input{
    border-radius: 0;
}

.newsletter-form button{
    border-radius: 0;
}

.sticky-th{
    position:sticky;
    left: 0;
}

@media (max-width: 767px) {
   
    .presentation p {
        font-size: 1.1rem;
        max-width: 100%;
        /* text-align: left; */
        padding: 0 5vw;
    }

    .presentation li {
        font-size: 1.1rem;
        margin-bottom: 10px;
        padding: 0 5vw;
        position: relative;
        font-weight: 500;
    }

}