*
{
margin: 0;
padding: 0;
box-sizing: border-box;
text-decoration: none;
list-style: none;

}

body{
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;

}



/* inicio header */

.logo-container img{
    width: 40px;
    
}


header{
    position: sticky;
    top: 0px;
    background-color: #001f3f;
    width: 100%;
    z-index: 1000;
}

section{
    position: relative;
    height: calc(100vh - 3rem);
    width: 100%;
    background: url('bg.jpg') no-repeat top center / cover;
    overflow: hidden;
}



.container{
    max-width: 65rem;
    padding: 0 2rem;
    margin: 0 auto;
    display: flex;
    position: relative;
}

.logo-container{
    flex: 1;
    display: flex;
    align-items: center;
}

.nav-btn{
    flex: 3;
    display: flex;
}

.nav-links{
    flex: 2;
}

.log-sign{
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
}

.logo{
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 3rem;
}

.logo span{
    font-weight: 300;
}

.btn{
    display: inline-block;
    padding: .5rem 1.3rem;
    font-size: .8rem;
    border: 2px solid #fff;
    border-radius: 2rem;
    line-height: 1;
    margin: 0 .2rem;
    transition: .3s;
    text-transform: uppercase;
}

.btn.solid, .btn.transparent:hover{
    background-color: #fff;
    color: #39259d;
}

.btn.transparent, .btn.solid:hover{
    background-color: transparent;
    color: #fff;
}

.nav-links > ul{
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-link{
    position: relative;
}

.nav-link > a{
    line-height: 3rem;
    color: #fff;
    padding: 0 .8rem;
    letter-spacing: 1px;
    font-size: .9rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: .5s;
}

.nav-link > a > i{
    margin-left: .2rem;
}

.nav-link:hover > a{
    transform: scale(1.1);
}

.dropdown{
    position: absolute;
    top: 100%;
    left: 0;
    width: 15rem;
    transform: translateY(10px);
    opacity: 0;
    pointer-events: none;
    transition: .5s;
}

.dropdown ul{
    position: relative;
}

.dropdown-link > a{
    display: flex;
    background-color: #fff;
    color: #000000;
    padding: .7rem 0.02rem;
    font-size: .8rem;
    align-items: center;
    justify-content: space-between;
    transition: .3s;
}

.dropdown-link:hover > a{
    background-color: #001f3f;
    color: #fff;
}

.dropdown-link:not(:nth-last-child(2)){
    border-bottom: 1px solid #efefef;
}

.dropdown-link i{
    transform: rotate(-90deg);
}

.arrow{
    position: absolute;
    width: 11px;
    height: 11px;
    top: -5.5px;
    left: 32px;
    background-color: #fff;
    transform: rotate(45deg);
    cursor: pointer;
    transition: .3s;
    z-index: -1;
}

.dropdown-link:first-child:hover ~ .arrow{
    background-color: #000000;
}

.dropdown-link{
    position: relative;
}

.dropdown.second{
    top: 0;
    left: 100%;
    padding-left: .8rem;
    cursor: pointer;
    transform: translateX(10px);
}

.dropdown.second .arrow{
    top: 10px;
    left: -5.5px;
}

.nav-link:hover > .dropdown,
.dropdown-link:hover > .dropdown{
    transform: translate(0, 0);
    opacity: 1;
    pointer-events: auto;
}

.hamburger-menu-container{
    flex: 1;
    display: none;
    align-items: center;
    justify-content: flex-end;
}

.hamburger-menu{
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.hamburger-menu div{
    width: 1.6rem;
    height: 3px;
    border-radius: 3px;
    background-color: #fff;
    position: relative;
    z-index: 1001;
    transition: .5s;
}

.hamburger-menu div:before,
.hamburger-menu div:after{
    content: '';
    position: absolute;
    width: inherit;
    height: inherit;
    background-color: #fff;
    border-radius: 3px;
    transition: .5s;
}

.hamburger-menu div:before{
    transform: translateY(-7px);
}

.hamburger-menu div:after{
    transform: translateY(7px);
}

#check{
    position: absolute;
    top: 50%;
    right: 1.5rem;
    transform: translateY(-50%);
    width: 2.5rem;
    height: 2.5rem;
    z-index: 90000;
    cursor: pointer;
    opacity: 0;
    display: none;
}

#check:checked ~ .hamburger-menu-container .hamburger-menu div{
    background-color: transparent;
}

