/*=====================================================
    SINERGIA CONSTRUCCIÓN
    STYLE.CSS
=====================================================*/


/*=====================================================
    GOOGLE FONTS
=====================================================*/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap');


/*=====================================================
    VARIABLES
=====================================================*/

:root{

    --primary:#7cb9f1;
    --secondary:#064792;
    --accent:#F4B400;
    --accent-dark:#E19D00;

    --white:#ffffff;
    --light:#f5f7fa;
    --gray:#25292c;
    --dark:#222222;

    --shadow:0 10px 30px rgba(0,0,0,.12);

    --radius:12px;

    --transition:.35s ease;

}



/*=====================================================
    RESET
=====================================================*/

*{

margin:0;
padding:0;
box-sizing:border-box;

}

html{

scroll-behavior:smooth;

}

body{

font-family:'Montserrat',sans-serif;

font-size:16px;

color:var(--dark);

background:var(--white);

line-height:1.7;

overflow-x:hidden;

}



/*=====================================================
TYPOGRAPHY
=====================================================*/

h1,
h2,
h3,
h4,
h5,
h6{

font-weight:700;

color:var(--primary);

}

h1{

font-size:64px;

}

h2{

font-size:42px;

margin-bottom:20px;

}

h3{

font-size:32px;

}

p{

margin-bottom:18px;

color:#555;

}

a{

text-decoration:none;

transition:var(--transition);

}

img{

max-width:100%;

display:block;

}



/*=====================================================
SECTION
=====================================================*/

section{

padding:100px 0;

position:relative;

}



/*=====================================================
CONTAINER
=====================================================*/

.container{

max-width:1200px;

}



/*=====================================================
BUTTONS
=====================================================*/

.btn{

padding:14px 34px;

border-radius:50px;

font-weight:600;

transition:var(--transition);

letter-spacing:.5px;

}

.btn-warning{

background:var(--accent);

border:none;

color:#fff;

}

.btn-warning:hover{

background:var(--accent-dark);

transform:translateY(-3px);

box-shadow:0 10px 25px rgba(244,180,0,.35);

}

.btn-outline-light{

border:2px solid white;

color:white;

}

.btn-outline-light:hover{

background:white;

color:var(--primary);

}



/*=====================================================
NAVBAR
=====================================================*/

.navbar{

padding:20px 0;

transition:.4s;

background:transparent;

z-index:999;

}

.navbar-brand{

font-size:28px;

font-weight:800;

color:white;

}

.navbar-brand img{

height:55px;

}

.navbar-nav .nav-link{

color:white;

font-weight:500;

margin-left:18px;

position:relative;

}

.navbar-nav .nav-link::after{

content:'';

position:absolute;

left:0;

bottom:-6px;

width:0;

height:2px;

background:var(--accent);

transition:.35s;

}

.navbar-nav .nav-link:hover::after{

width:100%;

}

.navbar-nav .nav-link:hover{

color:var(--accent);

}



/*=====================================================
NAVBAR SCROLL
=====================================================*/

.navbar.scrolled{

background:var(--primary);

padding:12px 0;

box-shadow:0 5px 20px rgba(0,0,0,.18);

}



/*=====================================================
SOCIAL ICONS
=====================================================*/

.social-icons{

display:flex;

gap:15px;

}

.social-icons a{

width:42px;

height:42px;

display:flex;

align-items:center;

justify-content:center;

border-radius:50%;

background:rgba(255,255,255,.15);

color:white;

transition:.3s;

}

.social-icons a:hover{

background:var(--accent);

transform:translateY(-4px);

}



/*=====================================================
GENERAL TITLES
=====================================================*/

.section-title{

text-align:center;

margin-bottom:60px;

}

.section-title span{

color:var(--accent);

font-weight:700;

letter-spacing:2px;

text-transform:uppercase;

}

.section-title h2{

margin-top:15px;

}

.section-title p{

max-width:700px;

margin:auto;

}



/*=====================================================
CARDS
=====================================================*/

.card{

border:none;

border-radius:var(--radius);

overflow:hidden;

box-shadow:var(--shadow);

transition:.35s;

}

.card:hover{

transform:translateY(-10px);

}



/*=====================================================
IMAGE RADIUS
=====================================================*/

.rounded-image{

border-radius:var(--radius);

overflow:hidden;

}



