/* Ajuste de espaciado para la sección */
.about-area {
    padding-top: 100px;
    padding-bottom: 100px;
    background-color: var(--box-body-bgcolor);
}

/* Ajustes responsivos para distintos dispositivos */
@media (max-width: 1199px) {
    .about-area {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}
@media (max-width: 767px) {
    .about-area {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

/* Contenedor de la imagen con fondo blanco y centrado */
.about-banner-area {
    width: 100%;
    display: flex;
    justify-content: center; /* Centra la imagen horizontalmente */
    align-items: center; /* Centra la imagen verticalmente */
    background-color: white; /* Fondo blanco */
    padding: 20px; /* Espacio alrededor de la imagen */
    /* Eliminado el border-radius para que el fondo no tenga bordes redondeados */
}

/* Lista sin estilos */
.about-banner ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

/* Estilo para la imagen */
.about-company img {
    width: 90%; /* Ajusta la imagen sin que se desborde */
    max-width: 3000px; /* Máximo tamaño permitido */
    height: auto; /* Mantiene la proporción */
    border-radius: 15px; /* Bordes redondeados para la imagen */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Sombra para destacar */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Efecto al pasar el cursor */
.about-company img:hover {
    transform: scale(1.03); /* Ligeramente más grande */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

/* Ajuste para móviles */
@media (max-width: 767px) {
    .about-company img {
        width: 100%;
    }
}



/* Steps Section */
/* .steps {
    background-color: #f4f7fc;
    padding: 50px 20px;
    text-align: center;
}

.steps h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #333;
}

.steps p {
    font-size: 18px;
    margin-bottom: 40px;
    color: #666;
}

.step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    text-align: left;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    position: relative;
}

.step-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: #007bff;
    color: white;
    font-size: 24px;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 25px;
    margin-bottom: 10px;
    color: #333;
}

.step-content p {
    font-size: 16px;
    color: #666;
}

.text-center .btn-primary {
    background-color: #007bff;
    border-color: #007bff;
    color: white;
    padding: 15px 30px;
    font-size: 18px;
    border-radius: 5px;
}

.text-center .btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
} */


/* Hero Section */
/* Hero Section */
.hero {
    background: linear-gradient(to right, #ffafbd, #ffc3a0); /* Gradiente suave */
    height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 20px;
}

.hero-content {
    background-color: rgba(0, 0, 0, 0.4);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
}

.cta-button {
    background-color: #ff6f61;
    color: white;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: bold;
    text-transform: uppercase;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-button:hover {
    background-color: #e65a50;
    transform: scale(1.05);
}

/* Benefits Section */
.benefits {
    background-color: #fff8f0;
    padding: 60px 20px;
    text-align: center;
}

.benefits h2 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 40px;
}

.benefit {
    display: inline-block;
    width: 30%;
    margin: 0 10px;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.benefit h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #ff6f61;
}

.benefit p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

/* Register Section */
.register {
    background: linear-gradient(to right, #ffc3a0, #ffafbd);
    padding: 60px 20px;
    text-align: center;
    color: white;
}

.register h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
}

.register form {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.register label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
    color: #333;
}

.register input {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
}

.register button {
    width: 100%;
    padding: 15px;
    background-color: #ff6f61;
    color: white;
    font-weight: bold;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.register button:hover {
    background-color: #e65a50;
    transform: scale(1.05);
}

/* Contact Section */
.contact {
    background-color: #fff;
    padding: 50px 20px;
    text-align: center;
    color: #333;
}

.contact h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ff6f61;
}

.contact p {
    font-size: 18px;
    margin-bottom: 10px;
}

.contact a {
    color: #ff6f61;
    font-size: 18px;
    font-weight: bold;
    transition: color 0.3s ease;
}

.contact a:hover {
    color: #e65a50;
}


/* Benefits Section */
.benefits {
    background-color: #fff;
    padding: 50px 20px;
    text-align: center;
}

.benefits h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #333;
}

.benefit {
    display: inline-block;
    width: 30%;
    margin: 0 10px;
    text-align: left;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
}

.benefit h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
}

.benefit p {
    font-size: 16px;
    color: #666;
}

/* Register Section */
.register {
    background-color: #f4f7fc;
    padding: 50px 20px;
    text-align: center;
}

.register h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #333;
}

.register form {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.register label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
    color: #333;
}

.register input {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.register button {
    width: 100%;
    padding: 15px;
    background-color: #5e72e4;
    color: white;
    font-size: 18px;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.register button:hover {
    background-color: #4b63c7;
}

/* Contact Section */
.contact {
    background-color: #fff;
    padding: 50px 20px;
    text-align: center;
}

.contact h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #333;
}

.contact p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #666;
}

.contact a {
    color: #5e72e4;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact a:hover {
    color: #4b63c7;
}
