/* =======================================================
INFORCAM - STYLE.CSS
Soluciones Tecnológicas para Empresas y Hogares
Paleta Oficial:
Negro: #111111
Amarillo: #F2B705
======================================================= */

:root {

--primary: #F2B705;
--primary-dark: #D89D04;

--dark: #111111;
--dark-2: #1C1C1C;

--light: #F8F9FA;
--white: #FFFFFF;

--text: #E5E5E5;
--text-dark: #333333;

--shadow: 0 10px 30px rgba(0,0,0,.15);


}

/* =======================================================
RESET
======================================================= */

*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{


font-family:'Segoe UI',sans-serif;

background:var(--white);

color:var(--text-dark);

overflow-x:hidden;

line-height:1.6;


}

/* =======================================================
SCROLLBAR
======================================================= */

::-webkit-scrollbar{
width:10px;
}

::-webkit-scrollbar-track{
background:#1a1a1a;
}

::-webkit-scrollbar-thumb{
background:var(--primary);
border-radius:10px;
}

/* =======================================================
NAVBAR
======================================================= */

.navbar{

    background:rgba(17,17,17,.85);

    backdrop-filter:blur(12px);

    transition:all .3s ease;

    padding:20px 0;

}

.logo-navbar{

    height:60px;

    transition:all .3s ease;

}

/* Navbar cuando se hace scroll */

.navbar.scrolled{

    background:#111111;

    padding:8px 0;

    box-shadow:0 5px 20px rgba(0,0,0,.25);

}

.navbar.scrolled .logo-navbar{

    height:40px;

}

.nav-link{


color:white !important;

font-weight:500;

margin-left:15px;

transition:.3s;


}

.nav-link:hover{


color:var(--primary) !important;


}

/* =======================================================
   HERO
======================================================= */

.hero{

    min-height:100vh;

    position:relative;

    display:flex;

    align-items:center;

    overflow:hidden;

}

.hero-video{

    position:absolute;

    inset:0;

    width:100%;

    height:100%;

    object-fit:cover;

    z-index:1;

    transform:scale(1.05);

}



.hero-overlay{

    position:absolute;

    inset:0;

    background:
        linear-gradient(
            rgba(17,17,17,.75),
            rgba(17,17,17,.85)
        );

    z-index:2;

}

.hero .container{

    position:relative;

    z-index:3;

}

.hero h1{

    color:white;

    font-size:clamp(2.5rem,5vw,5rem);

    font-weight:800;

    line-height:1.1;

    margin-bottom:20px;

}

.hero p{

    color:#d9d9d9;

    font-size:1.2rem;

}

.hero-logo{

    max-width:400px;

    filter:
        drop-shadow(
            0 0 30px rgba(242,183,5,.35)
        );

    animation:pulse 5s infinite;

}

/* =======================================================
BUTTONS
======================================================= */

.btn-brand{


background:var(--primary);

color:#111111;

border:none;

padding:14px 28px;

font-weight:700;

border-radius:10px;

transition:.3s;


}

.btn-brand:hover{


background:var(--primary-dark);

transform:translateY(-2px);

color:#111111;


}

.btn-outline-light{


border-width:2px;


}

/* =======================================================
SECTIONS
======================================================= */

.section-padding{


padding:100px 0;


}

.section-header{


margin-bottom:60px;


}

.section-header h2{


font-size:2.8rem;

font-weight:800;

color:#111111;


}

.section-header p{


color:#777;

max-width:700px;

margin:auto;


}

/* =======================================================
SERVICES
======================================================= */

.service-card{


background:white;

border-radius:20px;

padding:35px;

text-align:center;

height:100%;

transition:.3s;

box-shadow:var(--shadow);


}

.service-card:hover{


transform:translateY(-10px);


}

.service-card i{


font-size:4rem;

color:var(--primary);


}

.service-card h4{


margin-top:20px;

font-weight:700;


}

.service-card p{


margin-top:15px;

color:#666;


}

/* =======================================================
ABOUT SECTION
======================================================= */

.dark-section{

background:#111111;

color:white;

padding:100px 0;


}

.dark-section h2{


font-size:2.8rem;

font-weight:800;

margin-bottom:25px;


}

.dark-section ul{


padding-left:20px;


}

.dark-section li{

margin-bottom:12px;

}

.counter{

font-size:3rem;

font-weight:800;

color:var(--primary);

}

.dark-section p{

color:#cfcfcf;

}