/*=====================================================
UTILITY CLASSES
=====================================================*/

.bg-primary{

background:var(--primary)!important;

}

.bg-light{

background:var(--light)!important;

}

.text-primary{

color:var(--primary)!important;

}

.text-accent{

color:var(--accent);

}

.shadow-custom{

box-shadow:var(--shadow);

}

.radius{

border-radius:var(--radius);

}

.mt-80{

margin-top:80px;

}

.mb-80{

margin-bottom:80px;

}



/*=====================================================
LOADER
=====================================================*/

#loader{

position:fixed;

top:0;

left:0;

width:100%;

height:100%;

background:white;

display:flex;

justify-content:center;

align-items:center;

z-index:99999;

}

.loader-circle{

width:70px;

height:70px;

border-radius:50%;

border:6px solid #ddd;

border-top-color:var(--accent);

animation:spin 1s linear infinite;

}

@keyframes spin{

100%{

transform:rotate(360deg);

}

}

/*=====================================================
    HERO
=====================================================*/

.hero{

    position:relative;

    width:100%;

    height:100vh;

    min-height:750px;

    background:url("../assets/img/hero/hero-bg.jpg") center center/cover no-repeat fixed;

    display:flex;

    align-items:center;

    overflow:hidden;

}

/*=====================================================
    OVERLAY
=====================================================*/

.hero::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        rgba(183, 214, 255, 0.82),
        rgba(12,42,74,.72)
    );

    z-index:1;

}

/*=====================================================
    DECORATIVE SHAPE
=====================================================*/

.hero::after{

    content:"";

    position:absolute;

    bottom:-120px;

    left:0;

    width:100%;

    height:220px;

    background:white;

    clip-path:polygon(0 45%,100% 0,100% 100%,0 100%);

    z-index:2;

}

/*=====================================================
    HERO CONTENT
=====================================================*/

.hero .container{

    position:relative;

    z-index:10;

}

.hero h5{

    color:var(--accent);

    letter-spacing:4px;

    text-transform:uppercase;

    font-weight:600;

    margin-bottom:25px;

}

.hero h1{

    color:white;

    font-size:72px;

    line-height:1.1;

    font-weight:800;

    margin-bottom:30px;

    max-width:750px;

}

.hero p{

    color:rgba(255,255,255,.92);

    font-size:20px;

    max-width:650px;

    margin-bottom:40px;

}

/*=====================================================
    HERO BUTTONS
=====================================================*/

.hero .btn{

    min-width:220px;

    margin-right:15px;

    margin-bottom:15px;

}

.hero .btn-warning{

    font-size:18px;

}

.hero .btn-outline-light{

    font-size:18px;

}

/*=====================================================
    HERO IMAGE
=====================================================*/

.hero-image{

    position:relative;

    z-index:5;

}

.hero-image img{

    width:100%;

    animation:floatImage 5s ease-in-out infinite;

}

/*=====================================================
    FLOAT EFFECT
=====================================================*/

@keyframes floatImage{

0%{

transform:translateY(0px);

}

50%{

transform:translateY(-18px);

}

100%{

transform:translateY(0px);

}

}

/*=====================================================
    SCROLL INDICATOR
=====================================================*/

.scroll-down{

    position:absolute;

    bottom:35px;

    left:50%;

    transform:translateX(-50%);

    z-index:20;

}

.scroll-down span{

    display:block;

    width:30px;

    height:50px;

    border:2px solid white;

    border-radius:30px;

    position:relative;

}

.scroll-down span::before{

    content:"";

    position:absolute;

    left:50%;

    top:10px;

    width:6px;

    height:6px;

    border-radius:50%;

    background:white;

    transform:translateX(-50%);

    animation:scrollMove 2s infinite;

}

@keyframes scrollMove{

0%{

opacity:0;

top:8px;

}

40%{

opacity:1;

}

100%{

opacity:0;

top:28px;

}

}

/*=====================================================
    HERO HIGHLIGHT
=====================================================*/

.hero-highlight{

    color:var(--accent);

}

/*=====================================================
    HERO ICONS
=====================================================*/

.hero-features{

    display:flex;

    flex-wrap:wrap;

    gap:30px;

    margin-top:45px;

}

.hero-features div{

    display:flex;

    align-items:center;

    color:white;

}

