/*==========================================================
    LEXUM
    STYLE.CSS

    Autor: LEXUM
    Versión: 1.0

==========================================================*/

/*==========================================================
                    VARIABLES
==========================================================*/

:root{

    --primary:#071626;

    --secondary:#0D2236;

    --secondary-light:#173B61;

    --gold:#C6A35C;

    --gold-light:#E8C98B;

    --white:#FFFFFF;

    --gray:#D8D8D8;

    --text:#F5F5F5;

    --dark:#020A12;

    --border:rgba(255,255,255,.08);

    --glass:rgba(255,255,255,.05);

    --shadow:

        0 15px 45px rgba(0,0,0,.25);

    --shadow-hover:

        0 25px 60px rgba(0,0,0,.35);

    --radius:18px;

    --transition:.35s ease;

}

/*==========================================================
                    RESET
==========================================================*/

*,
*::before,
*::after{

    margin:0;

    padding:0;

    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

    overflow-x:hidden;

}

body{

    font-family:'Poppins',sans-serif;

    background:var(--primary);

    color:var(--text);

    overflow-x:hidden;

    line-height:1.7;

}

/*==========================================================
                TIPOGRAFÍA
==========================================================*/

h1,h2,h3,h4,h5,h6{

    font-family:

        'Cormorant Garamond',

        serif;

    font-weight:700;

    color:white;

    margin-bottom:20px;

}

h1{

    font-size:72px;

    line-height:1.1;

}

h2{

    font-size:52px;

}

h3{

    font-size:34px;

}

h4{

    font-size:28px;

}

h5{

    font-size:22px;

}

p{

    color:var(--gray);

    margin-bottom:18px;

}

a{

    color:inherit;

    text-decoration:none;

}

img{

    max-width:100%;

    display:block;

}

/*==========================================================
                COMPONENTES
==========================================================*/

.section-padding{

    padding:120px 0;

}

.section-title{

    margin-bottom:70px;

}

.section-title span{

    color:var(--gold);

    font-size:15px;

    text-transform:uppercase;

    letter-spacing:3px;

    font-weight:600;

}

.section-title h2{

    margin-top:12px;

}

.section-title p{

    max-width:700px;

    margin:25px auto 0;

}

/*==========================================================
                    SCROLLBAR
==========================================================*/

::-webkit-scrollbar{

    width:12px;

}

::-webkit-scrollbar-track{

    background:#05101C;

}

::-webkit-scrollbar-thumb{

    background:var(--gold);

    border-radius:30px;

}

::-webkit-scrollbar-thumb:hover{

    background:var(--gold-light);

}

/*==========================================================
                SELECCIÓN
==========================================================*/

::selection{

    background:var(--gold);

    color:var(--primary);

}

/*==========================================================
                    CURSOR
==========================================================*/

.cursor-dot{

    width:8px;

    height:8px;

    background:var(--gold);

    border-radius:50%;

    position:fixed;

    pointer-events:none;

    z-index:99999;

    transform:translate(-50%,-50%);

}

.cursor-outline{

    width:40px;

    height:40px;

    border:2px solid rgba(198,163,92,.4);

    border-radius:50%;

    position:fixed;

    pointer-events:none;

    z-index:99998;

    transform:translate(-50%,-50%);

    transition:.08s;

}

/*==========================================================
                PRELOADER
==========================================================*/

#preloader{

    position:fixed;

    inset:0;

    background:var(--primary);

    display:flex;

    justify-content:center;

    align-items:center;

    z-index:999999;

}

.loader{

    text-align:center;

}

.loader img{

    width:110px;

    border-radius:12px;

    animation:pulse 2s;

}

.loader span{

    display:block;

    width:180px;

    height:4px;

    margin-top:35px;

    border-radius:30px;

    background:var(--gold);

    animation:loading 2s infinite;

}

@keyframes pulse{

    50%{

        transform:scale(1.06);

    }

}

@keyframes loading{

    from{

        width:0;

    }

    to{

        width:180px;

    }

}

/*==========================================================
                BOTONES
==========================================================*/

.btn-premium{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:16px 38px;

    background:var(--gold);

    color:var(--primary);

    border-radius:60px;

    font-weight:600;

    transition:var(--transition);

    border:none;

    box-shadow:var(--shadow);

}