/* =======================================================
PROJECTS
======================================================= */

.project-placeholder{

height:300px;

background:#1f1f1f;

border:3px dashed var(--primary);

border-radius:20px;

display:flex;

justify-content:center;

align-items:center;

color:white;

font-weight:700;

transition:.3s;

}

.project-placeholder:hover{

background:#252525;

}

/* =======================================================
CONTACT
======================================================= */

.contact-section{

background:#f6f6f6;

padding:100px 0;

}

.form-control{

border-radius:10px;

padding:14px;

border:1px solid #ddd;

}

.form-control:focus{

border-color:var(--primary);

box-shadow:0 0 0 .15rem rgba(242,183,5,.25);

}

/* =======================================================
FOOTER
======================================================= */

footer{

background:#111111;

color:white;

padding:60px 0;

}

.footer-logo{

max-width:120px;

margin-bottom:20px;

}

footer h4{

color:var(--primary);

font-weight:800;

}

footer p{

margin-bottom:5px;

color:#d4d4d4;

}

/* =======================================================
WHATSAPP FLOAT
======================================================= */

.whatsapp-float{

position:fixed;

width:65px;

height:65px;

bottom:25px;

right:25px;

z-index:999;

border-radius:50%;

background:#25D366;

color:white;

display:flex;

align-items:center;

justify-content:center;

text-decoration:none;

font-size:2rem;

box-shadow:0 5px 20px rgba(0,0,0,.3);

transition:.3s;

}

.whatsapp-float:hover{

transform:scale(1.1);

color:white;

}

/* =======================================================
ANIMATIONS
======================================================= */

@keyframes pulse {

0%{
    transform:scale(1);
}

50%{
    transform:scale(1.05);
}

100%{
    transform:scale(1);
}

}

.hero-logo{

animation:pulse 5s infinite;

}

/* =======================================================
RESPONSIVE TABLET
======================================================= */

@media(max-width:991px){

.hero{

    text-align:center;

    padding-top:120px;

}

.hero-logo{

    max-width:280px;

    margin-top:40px;

}

.section-header h2{

    font-size:2.2rem;

}

}

/* =======================================================
RESPONSIVE MOBILE
======================================================= */

@media(max-width:768px){

.section-padding{

    padding:70px 0;

}

.dark-section{

    padding:70px 0;

}

.contact-section{

    padding:70px 0;

}

.hero h1{

    font-size:2.4rem;

}

.hero p{

    font-size:1rem;

}

.service-card{

    padding:25px;

}

.project-placeholder{

    height:220px;

}

.counter{

    font-size:2.2rem;

}

.whatsapp-float{

    width:58px;

    height:58px;

    font-size:1.8rem;

}

}

/* =======================================================
EXTRA LARGE SCREENS
======================================================= */

@media(min-width:1600px){

.container{

    max-width:1400px;

}

}


@media(max-width:991px){

    .navbar-collapse{

        background:rgba(17,17,17,.98);

        padding:20px;

        margin-top:15px;

        border-radius:15px;

        backdrop-filter:blur(20px);

    }

    .nav-link{

        padding:12px 0;

        font-size:1.1rem;

    }

}


/* =========================================
   HERO LOGO RESPONSIVE
========================================= */

@media (max-width:991px){

    .hero-logo-container{

        display:none;

    }

}


@media (max-width:991px){

    .hero{

        text-align:center;

        padding-top:120px;

    }

    .hero .row{

        justify-content:center;

    }

}

@media (max-width:768px){

    .hero .btn{

        width:100%;

        margin-bottom:10px;

    }

    .hero .btn-outline-light{

        margin-left:0 !important;

    }

}



/* =======================================================
MARCAS
======================================================= */

.brands-section{

    padding:80px 0;

    background:#fafafa;

}

.brands-grid{

    display:grid;

    grid-template-columns:repeat(6,1fr);

    gap:40px;

    align-items:center;

    margin-top:40px;

}

.brands-grid img{

    width:100%;

    max-height:60px;

    object-fit:contain;

    filter:grayscale(100%);

    opacity:.7;

    transition:.3s ease;

}

.brands-grid img:hover{

    filter:none;

    opacity:1;

    transform:scale(1.05);

}

@media(max-width:991px){

    .brands-grid{

        grid-template-columns:repeat(3,1fr);

    }

}

@media(max-width:576px){

    .brands-grid{

        grid-template-columns:repeat(2,1fr);

        gap:25px;

    }

}