.hero-features i{

    width:55px;

    height:55px;

    border-radius:50%;

    background:rgba(255,255,255,.12);

    display:flex;

    align-items:center;

    justify-content:center;

    margin-right:15px;

    color:var(--accent);

    font-size:22px;

}

/*=====================================================
    GLASS CARD
=====================================================*/

.glass-card{

    backdrop-filter:blur(15px);

    background:rgba(255,255,255,.08);

    border:1px solid rgba(255,255,255,.15);

    border-radius:18px;

    padding:25px;

    color:white;

}

/*=====================================================
    HERO STATS
=====================================================*/

.hero-stats{

    display:flex;

    gap:45px;

    margin-top:60px;

}

.hero-stats h2{

    color:white;

    margin:0;

    font-size:42px;

}

.hero-stats p{

    color:#ddd;

    margin:0;

    font-size:15px;

}

/*=====================================================
    BACKGROUND SHAPES
=====================================================*/

.hero-circle{

    position:absolute;

    border-radius:50%;

    background:rgba(255,255,255,.04);

    animation:rotateCircle 18s linear infinite;

}

.circle-1{

    width:350px;

    height:350px;

    top:-120px;

    right:-120px;

}

.circle-2{

    width:220px;

    height:220px;

    bottom:100px;

    left:-80px;

}

@keyframes rotateCircle{

100%{

transform:rotate(360deg);

}

}

/*=====================================================
    HERO WAVE
=====================================================*/

.hero-wave{

    position:absolute;

    bottom:0;

    left:0;

    width:100%;

    z-index:5;

}

/*=====================================================
    PARALLAX EFFECT
=====================================================*/

.parallax{

    background-attachment:fixed;

}

/*=====================================================
    HERO SOCIAL
=====================================================*/

.hero-social{

    position:absolute;

    right:40px;

    top:50%;

    transform:translateY(-50%);

    z-index:20;

}

.hero-social a{

    display:flex;

    align-items:center;

    justify-content:center;

    width:45px;

    height:45px;

    margin:12px 0;

    border-radius:50%;

    background:rgba(255,255,255,.12);

    color:white;

    transition:.3s;

}

.hero-social a:hover{

    background:var(--accent);

    transform:translateX(-8px);

}

/*=====================================================
    HERO ANIMATION
=====================================================*/

.fade-up{

    opacity:0;

    transform:translateY(40px);

    animation:fadeUp 1s forwards;

}

@keyframes fadeUp{

100%{

opacity:1;

transform:translateY(0);

}

}

/*=====================================================
    HERO IMAGE SHADOW
=====================================================*/

.hero-image img{

    filter:drop-shadow(0 25px 40px rgba(0,0,0,.35));

}

/*=====================================================
    HERO TEXT SHADOW
=====================================================*/

.hero h1{

    text-shadow:0 8px 18px rgba(0,0,0,.30);

}

.hero p{

    text-shadow:0 3px 10px rgba(0,0,0,.25);

}

/*=====================================================
    HERO SCROLL SPACE
=====================================================*/

.hero-space{

    height:120px;

}
/*=====================================================
    ABOUT - NOSOTROS
=====================================================*/

#nosotros{
    background:#fff;
    position:relative;
    overflow:hidden;
}

#nosotros::before{
    content:"";
    position:absolute;
    top:-180px;
    right:-180px;
    width:450px;
    height:450px;
    border-radius:50%;
    background:rgba(15,45,82,.04);
}

#nosotros img{
    width:100%;
    border-radius:18px;
    box-shadow:0 20px 45px rgba(0,0,0,.18);
    transition:.5s;
}

#nosotros img:hover{
    transform:scale(1.03);
}

#nosotros h2{
    margin-bottom:25px;
}

#nosotros h4{
    color:var(--accent);
    margin-top:30px;
    margin-bottom:15px;
}

#nosotros p{
    color:#666;
    text-align:justify;
}

#nosotros ul{
    list-style:none;
    padding:0;
    margin-top:20px;
}

#nosotros li{
    padding:10px 0;
    font-weight:500;
}

#nosotros li::before{
    content:"✓";
    color:var(--accent);
    margin-right:12px;
    font-weight:bold;
}

/*=====================================================
    ABOUT EXPERIENCE CARD
=====================================================*/

.experience-card{

    background:var(--primary);

    color:#fff;

    border-radius:16px;

    padding:35px;

    margin-top:35px;

    box-shadow:var(--shadow);

}