.btn-premium:hover{

    background:white;

    transform:translateY(-4px);

    box-shadow:var(--shadow-hover);

}

.btn-outline-premium{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:16px 38px;

    border-radius:60px;

    border:2px solid rgba(255,255,255,.18);

    color:white;

    transition:var(--transition);

}

.btn-outline-premium:hover{

    background:rgba(255,255,255,.08);

    border-color:var(--gold);

}

/*==========================================================
                TOP BAR
==========================================================*/

.top-bar{

    background:#03111D;

    padding:10px 0;

    font-size:14px;

}

.top-contact{

    display:inline-flex;

    align-items:center;

    gap:8px;

    margin-right:30px;

    color:#D6D6D6;

}

.top-bar a{

    color:white;

    margin-left:18px;

    transition:.3s;

}

.top-bar a:hover{

    color:var(--gold);

}

/*==========================================================
                    NAVBAR
==========================================================*/

.navbar{

    padding:30px 0;

    transition:.4s;

    background:transparent;

}

.navbar.scrolled{

    background:rgba(7,22,38,.90);

    backdrop-filter:blur(14px);

    box-shadow:0 15px 45px rgba(0,0,0,.30);

}

.navbar-brand img{

    height:58px;

    border-radius:10px;

}

.navbar-nav{

    gap:10px;

}

.nav-link{

    color:white !important;

    font-weight:500;

    padding:12px 18px !important;

    position:relative;

}

.nav-link::after{

    content:"";

    position:absolute;

    left:18px;

    bottom:5px;

    width:0;

    height:2px;

    background:var(--gold);

    transition:.35s;

}

.nav-link:hover::after,

.nav-link.active::after{

    width:35px;

}

/*==========================================================
                        HERO
==========================================================*/

.hero{

    position:relative;

    min-height:100vh;

    display:flex;

    align-items:center;

    overflow:hidden;

    background:
        linear-gradient(
            135deg,
            rgba(7,22,38,.96),
            rgba(13,34,54,.90)
        );

}

.hero::before{

    content:"";

    position:absolute;

    inset:0;

    background-image:url("../img/LEXUM.jpeg");

    background-size:cover;

    background-position:center;

    opacity:.18;

    transform:scale(1.05);

}

.hero-overlay{

    position:absolute;

    inset:0;

    background:
        radial-gradient(
            circle at top right,
            rgba(198,163,92,.10),
            transparent 45%
        );

}

.hero .container{

    position:relative;

    z-index:5;

}

.hero-content{

    max-width:650px;

}

.hero-badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    background:rgba(255,255,255,.05);

    backdrop-filter:blur(10px);

    border:1px solid rgba(255,255,255,.08);

    color:var(--gold);

    padding:12px 22px;

    border-radius:50px;

    margin-bottom:30px;

    font-size:14px;

    letter-spacing:1px;

}

.hero h1{

    margin-bottom:30px;

}

.hero h1 span{

    color:var(--gold);

}

.hero p{

    font-size:20px;

    max-width:600px;

}

.hero-buttons{

    display:flex;

    gap:20px;

    margin-top:45px;

    flex-wrap:wrap;

}

.hero-image{

    position:relative;

    display:flex;

    justify-content:center;

}

.hero-image img{

    width:100%;

    max-width:520px;

    border-radius:22px;

    border:1px solid rgba(255,255,255,.10);

    box-shadow:0 40px 90px rgba(0,0,0,.45);

    animation:floatImage 6s ease-in-out infinite;

}

.hero-image::before{

    content:"";

    position:absolute;

    width:420px;

    height:420px;

    background:rgba(198,163,92,.12);

    filter:blur(80px);

    z-index:-1;

    border-radius:50%;

}

@keyframes floatImage{

    0%,100%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-15px);

    }

}

/*==========================================================
                SCROLL INDICATOR
==========================================================*/

.scroll-indicator{

    position:absolute;

    bottom:40px;

    left:50%;

    transform:translateX(-50%);

}

.scroll-indicator span{

    display:block;

    width:26px;

    height:46px;

    border:2px solid white;

    border-radius:40px;

    position:relative;

}