#check:checked ~ .hamburger-menu-container .hamburger-menu div:before{
    transform: translateY(0) rotate(-45deg);
}

#check:checked ~ .hamburger-menu-container .hamburger-menu div:after{
    transform: translateY(0) rotate(45deg);
}

@keyframes animation{
    from{
        opacity: 0;
        transform: translateY(15px);
    }
    to{
        opacity: 1;
        transform: translateY(0px);
    }
}

@media (max-width: 920px){
    .hamburger-menu-container{
        display: flex;
    }

    #check{
        display: block;
    }

    .nav-btn{
        position: fixed;
        height: calc(100vh - 3rem);
        top: 3rem;
        left: 0;
        width: 100%;
        background-color: #001f3f;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        overflow-x: hidden;
        overflow-y: auto;
        transform: translateX(100%);
        transition: .65s;
    }

    #check:checked ~ .nav-btn{
        transform: translateX(0);
    }

    #check:checked ~ .nav-btn .nav-link,
    #check:checked ~ .nav-btn .log-sign{
        animation: animation .5s ease forwards var(--i);
    }

    .nav-links{
        flex: initial;
        width: 100%;
    }

    .nav-links > ul{
        flex-direction: column;
    }

    .nav-link{
        width: 100%;
        opacity: 0;
        transform: translateY(15px);
    }

    .nav-link > a{
        line-height: 1;
        padding: 1.6rem 2rem;
    }

    .nav-link:hover > a{
        transform: scale(1);
        background-color: #001f3f;
    }

    .dropdown, .dropdown.second{
        position: initial;
        top: initial;
        left: initial;
        transform: initial;
        opacity: 1;
        pointer-events: auto;
        width: 100%;
        padding: 0;
        background-color: #001f3f;
        display: none;
    }
    
    .nav-link:hover > .dropdown,
    .dropdown-link:hover > .dropdown{
        display: block;
    }

    .nav-link:hover > a > i,
    .dropdown-link:hover > a > i{
        transform: rotate(360deg);
    }

    .dropdown-link > a{
        background-color: transparent;
        color: #fff;
        padding: 1.2rem 2rem;
        line-height: 1;
    }

    .dropdown.second .dropdown-link > a{
        padding: 1.2rem 2rem 1.2rem 3rem;
    }

    .dropdown.second .dropdown.second .dropdown-link > a{
        padding: 1.2rem 2rem 1.2rem 4rem;
    }

    .dropdown-link:not(:nth-last-child(2)){
        border-bottom: none;
    }

    .arrow{
        z-index: 1;
        background-color: #001f3f;
        left: 10%;
        transform: scale(1.1) rotate(45deg);
        transition: .5s;
    }

    .nav-link:hover .arrow{
        background-color: #211565;
    }

    .dropdown .dropdown .arrow{
        display: none;
    }

    .dropdown-link:hover > a{
        background-color: #170b65;
    }

    .dropdown-link:first-child:hover ~ .arrow{
        background-color: #dfdfdf;
    }

    .nav-link > a > i{
        font-size: 1.1rem;
        transform: rotate(-90deg);
        transition: .7s;
    }

    .dropdown i{
        font-size: 1rem;
        transition: .7s;
    }

    .log-sign{
        flex: initial;
        width: 100%;
        padding: 1.5rem 1.9rem;
        justify-content: flex-start;
        opacity: 0;
        transform: translateY(15px);
    }
}




/* Video Section */
.video-section {
    position: relative;
    width: 100%;
    height: 700px;
    overflow: hidden;
}

.video-section video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
}

.video-overlay h1 {
    font-size: 36px;
    margin-bottom: 30px;
}

