@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');




* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}




body {
    font-family: 'Raleway', sans-serif;
    overflow-y: scroll;
    overflow-x: hidden;
    background: white;
}

h1 {
    font-weight: 700;
}

p {
    font-weight: 400;
}

/* Navbar */
.navbar {
    background: #1f3a68;
    position: static;
}

button.navbar-toggler {
    background: aliceblue;
}

.navbar-brand img {
    margin-right: 20px;
    margin-left: 45px;
}

.navbar-nav .nav-link {
    color: #ffffff;
    font-weight: 800;
    margin-left: 40px;
    letter-spacing: 1.1px;
    font-stretch: condensed;
}

.navbar-nav .nav-link:hover {
    color: #007bff;
}

@media (max-width: 768px) {
    .navbar-nav .nav-link {
        font-size: 0.9rem;
    }
}

.brand-text {
    color: #ffffff;
}

.sobre-nosotros {
    background: #f5f5f5;
    padding: 60px 0;
}


.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 30, 80, 0.6);
    /* Fondo oscuro semitransparente */
}

.hero-content {
    position: relative;
    max-width: 600px;
    color: white;
    margin-left: 41px;
}

.hero-content h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.btn {
    display: inline-block;
    background: #008CFF;
    color: white;
    padding: 12px 24px;
    font-size: 1.2rem;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
}

.btn:hover {
    background: #006FCC;
}

@media (max-width: 768px) {
    .hero {
        height: 60vh;
        padding: 10px;
    }

    .hero-content h1 {
        font-size: 1.8rem;
        text-align: center;
    }
}

/* SOBRE NOSOTROS*/
.content {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.images {
    position: relative;
    width: 50%;
}

.images img {
    width: 60%;
    border-radius: 10px;
    box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.2);
    position: absolute;
}

.img1 {
    top: 0;
    left: 0;
}

.img2 {
    top: 50px;
    right: 0;
}

.img3 {
    bottom: 0;
    left: 20%;
}

.text {
    width: 50%;
}

.text h2 {
    font-size: 2.2rem;
    color: #1a2b50;
}

.text p {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.6;
    margin-bottom: 20px;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background: #007bff;
    color: #fff;
    font-size: 1rem;
    text-transform: uppercase;
    border-radius: 5px;
    transition: 0.3s;
}

.btn:hover {
    background: #0056b3;
}

@media (max-width: 768px) {
    .content {
        flex-direction: column;
        text-align: center;
    }

    .images {
        width: 100%;
        position: relative;
    }

    .images img {
        width: 80%;
        position: static;
        display: block;
        margin: auto;
    }

    .text {
        width: 100%;
    }
}

/*NUESTROS SERVICIOS*/
.servicios {
    background-color: #1f3a68;
    padding: 50px 0;
    text-align: center;
}

.container {
    max-width: 1200px;
    margin: auto;
}

.servicios h2 {
    color: #fff;
    font-size: 36px;
    margin-bottom: 30px;
}