.scroll-indicator span::before{

    content:"";

    position:absolute;

    width:6px;

    height:6px;

    border-radius:50%;

    background:var(--gold);

    left:50%;

    transform:translateX(-50%);

    top:8px;

    animation:scrollDown 2s infinite;

}

@keyframes scrollDown{

    0%{

        opacity:1;

        top:8px;

    }

    100%{

        opacity:0;

        top:28px;

    }

}

/*==========================================================
                SEPARADOR
==========================================================*/

.section-divider{

    height:120px;

    position:relative;

    background:linear-gradient(

        180deg,

        transparent,

        rgba(198,163,92,.08),

        transparent

    );

}

.divider-line{

    width:1px;

    height:100%;

    margin:auto;

    background:linear-gradient(

        transparent,

        var(--gold),

        transparent

    );

}

/*==========================================================
                ABOUT
==========================================================*/

.about{

    position:relative;

}

.about-image{

    position:relative;

}

.about-image img{

    border-radius:20px;

    position:relative;

    z-index:2;

    box-shadow:var(--shadow-hover);

}

.image-border{

    position:absolute;

    top:-20px;

    left:-20px;

    right:20px;

    bottom:20px;

    border:2px solid rgba(198,163,92,.30);

    border-radius:20px;

}

.experience-card{

    position:absolute;

    right:-25px;

    bottom:30px;

    background:rgba(13,34,54,.95);

    backdrop-filter:blur(15px);

    border:1px solid rgba(198,163,92,.20);

    padding:25px;

    border-radius:18px;

    box-shadow:var(--shadow);

    z-index:5;

}

.experience-card h2{

    color:var(--gold);

    margin:0;

    font-size:52px;

}

.experience-card p{

    margin:0;

    color:#fff;

}

/*==========================================================
                VALORES
==========================================================*/

.value-box{

    background:rgba(255,255,255,.03);

    border:1px solid var(--border);

    border-radius:var(--radius);

    padding:30px;

    transition:var(--transition);

    height:100%;

    margin-bottom:24px;

}

.value-box:hover{

    transform:translateY(-8px);

    border-color:rgba(198,163,92,.45);

    box-shadow:var(--shadow);

}

.value-box i{

    font-size:42px;

    color:var(--gold);

    margin-bottom:18px;

    display:inline-block;

}

.value-box h5{

    margin-bottom:12px;

}

/*==========================================================
                ESTADÍSTICAS
==========================================================*/

.stats{

    background:linear-gradient(

        90deg,

        #081B2D,

        #102A43

    );

}

.stat-card{

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.06);

    border-radius:18px;

    padding:40px 25px;

    transition:.35s;

    height:100%;

}

.stat-card:hover{

    transform:translateY(-10px);

    border-color:rgba(198,163,92,.45);

    box-shadow:var(--shadow);

}

.stat-card h2{

    font-size:60px;

    color:var(--gold);

    display:inline-block;

    margin:0;

}

.stat-card span{

    font-size:34px;

    color:white;

    margin-left:5px;

}

.stat-card p{

    margin-top:15px;

    margin-bottom:0;

    color:#E6E6E6;

}

/*==========================================================
                    SERVICIOS
==========================================================*/

.services{

    position:relative;

    padding:120px 0;

    background:
        linear-gradient(
            180deg,
            var(--primary),
            #091B2C,
            var(--primary)
        );

}

.services::before{

    content:"";

    position:absolute;

    width:700px;

    height:700px;

    top:-300px;

    right:-300px;

    border-radius:50%;

    background:rgba(198,163,92,.05);

    filter:blur(100px);

}

.service-card{

    position:relative;

    background:rgba(255,255,255,.04);

    backdrop-filter:blur(15px);

    border:1px solid rgba(255,255,255,.08);

    border-radius:22px;

    padding:45px 35px;

    overflow:hidden;

    transition:.45s;

    height:100%;

}

.service-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:0;

    height:4px;

    background:var(--gold);

    transition:.45s;

}

.service-card:hover{

    transform:translateY(-12px);

    border-color:rgba(198,163,92,.35);

    box-shadow:0 30px 70px rgba(0,0,0,.35);

}

.service-card:hover::before{

    width:100%;

}