.experience-card h2{

    color:white;

    font-size:54px;

    margin-bottom:5px;

}

.experience-card p{

    color:#ddd;

    margin:0;

}

/*=====================================================
    SERVICES
=====================================================*/

#servicios{

    background:var(--light);

}

.service-card{

    background:#fff;

    border-radius:18px;

    overflow:hidden;

    padding:35px;

    text-align:center;

    transition:.4s;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    height:100%;

    position:relative;

}

.service-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:5px;

    background:var(--accent);

    transform:scaleX(0);

    transition:.35s;

}

.service-card:hover::before{

    transform:scaleX(1);

}

.service-card:hover{

    transform:translateY(-15px);

    box-shadow:0 20px 45px rgba(0,0,0,.15);

}

.service-card i{

    font-size:55px;

    color:var(--accent);

    margin-bottom:25px;

    transition:.4s;

}

.service-card:hover i{

    transform:rotateY(180deg);

}

.service-card h4{

    margin-bottom:18px;

    color:var(--primary);

}

.service-card p{

    font-size:15px;

    color:#666;

}

/*=====================================================
    SERVICE BUTTON
=====================================================*/

.service-card .btn{

    margin-top:20px;

    border-radius:30px;

}

/*=====================================================
    SERVICE IMAGE
=====================================================*/

.service-image{

    overflow:hidden;

}

.service-image img{

    transition:.5s;

}

.service-card:hover .service-image img{

    transform:scale(1.08);

}

/*=====================================================
    ICON CIRCLE
=====================================================*/

.icon-circle{

    width:95px;

    height:95px;

    margin:auto;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:rgba(244,180,0,.10);

    margin-bottom:25px;

}

/*=====================================================
    SERVICE GRID GAP
=====================================================*/

#servicios .row{

    row-gap:35px;

}

/*=====================================================
    SOLUCIONES
=====================================================*/

#soluciones{

    background:white;

    position:relative;

}

#soluciones .col-md-2{

    position:relative;

    transition:.35s;

}

#soluciones .col-md-2:hover{

    transform:translateY(-10px);

}

#soluciones i{

    width:90px;

    height:90px;

    display:flex;

    justify-content:center;

    align-items:center;

    margin:auto;

    border-radius:50%;

    background:rgba(244,180,0,.12);

    transition:.35s;

}

#soluciones .col-md-2:hover i{

    background:var(--accent);

    color:white !important;

}

#soluciones h5{

    margin-top:20px;

    font-size:18px;

}

/*=====================================================
    PROCESS LINE
=====================================================*/

.process-line{

    position:absolute;

    top:45px;

    left:8%;

    width:84%;

    height:4px;

    background:#e4e4e4;

    z-index:-1;

}

/*=====================================================
    STEP NUMBER
=====================================================*/

.step-number{

    width:36px;

    height:36px;

    border-radius:50%;

    background:var(--primary);

    color:white;

    display:flex;

    justify-content:center;

    align-items:center;

    margin:20px auto 0;

    font-weight:700;

}

/*=====================================================
    FEATURE BOX
=====================================================*/

.feature-box{

    background:white;

    border-radius:18px;

    padding:35px;

    box-shadow:var(--shadow);

    transition:.35s;

}

.feature-box:hover{

    transform:translateY(-8px);

}

.feature-box h4{

    margin-top:20px;

}

.feature-box i{

    color:var(--accent);

    font-size:45px;

}

/*=====================================================
    DIVIDER
=====================================================*/

.section-divider{

    width:90px;

    height:4px;

    background:var(--accent);

    margin:20px auto 35px;

}

/*=====================================================
    LIST CHECK
=====================================================*/

.list-check{

    list-style:none;

    padding:0;

}

.list-check li{

    padding:12px 0;

}

.list-check i{

    color:var(--accent);

    margin-right:10px;

}

/*=====================================================
    HOVER GLOW
=====================================================*/

.glow:hover{

    box-shadow:0 0 35px rgba(244,180,0,.35);

}

/*=====================================================
    IMAGE FRAME
=====================================================*/

.image-frame{

    padding:12px;

    background:white;

    border-radius:18px;

    box-shadow:var(--shadow);

}

.image-frame img{

    border-radius:12px;

}

/*=====================================================
    BACKGROUND PATTERN
=====================================================*/