.servicios-grid {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.servicio {
    background-color: #1f3a68;
    color: #fff;
    border-radius: 8px;
    overflow: hidden;
    text-align: left;
    width: 30%;
}

.servicio img {
    width: 100%;
    height: auto;
}

.servicio-texto {
    padding: 20px;
}

.servicio h3 {
    font-size: 20px;
    font-weight: bold;
}

.servicio p {
    font-size: 14px;
}

@media (max-width: 768px) {
    .servicios-grid {
        flex-direction: column;
        align-items: center;
    }

    .servicio {
        width: 80%;
    }
}

/*NUESTROS ARTICULOS*/
.articles {
    display: flex;
    gap: 20px;
    margin-top: 30PX;
}

.article {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    flex: 1;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.article img {
    width: 100%;
    height: 380px;
}

.article-content {
    padding: 15px;
}

.article h2 {
    font-size: 18px;
    margin: 0 0 10px;
}

.article p {
    font-size: 14px;
    color: #666;
}

@media (max-width: 768px) {
    .articles {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .articles {
        flex-direction: column;
    }

    .article {
        width: 100%;
    }
}

/*NUESTRO CONTACTO*/
.contact-section {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #1f3a68;
    color: white;
    padding: 50px 0;
}

.contact-container {
    display: flex;
    width: 80%;
    max-width: 1200px;
}

.contact-image {
    flex: 1;
}

.contact-image img {
    width: 180%;
    height: 600px;
    border-radius: 10px;

}

.contact-form {
    flex: 1;
    background-color: #1f3a68;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 1);
    margin-left: 20px;
}

.contact-form h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.contact-form p {
    margin-bottom: 20px;
    font-size: 14px;
}

.contact-form label {
    display: block;
    margin-top: 10px;
    font-size: 14px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border-radius: 5px;
    border: none;
}

.contact-form button {
    width: 100%;
    padding: 10px;
    margin-top: 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.contact-form button:hover {
    background-color: #0056b3;
}

@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        text-align: center;
    }

    .contact-image,
    .contact-form {
        width: 100%;
    }
}

/* Botón flotante del Centro de Arbitraje */
.floating-button {
    position: fixed;
    bottom: 85px;
    /* Se ajusta justo arriba del botón de WhatsApp */
    right: 20px;
    background-color: #002752;
    color: white;
    width: 200px;
    height: 40px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    z-index: 10001;
    /* Mayor que el de WhatsApp */
    transition: transform 0.3s, background-color 0.3s;
    text-decoration: none;
    gap: 10px;
}

.floating-button:hover {
    transform: scale(1.1);
    background-color: #002752;
    /* Un tono más oscuro para efecto hover */
}

.floating-button span {
    font-size: 16px;
    font-weight: bold;
    text-align: center;
}

/* Botón flotante de WhatsApp */
.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    /* Color verde de WhatsApp */
    color: white;
    padding: 10px 15px;
    border-radius: 50px;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    z-index: 10000;
    /* Debe ser menor que el de arbitraje */
}

.whatsapp-btn i {
    font-size: 20px;
    /* Tamaño del icono */
    margin-right: 10px;
}

footer.custom-footer {
    background: #ffffff;
    color: #000000;
}

.custom-footer {
    padding: 20px;
    color: #ffffff;
}

@media (max-width: 768px) {
    .custom-footer .row {
        flex-direction: column;
        text-align: center;
    }

    .custom-footer .col-md-2,
    .custom-footer .col-md-4 {
        margin-bottom: 20px;
    }
}



.hero-container {
    display: flex;
    gap: 0px;
    justify-content: center;
    align-items: stretch;
}

.hero {
    flex: 1;
    height: 90vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 30, 80, 0.6);
}

.hero-content {
    position: relative;
    max-width: 600px;
    color: white;
}

.hero-content h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.btn {
    display: inline-block;
    background: #008CFF;
    color: white;
    padding: 12px 24px;
    font-size: 1.2rem;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
}

.btn:hover {
    background: #006FCC;
}

@media (max-width: 768px) {
    .hero-container {
        flex-direction: column;
    }

    .hero {
        height: 60vh;
    }

    .hero-content h1 {
        font-size: 1.8rem;
        text-align: center;
    }
}


/* General styles for the hero section */


.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-family: sans-serif;
    font-weight: 400;

}

.btn {
    padding: 10px 20px;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #007bff;
    color: #fff;
}

.btn-primary:hover {
    background-color: #0056b3;
}

.btn-secondary {
    background-color: #002752;
    color: #fff;
}

.btn-secondary:hover {
    background-color: #007bff;
}


html,
body {
    scrollbar-width: thin;
    /* Para Firefox */
    scrollbar-color: rgba(0, 30, 80, 2) transparent;
    /* Color del scroll y fondo */
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
    width: 8px;
    /* Ancho del scroll */
}

html::-webkit-scrollbar-track,
body::-webkit-scrollbar-track {
    background: transparent;
    /* Fondo transparente */
}

html::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb {
    background-color: rgba(0, 30, 80, 0.6);
    /* Color azul semitransparente */
    border-radius: 10px;
    /* Bordes redondeados */
    border: 2px solid transparent;
    /* Espacio alrededor del scroll */
}

html::-webkit-scrollbar-thumb:hover,
body::-webkit-scrollbar-thumb:hover {
    background-color: rgba(0, 30, 80, 0.8);
    /* Color más oscuro al pasar el mouse */
}




/* nosotros */



h1 {
    font-weight: 700;
}

p {
    font-weight: 400;
}



.navbar-brand img {
    margin-right: 20px;
}



@media (max-width: 768px) {
    .navbar-nav .nav-link {
        font-size: 0.9rem;
    }
}

.brand-text {
    color: #ffffff;
}

/* SECCIÓN GENERAL */
.nosotros {
    background-color: #002752;
}

#arbitraje {
    background: linear-gradient(to bottom, #ffffff, #f8f9fa);
    /* Suave transición de color */
    padding: 100px 0;
}

/* CONTENEDOR PRINCIPAL */
#arbitraje .container {
    max-width: 1100px;
}