.service-icon{

    width:80px;

    height:80px;

    border-radius:20px;

    display:flex;

    justify-content:center;

    align-items:center;

    background:rgba(198,163,92,.10);

    color:var(--gold);

    font-size:36px;

    margin-bottom:30px;

}

.service-card h3{

    margin-bottom:20px;

}

.service-card p{

    min-height:110px;

}

.service-card a{

    color:var(--gold);

    font-weight:600;

    display:inline-flex;

    align-items:center;

    gap:8px;

    transition:.3s;

}

.service-card a:hover{

    gap:14px;

}

/*==========================================================
                    CTA
==========================================================*/

.cta{

    padding:90px 0;

    background:

        linear-gradient(

            135deg,

            #0E2942,

            #173B61

        );

}

.cta h2{

    margin-bottom:20px;

}

.cta p{

    margin-bottom:0;

}

/*==========================================================
                EQUIPO
==========================================================*/

.team{

    background:var(--primary);

}

.lawyer-card{

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    border-radius:24px;

    overflow:hidden;

    transition:.45s;

    height:100%;

}

.lawyer-card:hover{

    transform:translateY(-12px);

    box-shadow:0 35px 70px rgba(0,0,0,.35);

    border-color:rgba(198,163,92,.35);

}

.lawyer-image{

    overflow:hidden;

}

.lawyer-image img{

    width:100%;

    height:420px;

    object-fit:cover;

    transition:.6s;

}

.lawyer-card:hover img{

    transform:scale(1.08);

}

.lawyer-body{

    padding:35px;

}

.lawyer-body span{

    color:var(--gold);

    display:block;

    margin-bottom:18px;

    font-weight:600;

}

.lawyer-social{

    display:flex;

    gap:15px;

    margin-top:25px;

}

.lawyer-social a{

    width:45px;

    height:45px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    background:rgba(255,255,255,.05);

    transition:.3s;

}

.lawyer-social a:hover{

    background:var(--gold);

    color:var(--primary);

}

/*==========================================================
                    TIMELINE
==========================================================*/

.workflow{

    padding:120px 0;

    background:#081B2D;

}

.timeline{

    position:relative;

    max-width:900px;

    margin:auto;

}

.timeline::before{

    content:"";

    position:absolute;

    left:30px;

    top:0;

    bottom:0;

    width:3px;

    background:var(--gold);

}

.timeline-item{

    position:relative;

    padding-left:100px;

    margin-bottom:70px;

}

.timeline-number{

    position:absolute;

    left:0;

    width:60px;

    height:60px;

    border-radius:50%;

    background:var(--gold);

    color:var(--primary);

    display:flex;

    justify-content:center;

    align-items:center;

    font-weight:bold;

    font-size:22px;

}

.timeline-content{

    background:rgba(255,255,255,.04);

    border-radius:20px;

    border:1px solid rgba(255,255,255,.08);

    padding:30px;

}

.timeline-content h4{

    margin-bottom:12px;

}

/*==========================================================
                CASOS DE ÉXITO
==========================================================*/

.cases{

    padding:120px 0;

}

.case-card{

    background:

        linear-gradient(

            145deg,

            rgba(255,255,255,.04),

            rgba(255,255,255,.02)

        );

    border-radius:20px;

    padding:40px;

    border:1px solid rgba(255,255,255,.08);

    transition:.3s;

    height:100%;

}

.case-card:hover{

    transform:translateY(-10px);

    border-color:var(--gold);

    box-shadow:0 25px 60px rgba(0,0,0,.30);

}

.case-card h3{

    color:var(--gold);

    margin-bottom:20px;

}

/*==========================================================
                    CLIENTES
==========================================================*/

.clients{

    padding:120px 0;

    background:linear-gradient(
        180deg,
        var(--primary),
        #091B2C,
        var(--primary)
    );

}

.clients-slider{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:40px;

    flex-wrap:wrap;

}

.client-item{

    flex:1;

    min-width:160px;

    display:flex;

    justify-content:center;

    align-items:center;

    padding:30px;

    border-radius:18px;

    background:rgba(255,255,255,.03);

    border:1px solid rgba(255,255,255,.06);

    transition:.4s;

}