.video-overlay p {
    font-size: 17px;
    margin-bottom: 20px;
}

/* Contenedor de los botones */
.button-container {
    display: flex;
    gap: 10px; /* Espacio entre los botones */
    justify-content: center; /* Centra los botones horizontalmente */
    flex-wrap: wrap; /* Permite que los botones se apilen en pantallas pequeñas */
}

/* Estilo base para los botones */
.cta-video-button {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
    font-size: 15px;
    color: #fff;
    background-color: #001f3f;
    text-align: center;
    border: 2px solid gold; /* Borde dorado de 2px */
        text-decoration: none;
    transition: background-color 0.3s ease;
    width: 150px; /* Ancho fijo para que los botones tengan el mismo tamaño */
    height: 50px; /* Alto fijo para que todos los botones tengan la misma altura */
    box-sizing: border-box; /* Asegura que el padding no afecte el ancho total */
}

/* Cambio de color al pasar el ratón */
.cta-video-button:hover {
    background-color: rgb(0, 37, 77);
}

/* Responsividad para pantallas medianas */
@media (max-width: 768px) {
    .cta-video-button {
        width: 130px; /* Ajusta el ancho para pantallas medianas */
        height: 45px; /* Ajusta el alto para pantallas medianas */
        font-size: 13px;
    }
}

/* Responsividad para pantallas pequeñas */
@media (max-width: 480px) {
    .cta-video-button {
        width: 100%; /* Los botones ocuparán toda la línea en pantallas pequeñas */
        height: auto; /* Altura automática para adaptarse al ancho */
        padding: 12px; /* Relleno ajustado para mejorar la legibilidad */
        font-size: 12px;
    }
}



/* Estilos responsivos */
@media (max-width: 768px) {
    .video-section {
        height: 500px;
    }

    .video-overlay h1 {
        font-size: 27px;
    }

    .video-overlay p {
        font-size: 16px;
    }

   
  
}



















/* Final header */


/* Final header */




/* Final header */












.banner {
    position: relative;
    background: url('../img/sup.jpg') no-repeat top center / cover;
    background-size: cover;
    background-position: center;
    height: 30vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(255, 255, 255);
    text-align: center;
}

.banner-content {
    animation: fadeIn 2s ease-in-out;
}

.banner h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.banner p {
    font-size: 1.2rem;
}



/* Animación de fade-in */
@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

/* Diseño responsivo */
@media (max-width: 768px) {
    .banner {
        height: 60vh;
    }

    .banner h1 {
        font-size: 2rem;
    }

    .banner p {
        font-size: 1rem;
    }

   
}