.pattern{

    position:absolute;

    inset:0;

    background-image:
        radial-gradient(rgba(15,45,82,.03) 1px, transparent 1px);

    background-size:24px 24px;

    pointer-events:none;

}
/*=====================================================
    PROYECTOS
=====================================================*/

#proyectos{
    background:var(--light);
    position:relative;
    overflow:hidden;
}

#proyectos::before{
    content:"";
    position:absolute;
    top:-250px;
    left:-250px;
    width:500px;
    height:500px;
    border-radius:50%;
    background:rgba(15,45,82,.04);
}

/*=====================================================
    FILTER BUTTONS
=====================================================*/

.project-filter{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:15px;
    margin-bottom:60px;
}

.project-filter button{

    padding:12px 28px;

    border:none;

    border-radius:40px;

    background:white;

    color:var(--primary);

    font-weight:600;

    cursor:pointer;

    transition:.35s;

    box-shadow:0 5px 18px rgba(0,0,0,.08);

}

.project-filter button:hover,
.project-filter button.active{

    background:var(--accent);

    color:white;

}

/*=====================================================
    PROJECT CARD
=====================================================*/

.project-card{

    position:relative;

    overflow:hidden;

    border-radius:18px;

    box-shadow:var(--shadow);

    cursor:pointer;

    background:white;

}

.project-card img{

    width:100%;

    height:320px;

    object-fit:cover;

    transition:.6s;

}

.project-card:hover img{

    transform:scale(1.15);

}

/*=====================================================
    PROJECT OVERLAY
=====================================================*/

.project-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(
        rgba(0,0,0,.10),
        rgba(15,45,82,.90)
    );

    display:flex;

    flex-direction:column;

    justify-content:flex-end;

    padding:35px;

    opacity:0;

    transition:.4s;

}

.project-card:hover .project-overlay{

    opacity:1;

}

.project-overlay h4{

    color:white;

    margin-bottom:10px;

}

.project-overlay p{

    color:#ddd;

    margin-bottom:20px;

}

.project-overlay a{

    color:white;

    font-weight:600;

}

.project-overlay a:hover{

    color:var(--accent);

}

/*=====================================================
    PROJECT ICON
=====================================================*/

.project-icon{

    position:absolute;

    top:25px;

    right:25px;

    width:55px;

    height:55px;

    border-radius:50%;

    background:var(--accent);

    display:flex;

    justify-content:center;

    align-items:center;

    color:white;

    font-size:22px;

    transform:scale(0);

    transition:.35s;

}

.project-card:hover .project-icon{

    transform:scale(1);

}

/*=====================================================
    GALLERY GAP
=====================================================*/

.project-grid{

    row-gap:30px;

}

/*=====================================================
    SWIPER
=====================================================*/

.swiper{

    padding-bottom:60px;

}

.swiper-pagination-bullet{

    background:var(--primary);

    opacity:.3;

}

.swiper-pagination-bullet-active{

    background:var(--accent);

    opacity:1;

}

/*=====================================================
    ESTADÍSTICAS
=====================================================*/

.stats{

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );

    color:white;

    position:relative;

    overflow:hidden;

}

.stats::before{

    content:"";

    position:absolute;

    width:600px;

    height:600px;

    border-radius:50%;

    background:rgba(255,255,255,.05);

    top:-300px;

    right:-250px;

}

/*=====================================================
    COUNTER
=====================================================*/

.counter-box{

    text-align:center;

    padding:35px;

}

.counter-box i{

    font-size:55px;

    color:var(--accent);

    margin-bottom:25px;

}

.counter{

    font-size:58px;

    font-weight:800;

    color:white;

    margin-bottom:10px;

}

.counter-title{

    color:#ddd;

    letter-spacing:1px;

    text-transform:uppercase;

    font-size:15px;

}

/*=====================================================
    CTA
=====================================================*/

.cta{

    position:relative;

    background:url("../assets/img/hero/cta.jpg") center/cover;

    padding:120px 0;

    overflow:hidden;

}

.cta::before{

    content:"";

    position:absolute;

    inset:0;

    background:rgba(15,45,82,.88);

}

.cta .container{

    position:relative;

    z-index:10;

    text-align:center;

}

.cta h2{

    color:white;

    font-size:52px;

    margin-bottom:20px;

}