.client-item:hover{

    transform:translateY(-8px);

    border-color:rgba(198,163,92,.35);

    background:rgba(255,255,255,.06);

}

.client-item img{

    max-height:70px;

    filter:grayscale(100%);

    opacity:.75;

    transition:.35s;

}

.client-item:hover img{

    filter:none;

    opacity:1;

}

/*==========================================================
                TESTIMONIOS
==========================================================*/

.testimonials{

    padding:120px 0;

    background:#081B2D;

}

.testimonial-card{

    max-width:850px;

    margin:auto;

    padding:60px;

    border-radius:24px;

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    text-align:center;

    backdrop-filter:blur(15px);

}

.testimonial-card p{

    font-size:22px;

    margin:35px 0;

    color:#F3F3F3;

    font-style:italic;

}

.testimonial-card h5{

    margin-bottom:8px;

}

.carousel-control-prev-icon,
.carousel-control-next-icon{

    filter:invert(1);

}

/*==========================================================
                    BLOG
==========================================================*/

.blog{

    padding:120px 0;

}

.blog-card{

    height:100%;

    overflow:hidden;

    border-radius:22px;

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    transition:.4s;

}

.blog-card:hover{

    transform:translateY(-10px);

    box-shadow:0 30px 70px rgba(0,0,0,.35);

}

.blog-image{

    overflow:hidden;

}

.blog-image img{

    width:100%;

    height:260px;

    object-fit:cover;

    transition:.5s;

}

.blog-card:hover img{

    transform:scale(1.08);

}

.blog-content{

    padding:35px;

}

.blog-category{

    color:var(--gold);

    font-weight:600;

    letter-spacing:1px;

}

.blog-content h3{

    margin:18px 0;

}

.blog-content a{

    color:var(--gold);

    font-weight:600;

    display:inline-flex;

    align-items:center;

    gap:10px;

}

/*==========================================================
                    CONTACTO
==========================================================*/

.contact{

    padding:120px 0;

    background:#071626;

}

.contact-info{

    margin-top:40px;

}

.contact-item{

    display:flex;

    gap:20px;

    margin-bottom:35px;

}

.contact-item i{

    width:60px;

    height:60px;

    border-radius:18px;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:24px;

    background:rgba(198,163,92,.10);

    color:var(--gold);

}

.contact-form{

    background:rgba(255,255,255,.04);

    padding:45px;

    border-radius:24px;

    border:1px solid rgba(255,255,255,.08);

}

.contact-form .form-control{

    margin-bottom:22px;

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    color:white;

    padding:16px 18px;

    border-radius:14px;

}

.contact-form .form-control:focus{

    border-color:var(--gold);

    box-shadow:none;

    background:rgba(255,255,255,.06);

    color:white;

}

.contact-form .form-control::placeholder{

    color:#CFCFCF;

}

/*==========================================================
                    GOOGLE MAPS
==========================================================*/

.map-container{

    margin-top:60px;

    overflow:hidden;

    border-radius:24px;

    border:1px solid rgba(255,255,255,.08);

}

.map-container iframe{

    width:100%;

    height:450px;

    border:none;

}

/*==========================================================
                        FOOTER
==========================================================*/

.footer{

    padding:90px 0 30px;

    background:#020A12;

}

.footer-logo{

    width:90px;

    margin-bottom:25px;

}

.footer h4{

    color:var(--gold);

    margin-bottom:25px;

}

.footer ul{

    list-style:none;

    padding:0;

}

.footer li{

    margin-bottom:14px;

}

.footer a{

    color:#D7D7D7;

    transition:.3s;

}

.footer a:hover{

    color:var(--gold);

}

.footer-social{

    display:flex;

    gap:14px;

    margin-top:30px;

}

.footer-social a{

    width:46px;

    height:46px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    background:rgba(255,255,255,.05);

    transition:.35s;

}

.footer-social a:hover{

    background:var(--gold);

    color:var(--primary);

}

.footer hr{

    margin:60px 0 30px;

    border-color:rgba(255,255,255,.08);

}

.footer-bottom{

    text-align:center;

}

/*==========================================================
                BOTONES FLOTANTES
==========================================================*/