.hero {


    background-image: linear-gradient(
        #1a2945a2,
        #1a29457a), 
        url(../img/dama.jpeg);



    
    background-size: cover;
    background-position: center;
    height: 23vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-overlay {
   
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    padding: 20px;
}

.hero-content .icon {
    font-size: 50px;
    margin-bottom: 20px;
    color: #ffffff;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #ffffff;
}

.hero-content p {
    font-size: 18px;
    line-height: 1.6;
    color: #ffffff;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 16px;
    }
}











.blog-section {
    max-width: 1000px;
    margin: 30px auto;
    padding: 10px;
}

.blog-header h2 {
    font-size: 26px;
    color: #011223;
    margin-bottom: 10px;
    text-align: center;
    font-weight: bold;
}

.blog-header p {
    color: #444;
    line-height: 1.6;
    font-size: 18px;
    text-align: justify;
    margin-bottom: 20px;
}

.blog-content .blog-item {
    margin-top: 20px;
    padding: 15px 0;
    border-bottom: 2px solid #011223;
}

.blog-content h3 {
    font-size: 20px;
    color: #011223;
    margin-bottom: 8px;
    font-weight: bold;
}

.blog-content p {
    color: #333;
    line-height: 1.6;
    font-size: 16px;
    text-align: justify;
}

/* Responsivo */
@media (max-width: 600px) {
    .blog-section {
        padding: 15px;
    }

    .blog-header h2 {
        font-size: 22px;
    }

    .blog-content h3 {
        font-size: 18px;
    }
}













































/* eQUIPO */



.equipo {
    background-image: linear-gradient(
        rgba(163, 161, 161, 0.596),
        rgba(211, 211, 211, 0.479)), 
        url(./img/lawi.jpg);
        background-position: center bottom;
background-repeat: no-repeat;
background-size: cover;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 20px;
}

.miembro {
    background-image: linear-gradient(
        rgba(163, 161, 161, 0.596),
        rgba(211, 211, 211, 0.479)), 
        url(./img/dama.jpeg);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: 250px;
    margin: 20px;
    padding: 20px;
    transition: transform 0.3s ease;
}

.miembro:hover {
    transform: scale(1.05);
}

.miembro img {
    border-radius: 60%;
    width: 180px;
    height: 170px;
}

.contacto {
    margin-top: 10px;
}

.contacto a {
    margin: 0 5px;
    text-decoration: none;
    color: #000000;
}

.detalles {
  
    margin-top: 15px;
    text-decoration: none;
    color: #fff;
    background-color: #1C232D;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    
}

.detalles:hover {
    background-color: #434e5f;
}






























































.stats-container {


    color: #000000;
    padding: 50px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.stats-header h2 {
    font-size: 1.5rem;
    text-transform: uppercase;
    margin-bottom: 0;
}

.divider-horizontal {
    border: 0;
    height: 2px;
    background: #1A2945;
    margin: 10px auto 30px;
    width: 50%;
}

.stats-content p {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 40px;
    color: #000000;
}

.stats-numbers {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
}

.stat {
    font-size: 2rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    margin: 20px 0;
    flex-basis: 100%;
    justify-content: center;
}

.plus {
    font-size: 3rem;
    margin-right: 10px;
    color: #000000;
}

.number {
    font-size: 3rem;
    font-weight: bold;
    color: #000000;
}

.divider-vertical {
    width: 2px;
    height: 60px;
    background: #000000;
    margin: 20px 0;
}

@media screen and (min-width: 768px) {
    .stats-numbers {
        flex-wrap: nowrap;
    }

    .stat {
        flex-basis: auto;
        margin: 0 20px;
    }

    .divider-vertical {
        margin: 0 20px;
        height: 100px;
    }
}

@media screen and (min-width: 1024px) {
    .stats-header h2 {
        font-size: 2rem;
    }

    .stats-content p {
        font-size: 1.25rem;
    }

    .plus {
        font-size: 3.5rem;
    }

    .number {
        font-size: 3.5rem;
    }
}












































.stats-header2{
    text-align: center;

    
    width: 100%;
    height: 10vh;

    
    align-items: center;
    justify-content: center;
    background-color: #8f8f8f;
    align-items: center;
}


.stats-header2 h1{
color: white;
}


/* Estilos para el slider */
.slider-container {
    position: relative;
    width: 100%;
    height: 60vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: linear-gradient(
        rgba(127, 123, 123, 0.818),
        rgba(76, 75, 75, 0.795)), 
        url(../img/juridico.gif);
}

.slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
    height: 100%;
}

.slider-item {
    min-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #fff;
    padding: 20px;
    text-align: center;
}

.slider-content {
    max-width: 600px;
}

.slider-content h2 {
    margin-top: 20px;
    font-size: 36px;
}

.slider-content p {
    font-size: 18px;
    margin-top: 15px;
}

/* Estilos para los íconos */
.slider-content .icono {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
}

/* Botones de navegación */
button.prev, button.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.7);
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 24px;
    color: #111;
    border-radius: 30%;
    
}

button.prev {
    left: 10px;
}

button.next {
    right: 10px;
}

/* Imagen transparente con animación */
.animated-image-container {
    position: relative;
    width: 100%;
    height: 100px;
    background-color: #111;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -100px; /* Superpone ligeramente la imagen sobre el slider */
}

.animated-image {
    width: 200px;
    opacity: 0.7;
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}












