.cta p{

    color:#ddd;

    max-width:700px;

    margin:0 auto 40px;

    font-size:20px;

}

.cta .btn{

    font-size:18px;

    padding:18px 42px;

}

/*=====================================================
    CTA SHAPES
=====================================================*/

.cta-circle{

    position:absolute;

    border-radius:50%;

    background:rgba(255,255,255,.05);

}

.cta-circle.one{

    width:220px;

    height:220px;

    left:-60px;

    bottom:-60px;

}

.cta-circle.two{

    width:180px;

    height:180px;

    top:-50px;

    right:-50px;

}

/*=====================================================
    CTA BUTTON EFFECT
=====================================================*/

.cta .btn-warning{

    box-shadow:0 15px 35px rgba(244,180,0,.35);

}

.cta .btn-warning:hover{

    transform:translateY(-6px);

}

/*=====================================================
    PARALLAX SECTION
=====================================================*/

.parallax-section{

    background-attachment:fixed;

    background-position:center;

    background-size:cover;

}

/*=====================================================
    SECTION DECORATION
=====================================================*/

.decor-line{

    width:80px;

    height:5px;

    background:var(--accent);

    margin:20px auto;

    border-radius:20px;

}
/*=====================================================
    CONTACTO
=====================================================*/

#contacto{
    background:#f8fafc;
    position:relative;
    overflow:hidden;
}

#contacto::before{
    content:"";
    position:absolute;
    top:-200px;
    right:-200px;
    width:500px;
    height:500px;
    border-radius:50%;
    background:rgba(15,45,82,.03);
}

/*=====================================================
    FORMULARIO
=====================================================*/

.contact-form{

    background:#fff;

    padding:45px;

    border-radius:18px;

    box-shadow:var(--shadow);

}

.contact-form h3{

    margin-bottom:30px;

}

.contact-form .form-control{

    border:1px solid #dcdcdc;

    border-radius:12px;

    padding:16px 18px;

    margin-bottom:20px;

    font-size:15px;

    transition:.3s;

    box-shadow:none;

}

.contact-form textarea{

    resize:none;

    min-height:180px;

}

.contact-form .form-control:focus{

    border-color:var(--accent);

    box-shadow:0 0 0 4px rgba(244,180,0,.15);

}

.contact-form button{

    width:100%;

    padding:16px;

    border:none;

    border-radius:50px;

    background:var(--accent);

    color:#fff;

    font-weight:600;

    transition:.3s;

}

.contact-form button:hover{

    background:var(--accent-dark);

    transform:translateY(-3px);

}

/*=====================================================
    INFO CARD
=====================================================*/

.contact-info{

    background:var(--primary);

    color:#fff;

    border-radius:18px;

    padding:45px;

    height:100%;

}

.contact-info h3{

    color:white;

    margin-bottom:30px;

}

.contact-item{

    display:flex;

    align-items:flex-start;

    margin-bottom:30px;

}

.contact-item i{

    width:60px;

    height:60px;

    border-radius:50%;

    background:rgba(255,255,255,.12);

    display:flex;

    justify-content:center;

    align-items:center;

    color:var(--accent);

    margin-right:20px;

    font-size:22px;

}

.contact-item h5{

    color:white;

    margin-bottom:5px;

}

.contact-item p{

    color:#ddd;

    margin:0;

}

/*=====================================================
    GOOGLE MAPS
=====================================================*/

.map-container{

    overflow:hidden;

    border-radius:18px;

    margin-top:40px;

    box-shadow:var(--shadow);

}

.map-container iframe{

    width:100%;

    height:350px;

    border:none;

}

/*=====================================================
    FOOTER
=====================================================*/

footer{

    background:#081b33;

    color:#ddd;

    padding:80px 0 25px;

}

.footer-logo{

    margin-bottom:25px;

}

.footer-logo img{

    max-width:180px;

}

footer h5{

    color:white;

    margin-bottom:25px;

}

footer p{

    color:#bfc7d1;

}

footer ul{

    list-style:none;

    padding:0;

}

footer ul li{

    margin-bottom:12px;

}

footer ul li a{

    color:#bfc7d1;

    transition:.3s;

}

footer ul li a:hover{

    color:var(--accent);

    padding-left:8px;

}

/*=====================================================
    FOOTER SOCIAL
=====================================================*/