.whatsapp-button{

    position:fixed;

    right:25px;

    bottom:25px;

    width:65px;

    height:65px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:32px;

    color:white;

    background:#25D366;

    box-shadow:0 15px 40px rgba(0,0,0,.35);

    z-index:999;

    transition:.35s;

}

.whatsapp-button:hover{

    transform:scale(1.1);

}

.scroll-top{

    position:fixed;

    right:25px;

    bottom:105px;

    width:55px;

    height:55px;

    border:none;

    border-radius:50%;

    background:var(--gold);

    color:var(--primary);

    display:none;

    justify-content:center;

    align-items:center;

    cursor:pointer;

    font-size:22px;

    z-index:999;

    transition:.35s;

}

.scroll-top:hover{

    transform:translateY(-6px);

}

/*==========================================================
                ANIMACIONES BASE
==========================================================*/

.fade-up{

    opacity:0;

    transform:translateY(40px);

    transition:.8s;

}

.fade-up.show{

    opacity:1;

    transform:none;

}

/*==========================================================
                    EFECTOS GLASS
==========================================================*/

.glass{

    background:rgba(255,255,255,.05);

    backdrop-filter:blur(18px);

    -webkit-backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.08);

    border-radius:24px;

}

.glass-dark{

    background:rgba(7,22,38,.75);

    backdrop-filter:blur(20px);

}

/*==========================================================
                SOMBRAS PREMIUM
==========================================================*/

.shadow-soft{

    box-shadow:

        0 15px 35px rgba(0,0,0,.15);

}

.shadow-medium{

    box-shadow:

        0 25px 60px rgba(0,0,0,.25);

}

.shadow-premium{

    box-shadow:

        0 35px 80px rgba(0,0,0,.35);

}

/*==========================================================
                HOVER MAGNÉTICO
==========================================================*/

.btn-premium,

.btn-outline-premium{

    position:relative;

    overflow:hidden;

}

.btn-premium::before,

.btn-outline-premium::before{

    content:"";

    position:absolute;

    width:0;

    height:0;

    left:50%;

    top:50%;

    border-radius:50%;

    background:rgba(255,255,255,.18);

    transform:translate(-50%,-50%);

    transition:.5s;

}

.btn-premium:hover::before,

.btn-outline-premium:hover::before{

    width:320px;

    height:320px;

}

/*==========================================================
                EFECTO BRILLO
==========================================================*/

.service-card,

.blog-card,

.case-card,

.lawyer-card{

    position:relative;

}

.service-card::after,

.blog-card::after,

.case-card::after,

.lawyer-card::after{

    content:"";

    position:absolute;

    top:-100%;

    left:-100%;

    width:60%;

    height:250%;

    background:

        linear-gradient(

            transparent,

            rgba(255,255,255,.08),

            transparent

        );

    transform:rotate(25deg);

    transition:.8s;

}

.service-card:hover::after,

.blog-card:hover::after,

.case-card:hover::after,

.lawyer-card:hover::after{

    left:170%;

}

/*==========================================================
                TRANSICIONES
==========================================================*/

img,

button,

a,

.card,

.service-card,

.blog-card,

.case-card,

.lawyer-card{

    transition:.35s ease;

}

/*==========================================================
                FOCUS ACCESIBLE
==========================================================*/

button:focus,

a:focus,

input:focus,

textarea:focus{

    outline:none;

    box-shadow:

        0 0 0 4px

        rgba(198,163,92,.25);

}

/*==========================================================
                IMÁGENES
==========================================================*/

img{

    user-select:none;

    -webkit-user-drag:none;

}

/*==========================================================
                RESPONSIVE XL
==========================================================*/

@media(max-width:1400px){

.hero h1{

font-size:62px;

}

.section-title h2{

font-size:46px;

}

}

/*==========================================================
                LAPTOP
==========================================================*/

@media(max-width:1200px){

.hero{

padding-top:150px;

padding-bottom:80px;

}

.hero-image{

margin-top:60px;

}

.hero h1{

font-size:56px;

}

.section-padding{

padding:100px 0;

}

}

/*==========================================================
                TABLET
==========================================================*/