.stats-container {


    color: #000000;
    padding: 50px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.stats-header h2 {
    font-size: 1.5rem;
    text-transform: uppercase;
    margin-bottom: 0;
}

.divider-horizontal {
    border: 0;
    height: 2px;
    background: #1A2945;
    margin: 10px auto 30px;
    width: 50%;
}

.stats-content p {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 40px;
    color: #000000;
}

.stats-numbers {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
}

.stat {
    font-size: 2rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    margin: 20px 0;
    flex-basis: 100%;
    justify-content: center;
}

.plus {
    font-size: 3rem;
    margin-right: 10px;
    color: #000000;
}

.number {
    font-size: 3rem;
    font-weight: bold;
    color: #000000;
}

.divider-vertical {
    width: 2px;
    height: 60px;
    background: #000000;
    margin: 20px 0;
}

@media screen and (min-width: 768px) {
    .stats-numbers {
        flex-wrap: nowrap;
    }

    .stat {
        flex-basis: auto;
        margin: 0 20px;
    }

    .divider-vertical {
        margin: 0 20px;
        height: 100px;
    }
}

@media screen and (min-width: 1024px) {
    .stats-header h2 {
        font-size: 2rem;
    }

    .stats-content p {
        font-size: 1.25rem;
    }

    .plus {
        font-size: 3.5rem;
    }

    .number {
        font-size: 3.5rem;
    }
}


















































































.wrapper {
    width: 100%;
    max-width: 100%;
    background-color: #fff;
    border-radius: 10px;
    margin: 20px 0;
    padding: 20px;
    text-align: center;
    background-image: linear-gradient(
        rgba(255, 255, 255, 0.948),
        rgba(255, 255, 255, 0.925)), 
        url(../img/aa.jpg);
}

.content-block {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}

.content-block img {
    width: 20%;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.content-block img:hover {
    transform: scale(1.05);
}

.text-content {
    width: 60%;
    padding: 20px;
    text-align: center;
}

.text-content h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #777;
    animation: fadeIn 2s ease-out;
    text-align: left;
}

.text-content p {
    font-size: 1em;
    line-height: 1.8;
    color: #333;
    margin: 20px 0;
    animation: fadeIn 2s ease-out;
    text-align: left;
}

.separator {
    width: 80%;
    border: none;
    border-top: 1px solid #ccc;
    margin: 40px auto;
}

@keyframes fadeIn {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

.content-block.left .text-content {
    order: 2;
    text-align: center;
}

.content-block.right .text-content {
    order: 1;
    text-align: center;
}

@media (max-width: 768px) {
    .content-block {
        flex-direction: column;
    }

    .content-block img, .text-content {
        width: 60%;
   
    }

    .content-block img {
        margin-bottom: 20px;
    }
}
























































































































.contact-container {
    background-color: #001f3f;
    color: white;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 20px 0;
    text-align: center;
    position: relative;
}

.contact-item {
    flex: 1;
    position: relative;
    padding: 0 20px;
}

.divider {
    width: 1px;
    background-color: white;
    height: 50px;
    align-self: center;
}

.icon-link {
    text-decoration: none;
    color: white;
    display: inline-block;
    transition: transform 0.3s ease, color 0.3s ease;
    animation: bounce 2s infinite;
}

.icon-link:hover {
    transform: scale(1.2) rotate(10deg);
    color: #FFD700;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.contact-item i {
    font-size: 24px;
    margin-bottom: 10px;
}

.contact-item p {
    margin: 5px 0;
}

@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }

    .contact-item {
        margin-bottom: 20px;
    }

    .divider {
        width: 80%;
        height: 1px;
        margin: 10px 0;
    }
}



















.case-review-section {
    display: flex;
    flex-wrap: wrap;
    padding: 60px 60px 60px 80px;
    height: 100%; /* Por ejemplo, ajusta según sea necesario */
    gap: 20px;
}

.content {
    flex: 1 1 60%;
    min-width: 300px;
}

.breadcrumb {
    font-size: 1.1em;
    color: #666;
    margin-bottom: 10px;
}