.footer-social{

    display:flex;

    gap:15px;

    margin-top:25px;

}

.footer-social a{

    width:46px;

    height:46px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    color:white;

    transition:.35s;

}

.footer-social a:hover{

    background:var(--accent);

    transform:translateY(-5px);

}

/*=====================================================
    COPYRIGHT
=====================================================*/

.footer-bottom{

    margin-top:60px;

    padding-top:25px;

    border-top:1px solid rgba(255,255,255,.08);

    text-align:center;

    color:#9da7b4;

    font-size:14px;

}

/*=====================================================
    WHATSAPP FLOAT
=====================================================*/

.whatsapp-float{

    position:fixed;

    right:25px;

    bottom:25px;

    width:65px;

    height:65px;

    border-radius:50%;

    background:#25D366;

    color:white;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:34px;

    box-shadow:0 12px 30px rgba(37,211,102,.35);

    z-index:999;

    transition:.35s;

}

.whatsapp-float:hover{

    transform:scale(1.12);

    color:white;

}

/*=====================================================
    PULSE ANIMATION
=====================================================*/

.whatsapp-float::before{

    content:"";

    position:absolute;

    inset:-10px;

    border-radius:50%;

    border:2px solid rgba(37,211,102,.35);

    animation:whatsappPulse 2s infinite;

}

@keyframes whatsappPulse{

    0%{

        transform:scale(.8);

        opacity:1;

    }

    100%{

        transform:scale(1.5);

        opacity:0;

    }

}

/*=====================================================
    BACK TO TOP
=====================================================*/

.back-to-top{

    position:fixed;

    right:25px;

    bottom:105px;

    width:55px;

    height:55px;

    border-radius:50%;

    background:var(--primary);

    color:white;

    display:flex;

    justify-content:center;

    align-items:center;

    cursor:pointer;

    opacity:0;

    visibility:hidden;

    transition:.35s;

    z-index:998;

}

.back-to-top.show{

    opacity:1;

    visibility:visible;

}

.back-to-top:hover{

    background:var(--accent);

    transform:translateY(-5px);

}

/*=====================================================
    NEWSLETTER
=====================================================*/

.newsletter{

    margin-top:30px;

}

.newsletter input{

    width:100%;

    padding:15px 18px;

    border:none;

    border-radius:50px;

    margin-bottom:15px;

}

.newsletter button{

    width:100%;

    border:none;

    border-radius:50px;

    padding:15px;

    background:var(--accent);

    color:white;

    font-weight:600;

}

.newsletter button:hover{

    background:var(--accent-dark);

}

/*=====================================================
    FOOTER DIVIDER
=====================================================*/

.footer-divider{

    width:70px;

    height:4px;

    background:var(--accent);

    margin:15px 0 25px;

}
/*=====================================================
    RESPONSIVE - DESKTOP
=====================================================*/

@media (max-width:1400px){

.hero h1{
    font-size:60px;
}

.hero{
    min-height:700px;
}

.container{
    max-width:1140px;
}

}

/*=====================================================
    LAPTOP
=====================================================*/

@media (max-width:1200px){

section{
    padding:90px 0;
}

.hero h1{
    font-size:56px;
}

.hero p{
    font-size:18px;
}

.counter{
    font-size:48px;
}

.cta h2{
    font-size:44px;
}

}

/*=====================================================
    TABLET
=====================================================*/

@media (max-width:992px){

.navbar{
    background:var(--primary);
    padding:15px 0;
}

.navbar-collapse{
    background:var(--primary);
    padding:20px;
    margin-top:15px;
    border-radius:12px;
}

.hero{
    text-align:center;
    background-attachment:scroll;
}

.hero h1{
    font-size:48px;
}

.hero p{
    margin:auto;
    margin-bottom:30px;
}

.hero-features{
    justify-content:center;
}

.hero-stats{
    justify-content:center;
}

.hero-social{
    display:none;
}

#nosotros img{
    margin-bottom:40px;
}

.contact-info{
    margin-top:35px;
}

footer{
    text-align:center;
}

.footer-social{
    justify-content:center;
}

}

/*=====================================================
    MOBILE
=====================================================*/