@media(max-width:992px){

.navbar{

background:rgba(7,22,38,.95);

backdrop-filter:blur(18px);

}

.navbar-collapse{

padding:25px 0;

}

.hero{

text-align:center;

}

.hero-content{

margin:auto;

}

.hero-buttons{

justify-content:center;

}

.hero-image{

margin-top:70px;

}

.experience-card{

position:relative;

right:0;

bottom:0;

margin-top:30px;

}

.timeline::before{

left:18px;

}

.timeline-item{

padding-left:70px;

}

.timeline-number{

width:40px;

height:40px;

font-size:16px;

}

.footer{

text-align:center;

}

.footer-social{

justify-content:center;

}

.clients-slider{

justify-content:center;

}

}

/*==========================================================
                MÓVILES
==========================================================*/

@media(max-width:768px){

h1{

font-size:42px;

}

h2{

font-size:34px;

}

h3{

font-size:28px;

}

.hero{

padding-top:140px;

}

.hero p{

font-size:17px;

}

.hero-buttons{

flex-direction:column;

}

.btn-premium,

.btn-outline-premium{

width:100%;

}

.contact-form{

padding:30px;

}

.section-padding{

padding:80px 0;

}

.top-bar{

display:none;

}

}

/*==========================================================
                MÓVILES PEQUEÑOS
==========================================================*/

@media(max-width:576px){

.hero-image img{

max-width:95%;

}

.stat-card{

padding:30px 20px;

}

.service-card,

.blog-card,

.case-card,

.lawyer-card{

padding:25px;

}

.testimonial-card{

padding:35px 25px;

}

.contact-form{

padding:25px;

}

.footer{

padding-top:70px;

}

}

/*==========================================================
            REDUCIR ANIMACIONES
==========================================================*/

@media(prefers-reduced-motion:reduce){

*{

animation:none !important;

transition:none !important;

scroll-behavior:auto;

}

}

/*==========================================================
                    ANIMACIONES
==========================================================*/