.breadcrumb a {
    color: #666;
    text-decoration: none;
}

.breadcrumb span {
    color: #333;
}

.description {
    font-size: 1.1em;
    margin-bottom: 20px;
}

.contact-info {
    background-color: #e6f1fb;
    padding: 15px;
    margin-bottom: 20px;
    font-weight: bold;
    color: #333;
}

.achievements-title {
    font-size: 1.2em;
    color: #333;
    margin-bottom: 10px;
}

.achievements-list {
    list-style: none;
    padding-left: 20px;
}

.achievements-list li {
    margin-bottom: 5px;
}

.case-review-form {
    background-color: #041a3a;
    max-height: 400px;
    color: #ffffff;
    padding: 20px;
    flex: 1 1 30%;
    min-width: 200px;
    text-align: center;
}

.case-review-form h2 {
    margin-bottom: 15px;
    font-size: 1.3em;
}

.case-review-form input,
.case-review-form textarea {
    width: 100%;
    padding: 10px;
    margin: 5px 0;
    border: none;
}

.case-review-form textarea {
    resize: none;
    height: 80px;
}

.case-review-form button {
    background-color: #f0a22e;
    color: #fff;
    padding: 10px;
    border: none;
    cursor: pointer;
    width: 100%;
    font-weight: bold;
}

.case-review-form button:hover {
    background-color: #d28f27;
}

/* Navigation Dots Styling */
.navigation-dots {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.navigation-dots .dot {
    width: 10px;
    height: 10px;
    background-color: #f0a22e;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s;
}

.navigation-dots .dot:hover {
    background-color: #d28f27;
}

.additional-info {
    padding: 20px 40px;
    background-color: #f5f5f5;
}

.info-section {
    padding: 20px;
    margin: 10px 0;
    background-color: #e0e0e0;
    text-align: center;
}

@media (max-width: 768px) {
    .case-review-section {
        flex-direction: column;
        padding: 10px;
    }
    .content, .case-review-form {
        min-width: 100%;
    }
}

@media (max-width: 480px) {
    .breadcrumb {
        font-size: 0.8em;
    }

    .description {
        font-size: 1em;
    }

    .contact-info {
        font-size: 0.9em;
    }

    .achievements-title {
        font-size: 1.1em;
    }

    .case-review-form {
        padding: 15px;
    }

    .case-review-form h2 {
        font-size: 1.1em;
    }

    .case-review-form input,
    .case-review-form textarea {
        padding: 8px;
        font-size: 0.9em;
    }

    .case-review-form button {
        padding: 8px;
        font-size: 0.9em;
    }

    .additional-info {
        padding: 10px 20px;
    }

    .info-section {
        padding: 15px;
    }
}
























.header-container {
    text-align: center;
    width: 100%;
padding: 20px;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.logo-wrapper {
    margin-bottom: 20px;
}

.logo-image {
    width: 50px;
    height: auto;
}

.navigation-menu {
    font-size: 15px;
    color: #000000; /* Green color */
}

.navigation-menu a {
    text-decoration: none;
    color: #000000;
    margin: 0 5px;
    transition: color 0.3s ease;
}

.navigation-menu a:hover {
    color: #555555; /* Darker green */
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo-image {
        width: 40px;
        display: none;
    }

    .navigation-menu {
        font-size: 12px;
        display: none;
    }
}













.related-articles {
    max-width: 1200px;
    margin: 15px auto;
  }
  
  .related-articles h2 {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
  }
  
  .articles-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
  }
  
  .article-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    width: calc(25% - 20px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }
  
  .article-card img {
    width: 100%;
    height: 160px;
  }
  
  .article-card h3 {
    font-size: 18px;
    padding: 15px;
    flex-grow: 1;
  }
  
  .meta {
    display: flex;
    justify-content: space-between;
    padding: 0 15px 10px;
    font-size: 14px;
    color: #777;
  }
  
  .category {
    background: #f0f0f0;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 12px;
  }
  
  .read-more {
    text-decoration: none;
    color: #000000;
    font-weight: bold;
    padding: 10px 15px;
    border-top: 1px solid #000000;
    text-align: center;
  }
  
  
  
  @media (max-width: 768px) {
    .article-card {
      width: calc(50% - 10px);
    }
  }
  
  @media (max-width: 480px) {
    .article-card {
      width: 100%;
    }
  }













  .hero-section {
    height: 60vh;
    background: url('../img/pexels-photo-7876093.jpeg') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
  }
  
  .text-container {
    color: white;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7);
    transition: opacity 1.5s ease-in-out, transform 1.5s ease-in-out;
    opacity: 0;
    transform: translateY(50px);
  }
  
  /* Fade-in animation for text on scroll */
  .fade-in {
    font-size: 1.5rem;
    margin: 10px 0;
  }
  
  /* Media Queries for responsiveness */
  @media (max-width: 768px) {
    .fade-in {
      font-size: 1.2rem;
    }
  }
  
  @media (max-width: 480px) {
    .fade-in {
      font-size: 1rem;
    }
  }
  
  /* Scroll animation trigger */
  body.scrolled .text-container {
    opacity: 1;
    transform: translateY(0);
  }
  












  .difference-section {
    height: 75vh;

    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding: 80px;
  }
  
  .difference-section h1 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #333;
  }
  
  .difference-section p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 30px;
  }
  
  .icons-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
  }
  
  .icon-box {
    background: #fff;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
    flex: 1 1 300px;
    max-width: 300px;
  }
  
  .icon-box img {
    max-width: 50px;
    margin-bottom: 10px;
  }
  
  .icon-box h3 {
    font-size: 1.2rem;
    color: #060a4d;
  }
  
  /* Responsive design */
  @media (max-width: 768px) {
    .difference-section h1 {

      font-size: 1.8rem;

   
}
    .difference-section p {
      font-size: 0.9rem;
    }
  
    .icon-box {
        height: 60vh;

      flex: 3 3 200%;
      max-width: 200%;
    }
  }

  @media (max-width: 768px) {
    .icons-container {
      display: none;
    }
  }

  @media (max-width: 992px) {
    .icons-container {
      display: none;
    }
  }


  @media (max-width: 1200px) {
    .icons-container {
      display: none;
    }
  }


























