/*** Variables ***/
:root {
    --white: #ffffff;
    --black: #000000;
    --mainColor: #2f3872;
    --secondaryColor: #e87a31;
    --textColor: #333333;
    --footerColor: #232a59;
    --bannerColor1: #dbe6f6;
    --errorColor: #ff0000;
}

body {
    background: var(--white);
    background-size: 100% auto;
    color: var(--textColor);
    font-family: "Montserrat", "Open Sans", sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 32px;
    margin: 0;
    text-align: left;
}

/*** Colores Texto ***/
.color-main {
    color: var(--mainColor);
}

.color-secondary {
    color: var(--secondaryColor);
}

/*** Estilos Seccion Hero ***/
.background-body {
    background: url(../img/background.png);
    background-size: cover;
    background-position: center;
}

/****** Header ******/
.contenedor-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: white;
    margin-top: 3rem;
    margin-bottom: 20px;
}

.logo {
    display: flex;
    justify-content: center;
}

.logo img {
    width: 50%;
    max-width: 50%;
}

.btn-contacto {
    transition: transform 0.3s ease-in-out;
}

.btn-contacto:hover {
    transform: scale(1.1);
    cursor: pointer;
}
@media (max-width: 768px) {
    .contenedor-header {
        text-align: center;
    }

    .row {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .col-md-6 {
        text-align: center;
    }

    .col-md-6 img {
        margin: 0 auto;
    }
}