@keyframes fadeIn{

    from{

        opacity:0;

    }

    to{

        opacity:1;

    }

}

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(60px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

@keyframes fadeDown{

    from{

        opacity:0;

        transform:translateY(-60px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

@keyframes fadeLeft{

    from{

        opacity:0;

        transform:translateX(-60px);

    }

    to{

        opacity:1;

        transform:translateX(0);

    }

}

@keyframes fadeRight{

    from{

        opacity:0;

        transform:translateX(60px);

    }

    to{

        opacity:1;

        transform:translateX(0);

    }

}

@keyframes zoomIn{

    from{

        opacity:0;

        transform:scale(.85);

    }

    to{

        opacity:1;

        transform:scale(1);

    }

}

@keyframes rotateFade{

    from{

        opacity:0;

        transform:rotate(-10deg) scale(.9);

    }

    to{

        opacity:1;

        transform:rotate(0) scale(1);

    }

}

/*==========================================================
                CLASES DE ANIMACIÓN
==========================================================*/

.fade-in{

    animation:fadeIn .8s ease forwards;

}

.fade-up{

    animation:fadeUp .8s ease forwards;

}

.fade-left{

    animation:fadeLeft .8s ease forwards;

}

.fade-right{

    animation:fadeRight .8s ease forwards;

}

.zoom-in{

    animation:zoomIn .8s ease forwards;

}

.rotate-fade{

    animation:rotateFade .8s ease forwards;

}

/*==========================================================
                DELAY UTILITIES
==========================================================*/

.delay-1{

animation-delay:.1s;

}

.delay-2{

animation-delay:.2s;

}

.delay-3{

animation-delay:.3s;

}

.delay-4{

animation-delay:.4s;

}

.delay-5{

animation-delay:.5s;

}

.delay-6{

animation-delay:.6s;

}

/*==========================================================
                ESPACIADOS
==========================================================*/

.mt-section{

margin-top:120px;

}

.mb-section{

margin-bottom:120px;

}

.py-section{

padding:120px 0;

}

/*==========================================================
                BACKGROUNDS
==========================================================*/

.bg-primary-dark{

background:var(--primary);

}

.bg-secondary-dark{

background:var(--secondary);

}

.bg-gradient{

background:

linear-gradient(

135deg,

#071626,

#173B61

);

}

/*==========================================================
                    TEXTO
==========================================================*/

.text-gold{

color:var(--gold);

}

.text-white{

color:white;

}

.text-gray{

color:var(--gray);

}

/*==========================================================
                BORDES
==========================================================*/

.border-gold{

border:1px solid rgba(198,163,92,.35);

}

.rounded-xl{

border-radius:24px;

}

.rounded-xxl{

border-radius:40px;

}

/*==========================================================
                UTILIDADES FLEX
==========================================================*/

.flex-center{

display:flex;

justify-content:center;

align-items:center;

}

.flex-between{

display:flex;

justify-content:space-between;

align-items:center;

}

/*==========================================================
                LOADING
==========================================================*/

.loading{

pointer-events:none;

opacity:.6;

}

.loading::after{

content:"";

width:18px;

height:18px;

margin-left:10px;

border-radius:50%;

border:2px solid white;

border-top-color:transparent;

display:inline-block;

animation:spin .8s linear infinite;

}

@keyframes spin{

to{

transform:rotate(360deg);

}

}

/*==========================================================
                FORMULARIO
==========================================================*/

.is-valid{

border-color:#36C76A !important;

}

.is-invalid{

border-color:#FF5E5E !important;

}

.invalid-feedback{

color:#FFB1B1;

font-size:.9rem;

margin-top:8px;

}

/*==========================================================
                IMPRESIÓN
==========================================================*/

@media print{

body{

background:white;

color:black;

}

.navbar,

.top-bar,

.footer,

.whatsapp-button,

.scroll-top,

#preloader{

display:none !important;

}

.hero{

min-height:auto;

padding:40px 0;

}

}

/*==========================================================
                PANTALLAS 4K
==========================================================*/

@media(min-width:2200px){

.container{

max-width:1800px;

}

body{

font-size:20px;

}

h1{

font-size:96px;

}

h2{

font-size:72px;

}

.section-padding{

padding:180px 0;

}

.hero-image img{

max-width:700px;

}

}

/*==========================================================
                OPTIMIZACIÓN
==========================================================*/

.hero-image img,

.service-card,

.blog-card,

.case-card,

.lawyer-card,

.btn-premium{

will-change:transform;

}

/*======================================================
                        FAQ
======================================================*/

.faq{

padding:120px 0;

background:#071626;

}

.faq-item{

background:#0E243A;

border:1px solid rgba(198,163,92,.18);

border-radius:18px;

margin-bottom:20px;

overflow:hidden;

transition:.35s;

}

.faq-item:hover{

border-color:#C6A35C;

}

.faq-question{

width:100%;

padding:22px 30px;

display:flex;

justify-content:space-between;

align-items:center;

background:transparent;

border:none;

color:#FFF;

font-size:20px;

font-weight:600;

cursor:pointer;

text-align:left;

}

.faq-question i{

font-size:22px;

color:#C6A35C;

transition:.35s;

}

.faq-answer{

max-height:0;

overflow:hidden;

transition:all .4s ease;

}

.faq-answer p{

padding:0 30px 25px;

margin:0;

color:#d9d9d9;

line-height:1.9;

}

.faq-item.active .faq-answer{

max-height:250px;

}

.faq-item.active .faq-question i{

transform:rotate(45deg);

}

/*=====================================
        TEAM GROUP CARD
=====================================*/

.team-group{

    text-align:center;

    height:100%;

}

.team-group-icon{

    width:95px;

    height:95px;

    margin:35px auto 25px;

    border-radius:50%;

    background:linear-gradient(135deg,#10253B,#173B61);

    border:2px solid rgba(198,163,92,.30);

    display:flex;

    justify-content:center;

    align-items:center;

}

.team-group-icon i{

    font-size:42px;

    color:#C6A35C;

}

.team-members{

    margin-top:30px;

}

.member-item{

    padding:16px 0;

    border-top:1px solid rgba(255,255,255,.08);

}

.member-item:first-child{

    border-top:none;

}

.member-item h6{

    color:#FFF;

    margin-bottom:4px;

    font-weight:600;

}

.member-item small{

    color:#C6A35C;

    letter-spacing:.5px;

    font-size:.85rem;

}

.team-group:hover .team-group-icon{

    transform:scale(1.08);

    transition:.4s;

}

/*==========================================================
                FIN DEL ARCHIVO
==========================================================*/