/* Footer inicio */

/* Footer General */
footer {
    background-color: #001f3f;
    color: white;
    padding: 40px 20px;
    font-family: 'Arial', sans-serif;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-logo h1 {
    font-size: 40px;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
}

.footer-logo p {
    max-width: 400px;
    line-height: 1.6;
    opacity: 0;
    animation: fadeIn 2s ease-out forwards;
    font-size: 13px;

}

.footer-sections {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 55%;
}

.footer-section h3 {
    border-bottom: 2px solid #ccc;
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-size: 13px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section li {
    margin-bottom: 10px;
    transition: transform 0.3s ease;
    font-size: 13px;

}

.footer-section li:hover {
    transform: translateX(5px);
}

.footer-section p {
    margin: 10px 0;
    font-size: 13px;

}



.social-icons a {
    display: inline-block;
    margin-right: 10px;
    transition: transform 0.3s ease;
}



.icon{
color: #ffffff;
}
.social-icons a:hover {
    transform: scale(1.1);
}

.footer-legal {
    text-align: center;
    margin-top: 20px;
    border-top: 1px solid #ccc;
    padding-top: 20px;
}

.footer-legal p {
    margin: 0;
    font-size: 9px;
}

/* Animaciones */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Media Queries para Responsividad */
@media (max-width: 1024px) {
    .footer-sections {
        width: 100%;
        flex-direction: column;
    }

    .footer-logo {
        text-align: center;
        margin-bottom: 40px;
    }

    .footer-logo p {
        margin: 0 auto;
    }

    .footer-section {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .footer-logo h1 {
        font-size: 60px;
    }

    .footer-section h3 {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .footer-logo h1 {
        font-size: 48px;
    }

    .footer-legal p {
        font-size: 12px;
    }
}


/* Footer final */