/* TARJETAS DE INFORMACIÓN */
.info-box {
    background: #fff;
    /* Fondo elegante */
    border: none;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.15);
    text-align: center;
    transition: all 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
}

/* EFECTO HOVER */
.info-box:hover {
    transform: translateY(-8px);
    box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.2);
}

/* DECORACIÓN SUPERIOR */
.info-box::before {
    content: "";
    position: absolute;
    width: 70px;
    height: 5px;
    background: #004085;
    /* Azul profesional */
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

/* TÍTULOS */
.info-box h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #212529;
    text-transform: uppercase;
    margin-bottom: 20px;
    position: relative;
}

/* SUBRAYADO DEL TÍTULO */
.info-box h3::after {
    content: "";
    display: block;
    width: 50px;
    height: 4px;
    background: #004085;
    margin: 10px auto 0;
}

/* PÁRRAFOS */
.info-box p {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.6;
    margin-top: 10px;
}

/* LISTA DE VALORES */
.info-box ul {
    padding-left: 0;
    list-style: none;
    margin-top: 20px;
}

.info-box ul li {
    font-size: 1.1rem;
    font-weight: 500;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 0;
}

/* ICONOS EN LA LISTA */
.info-box ul li::before {
    content: "✔";
    color: #004085;
    font-size: 1.4rem;
    margin-right: 10px;
}

/* CONTENEDOR DE ICONOS */
.icon-container {
    background: #004085;
    border-radius: 50%;
    width: 85px;
    height: 85px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

/* ESTILO DE LOS ICONOS */
.icon-container i {
    font-size: 40px;
    color: #ffffff;
}

/* EFECTO HOVER DEL ICONO */
.icon-container:hover {
    background: #002752;
    transform: scale(1.1);
}

/* ESPACIADO ENTRE COLUMNAS */
.row.text-center .col-md-4 {
    margin-bottom: 40px;
}

/* Botón flotante del Centro de Arbitraje */
.floating-button {
    position: fixed;
    bottom: 85px;
    /* Se ajusta justo arriba del botón de WhatsApp */
    right: 20px;
    background-color: #002752;
    color: white;
    width: 200px;
    height: 40px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    z-index: 10001;
    /* Mayor que el de WhatsApp */
    transition: transform 0.3s, background-color 0.3s;
    text-decoration: none;
    gap: 10px;
}

.floating-button:hover {
    transform: scale(1.1);
    background-color: #002752;
    /* Un tono más oscuro para efecto hover */
}

.floating-button span {
    font-size: 16px;
    font-weight: bold;
    text-align: center;
}

/* Botón flotante de WhatsApp */
.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    /* Color verde de WhatsApp */
    color: white;
    padding: 10px 15px;
    border-radius: 50px;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    z-index: 10000;
    /* Debe ser menor que el de arbitraje */
}

.whatsapp-btn i {
    font-size: 20px;
    /* Tamaño del icono */
    margin-right: 10px;
}

footer.custom-footer {
    background: #ffffff;
    color: #000000;
    border-top: 3px solid #ddd;
    /* Línea separadora */
}

.custom-footer {
    padding: 20px;
    color: #ffffff;
}

@media (max-width: 768px) {
    .custom-footer .row {
        flex-direction: column;
        text-align: center;
    }

    .custom-footer .col-md-2,
    .custom-footer .col-md-4 {
        margin-bottom: 20px;
    }
}

/* contacto */

.brand-text {
    color: #ffffff;
}

/* Sección de contacto */
.contact-section {
    background: #f8f9fa;
    padding: 80px 0;
}

/* Tarjeta del formulario */
.contact-card {
    background: white;
    border-left: 5px solid #002855;
    /* Azul oscuro para elegancia */
    padding: 30px;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 3px 12px rgba(0, 0, 0, 0.1);
}

/* Títulos y textos */
.contact-title {
    font-size: 24px;
    font-weight: 700;
    color: #002855;
    text-align: center;
    margin-bottom: 15px;
}

.contact-description {
    font-size: 16px;
    color: #555;
    text-align: center;
    margin-bottom: 20px;
}

/* Campos de formulario */
.form-control {
    border-radius: 6px;
    border: 1px solid #ced4da;
    padding: 12px;
    font-size: 16px;
    transition: 0.3s;
}

.form-control:focus {
    border-color: #0056b3;
    box-shadow: 0px 0px 6px rgba(0, 86, 179, 0.2);
}