@media (max-width:768px){

section{
    padding:70px 0;
}

.hero{
    min-height:100vh;
}

.hero h1{
    font-size:38px;
}

.hero h5{
    font-size:15px;
}

.hero p{
    font-size:17px;
}

.hero .btn{
    width:100%;
    margin-bottom:15px;
}

.hero-stats{
    flex-direction:column;
    gap:25px;
}

.project-card img{
    height:240px;
}

.counter{
    font-size:42px;
}

.counter-box{
    margin-bottom:30px;
}

.contact-form,
.contact-info{
    padding:30px;
}

.cta{
    padding:90px 0;
}

.cta h2{
    font-size:34px;
}

.cta p{
    font-size:17px;
}

.footer-logo img{
    margin:auto;
}

}

/*=====================================================
    SMALL DEVICES
=====================================================*/

@media (max-width:576px){

body{
    font-size:15px;
}

.hero h1{
    font-size:32px;
}

h2{
    font-size:30px;
}

h3{
    font-size:24px;
}

.btn{
    padding:13px 26px;
}

.service-card{
    padding:28px;
}

.contact-form{
    padding:25px;
}

.contact-info{
    padding:25px;
}

.whatsapp-float{

    width:58px;
    height:58px;
    font-size:28px;
    right:18px;
    bottom:18px;

}

.back-to-top{

    width:48px;
    height:48px;
    bottom:88px;
    right:18px;

}

}

/*=====================================================
    FADE ANIMATION
=====================================================*/

.fade-in{

    opacity:0;

    animation:fadeIn .8s forwards;

}

@keyframes fadeIn{

from{

opacity:0;

transform:translateY(25px);

}

to{

opacity:1;

transform:translateY(0);

}

}

/*=====================================================
    ZOOM
=====================================================*/

.zoom{

    transition:.35s;

}

.zoom:hover{

    transform:scale(1.05);

}

/*=====================================================
    IMAGE HOVER
=====================================================*/

.img-hover{

    overflow:hidden;

}

.img-hover img{

    transition:.6s;

}

.img-hover:hover img{

    transform:scale(1.1);

}

/*=====================================================
    SHADOW HOVER
=====================================================*/

.shadow-hover{

    transition:.35s;

}

.shadow-hover:hover{

    box-shadow:0 20px 45px rgba(0,0,0,.18);

}

/*=====================================================
    SPACING UTILITIES
=====================================================*/

.pt-120{padding-top:120px;}
.pb-120{padding-bottom:120px;}
.mt-100{margin-top:100px;}
.mb-100{margin-bottom:100px;}

/*=====================================================
    FLEX UTILITIES
=====================================================*/

.flex-center{

display:flex;

justify-content:center;

align-items:center;

}

.flex-between{

display:flex;

justify-content:space-between;

align-items:center;

}

/*=====================================================
    GRID UTILITIES
=====================================================*/

.grid-2{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:30px;

}

.grid-3{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

}

.grid-4{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:30px;

}

/*=====================================================
    TRANSITIONS
=====================================================*/

.transition{

transition:all .35s ease;

}

/*=====================================================
    BORDER RADIUS
=====================================================*/

.radius-sm{

border-radius:8px;

}

.radius-lg{

border-radius:20px;

}

/*=====================================================
    BACKGROUND HELPERS
=====================================================*/

.bg-cover{

background-size:cover;

background-position:center;

background-repeat:no-repeat;

}

.bg-fixed{

background-attachment:fixed;

}

/*=====================================================
    TEXT HELPERS
=====================================================*/

.text-justify{

text-align:justify;

}

.text-center{

text-align:center;

}

/*=====================================================
    DISPLAY
=====================================================*/

.hidden{

display:none;

}

.visible{

display:block;

}

/*=====================================================
    LOADING EFFECT
=====================================================*/

.loading{

pointer-events:none;

opacity:.65;

}

/*=====================================================
    SELECTION
=====================================================*/

::selection{

background:var(--accent);

color:white;

}

/*=====================================================
    SCROLLBAR
=====================================================*/

::-webkit-scrollbar{

width:10px;

}

::-webkit-scrollbar-track{

background:#f3f3f3;

}

::-webkit-scrollbar-thumb{

background:var(--primary);

border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

background:var(--accent);

}

/*=====================================================
    PRINT
=====================================================*/

@media print{

.navbar,
.whatsapp-float,
.back-to-top,
.hero-social{

display:none !important;

}

body{

background:white;

color:black;

}

}

/*=====================================================
    END OF FILE
=====================================================*/