body {
    background-color: #f5f9f8;
    font-family: "Ubuntu", sans-serif;
    margin: 0;
    padding: 0;
    background: transparent linear-gradient(180deg, #EBF4EB 0%, #FFFFFF 100%) no-repeat padding-box;
}

p, ul.list-texto li {
	font-family: 'Open Sans', sans-serif;
	font-weight: 400;
}

p b, p strong, ul.list-texto li b, ul.list-texto li strong{
	font-family: 'Open Sans', sans-serif;
	font-weight: 700;
}

@media screen and (max-width: 991px) {
    #banner .navbar {
        display: none !important;
    }
}

.B2B-contacto h1 {
    font-size: 48px;
    line-height: 52px;
    font-weight: 900;
    color: #111;
    text-align: center; 
    margin-bottom: 2rem; 
    
}
.main-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start; 
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* Contenedor para el formulario (a la derecha) */
.container-form {
    width: 45%; 
    padding: 2rem;
    border-radius: 8px;
    align-self: flex-start; 
}
.form-group.form-check {
    display: flex !important;
    align-items: flex-start;
    gap:8px;
}

   .form-title {
    font-size: 40px;
    line-height: 52px;
    font-weight: 900;
    color: #111;
    margin-bottom: 2rem; 
}

.form-group {
    margin-bottom: 1rem;
    position: relative;
}

.form-control {
    width: 100%;
    padding: 26px 5px 10px;
    border: 1px solid #c1c6c8;
    border-radius: 8px;
    font-size: 16px;
    color: #111;
    background-color: #fff;
    height: auto;
    appearance: none;
}

.form-control:focus {
    outline: 0;
    box-shadow: 0 0 8px #3a913f;
    border: 1px solid #3a913f;
}

.control-label {
    color: #747474;
    position: absolute;
    left: 16px;
    top: 6px;
    font-size: 16px;
    transition: .2s;
}

.form-control:focus + .control-label,
.form-control:not(:placeholder-shown) + .control-label {
    top: 8px;
    font-size: 12px;
    color: #3a913f;
}

.btn-primary {
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    color: #fff;
    text-align: center;
    background-color: #4caf50;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    width: 100%;
    height: 56px;
    border-radius: 56px;
    border: 0;
    cursor: pointer;
    transition: all .2s ease-in-out;
}

.btn-primary:hover {
    background-color: #45a049;
}

.error-message {
    color: #ff0000;
    font-size: 0.875rem;
}

/* Spinner */
.spinner {
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid #fff;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: spin 0.8s linear infinite;
    margin-right: 10px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.form-section-title {
    font-size: 24px;
    line-height: 30px;
    font-weight: 700;
    color: #333;
    margin-bottom: 0; 
    margin-top: 2em; 
    padding:0 0 .6em 0;
}

/* Contenedor de información a la izquierda */
.container-info {
    width: 45%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-self: flex-start; 
}

.info-text {
    font-size: 18px;
    line-height: 26px;
    margin-top: 0;
    padding-left: 5.94%;
    padding-right: 5.7%;
    padding-bottom: 21px;
    padding-top: 0;
    font-weight: 700;
}

.info-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Responsiveness */
@media (max-width: 1024px) {
    .main-container {
        flex-direction: column;
        align-items: center;
    }

    .container-form, .container-info {
        width: 100%;
        margin-bottom: 1rem;
    }

    .container-info img {
        display: none;
    }
}