/* Botón */
.btn-service {
    display: block;
    width: 100%;
    padding: 12px;
    font-size: 16px;
    font-weight: 600;
    color: white;
    background: #0056b3;
    border-radius: 6px;
    text-align: center;
    text-decoration: none;
    border: none;
    transition: 0.3s ease-in-out;
}

.btn-service:hover {
    background: #002855;
}

/* Botón flotante del Centro de Arbitraje */
.floating-button {
    position: fixed;
    bottom: 85px;
    /* Se ajusta justo arriba del botón de WhatsApp */
    right: 20px;
    background-color: #002752;
    color: white;
    width: 200px;
    height: 40px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    z-index: 10001;
    /* Mayor que el de WhatsApp */
    transition: transform 0.3s, background-color 0.3s;
    text-decoration: none;
    gap: 10px;
}

.floating-button:hover {
    transform: scale(1.1);
    background-color: #002752;
    /* Un tono más oscuro para efecto hover */
}

.floating-button span {
    font-size: 16px;
    font-weight: bold;
    text-align: center;
}

/* Botón flotante de WhatsApp */
.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    /* Color verde de WhatsApp */
    color: white;
    padding: 10px 15px;
    border-radius: 50px;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    z-index: 10000;
    /* Debe ser menor que el de arbitraje */
}

.whatsapp-btn i {
    font-size: 20px;
    /* Tamaño del icono */
    margin-right: 10px;
}

footer.custom-footer {
    background: #ffffff;
    color: #000000;
}

.custom-footer {
    padding: 20px;
    color: #ffffff;
}

@media (max-width: 768px) {
    .custom-footer .row {
        flex-direction: column;
        text-align: center;
    }

    .custom-footer .col-md-2,
    .custom-footer .col-md-4 {
        margin-bottom: 20px;
    }
}

.contact-section {
    background: #092047;
    padding: 80px 0;
}

/* servicio */



h1 {
    font-weight: 700;
}

p {
    font-weight: 400;
}

/* Navbar */
.navbar {
    background: #002752;
    position: static;
}

.navbar-brand img {
    margin-right: 20px;
}

.navbar-nav .nav-link {
    font-size: 1rem;
    color: #ffffff;
}

@media (max-width: 768px) {
    .navbar-nav .nav-link {
        font-size: 0.9rem;
    }
}

.brand-text {
    color: #ffffff;
}

/* Imagen de fondo del encabezado */
.header-section {
    background-image: url('../IMG/banner-servicios.webp');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
}

/* Barra lateral */
.sidebar ul li {
    cursor: pointer;
    font-size: 18px;
    transition: 0.3s;
}

.sidebar ul li:hover {
    background: #0aa1ed;
    color: white;
}

.seccion-arbitraje {
    display: flex;
    align-items: center;
    padding: 40px 20px;
    transition: 0.3s;
    flex-wrap: wrap;
}

.seccion-arbitraje:nth-child(odd) {
    background-color: #f2f2f2;
}

.seccion-arbitraje:nth-child(even) {
    background-color: #0aa1ed;
    color: white;
}

.seccion-arbitraje img {
    width: 150px;
    height: auto;
    border-radius: 5px;
    margin-right: 20px;
}

.contenido-arbitraje {
    flex: 1;
}

.texto-arbitraje {
    font-size: 28px;
    font-weight: bold;
}

.boton-arbitraje {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 15px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
    opacity: 0;
}

.seccion-arbitraje:nth-child(odd) .boton-arbitraje {
    background-color: #0aa1ed;
    color: white;
}

.seccion-arbitraje:nth-child(even) .boton-arbitraje {
    background-color: white;
    color: #2196F3;
}

.seccion-arbitraje:hover .boton-arbitraje {
    opacity: 1;
}

.boton-arbitraje:hover {
    background-color: #0aa1ed;
    color: white;
}

/* Botón de WhatsApp */
.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    /* Color verde de WhatsApp */
    color: white;
    padding: 10px 15px;
    border-radius: 50px;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    z-index: 9999;
}

.whatsapp-btn i {
    font-size: 20px;
    /* Tamaño del icono */
    margin-right: 10px;
}

footer.custom-footer {
    background: #002752;
    color: #ffffff;
}

.custom-footer {
    padding: 20px;
    color: #ffffff;
}

@media (max-width: 768px) {
    .custom-footer .row {
        flex-direction: column;
        text-align: center;
    }

    .custom-footer .col-md-2,
    .custom-footer .col-md-4 {
        margin-bottom: 20px;
    }
}

.text-black {
    color: rgb(255 255 255) !important;
}