/* ===================================
   FAUSOFT LANDING PAGE
=================================== */

:root{
    --primary:#0f172a;
    --secondary:#1e3a8a;
    --accent:#06b6d4;
    --light:#f8fafc;
    --white:#ffffff;
    --dark:#020617;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Segoe UI',sans-serif;
    background:#fff;
    color:#334155;
    overflow-x:hidden;
}

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

.custom-navbar{
    background:rgba(15,23,42,.95);
    backdrop-filter:blur(10px);
    box-shadow:0 2px 15px rgba(0,0,0,.15);
}

.navbar-brand img{
    height:60px;
}

.nav-link{
    color:#fff !important;
    font-weight:600;
    margin-left:10px;
}

.nav-link:hover{
    color:var(--accent) !important;
}

.btn-info{
    background:var(--accent);
    border:none;
    color:white;
    font-weight:600;
}

.btn-info:hover{
    background:#0891b2;
}

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

.hero-slide{
    background:
    linear-gradient(
    135deg,
    #0f172a,
    #1e3a8a,
    #06b6d4
    );

    color:white;
}

.hero-slide h1{
    font-size:4rem;
    font-weight:800;
}

.hero-slide h2{
    font-size:3rem;
    font-weight:800;
}

.hero-slide p{
    font-size:1.2rem;
    margin:20px 0;
}

.hero-slide ul{
    list-style:none;
    padding:0;
}

.hero-slide ul li{
    margin-bottom:10px;
    font-size:1.1rem;
}

.hero-slide ul li::before{
    content:"✓ ";
    color:#67e8f9;
    font-weight:bold;
}

.hero-logo{
    max-width:500px;
    width:100%;
    filter:
    drop-shadow(0 15px 25px rgba(0,0,0,.25));
}


.custom-hero-bg {
    height:220px;
    /* Mantiene el fondo blanco base */
    background-color: #ffffff; 
    
    /* Redondea los filos/esquinas */
    border-radius: 400px; 
    
    /* Crea la fusión de blanco (adentro) a transparente (afuera) */
    box-shadow: inset 0 0 1px 1px #44bbcd, 0 0 1px 1px #44bbcd;
    
    /* Opcional: añade espacio interno para que el logo no toque los bordes difuminados */
    padding: 30px;
}


/* =========================
   SECTIONS
========================= */

.section-padding{
    padding:100px 0;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
    font-size:3rem;
    font-weight:800;
    color:var(--secondary);
}

/* =========================
   ABOUT
========================= */

#nosotros p{
    max-width:900px;
    margin:auto;
    font-size:1.2rem;
    line-height:1.8;
}

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

.service-card{
    background:white;
    padding:35px;
    border-radius:20px;
    box-shadow:
    0 10px 25px rgba(0,0,0,.08);

    transition:.3s;
    height:100%;
}

.service-card:hover{
    transform:translateY(-8px);
}

.service-card h3{
    color:var(--secondary);
    font-weight:700;
    margin-bottom:20px;
}

/* =========================
   PRODUCTS
========================= */

.product-card{
    background:white;
    border-radius:25px;
    overflow:hidden;

    box-shadow:
    0 10px 25px rgba(0,0,0,.08);

    transition:.3s;
    height:100%;
}

.product-card:hover{
    transform:translateY(-10px);
}

.product-card img{
    width:100%;
    height:180px;
    object-fit:contain;
    padding:20px;
}

.product-body{
    padding:25px;
}

.product-title{
    color:var(--secondary);
    font-weight:800;
    margin-bottom:10px;
}

.product-body ul{
    padding-left:20px;
}

.product-body li{
    margin-bottom:8px;
}

.btn-product{
    background:var(--secondary);
    color:white;
    border:none;
    width:100%;
    padding:12px;
    border-radius:12px;
    font-weight:600;
}

.btn-product:hover{
    background:var(--accent);
}

/* =========================
   CLIENTS
========================= */

.client-placeholder{
    height:160px;
    border:2px dashed #cbd5e1;
    border-radius:20px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#f8fafc;

    color:#94a3b8;
    font-weight:600;
}

/* =========================
   CONTACT
========================= */

#contacto{
    background:#f8fafc;
}

#contacto h2{
    color:var(--secondary);
    font-weight:800;
    margin-bottom:25px;
}

.form-control{
    padding:14px;
    border-radius:12px;
}

.form-control:focus{
    box-shadow:none;
    border-color:var(--accent);
}

.btn-primary{
    background:var(--secondary);
    border:none;
}

.btn-primary:hover{
    background:var(--accent);
}

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

footer{
    background:#020617;
    color:white;
    padding:50px 0;
}

.footer-logo{
    width:180px;
    margin-bottom:20px;
}

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

.whatsapp-btn{
    position:fixed;
    right:25px;
    bottom:25px;

    width:65px;
    height:65px;

    background:#25d366;
    color:white;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:32px;

    text-decoration:none;

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

    z-index:9999;

    transition:.3s;
}

.whatsapp-btn:hover{
    transform:scale(1.1);
    color:white;
}

/* =========================
   MODAL
========================= */

.modal-header{
    background:var(--secondary);
    color:white;
}

.modal-title{
    font-weight:700;
}

.feature-list{
    list-style:none;
    padding:0;
}

.feature-list li{
    margin-bottom:8px;
}

.feature-list li::before{
    content:"✓ ";
    color:#16a34a;
    font-weight:bold;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:992px){

.hero-slide h1{
    font-size:2.8rem;
}

.hero-slide h2{
    font-size:2.3rem;
}

.hero-logo{
    max-width:300px;
    margin-top:30px;
}

.section-title{
    font-size:2.2rem;
}

}

@media(max-width:768px){

.hero-slide{
    text-align:center;
}

.hero-slide h1{
    font-size:2.2rem;
}

.hero-slide h2{
    font-size:2rem;
}

.navbar-brand img{
    height:50px;
}

.section-padding{
    padding:70px 0;
}

}
/* ==========================
   FOOTER PREMIUM
========================== */

.footer-premium{
    background:#020617;
    color:white;
    padding:80px 0 30px;
}

.footer-premium h4{
    margin-bottom:20px;
    font-weight:700;
}

.footer-links{
    list-style:none;
    padding:0;
}

.footer-links li{
    margin-bottom:10px;
}

.social-icons{
    display:flex;
    gap:15px;
    margin-top:20px;
}

.social-icons a{
    width:45px;
    height:45px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:#1e293b;

    color:white;

    font-size:20px;

    text-decoration:none;

    transition:.3s;
}

.social-icons a:hover{
    background:#06b6d4;
}