/* --- Reset y Estilos Globales --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.7;
    color: #333;
    background-color: #ffffff;
}

h1, h2, h3 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 15px;
}

h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 40px;
    color: #005A8D; /* Un azul corporativo */
}

h3 {
    font-size: 1.6rem;
    color: #333;
}

p {
    margin-bottom: 1rem;
    font-size: 1rem;
}

a {
    text-decoration: none;
    color: #007BFF;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 30px;
}

section {
    padding: 60px 0;
}

.btn {
    display: inline-block;
    background: #007BFF;
    color: #fff;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.btn:hover {
    background: #005A8D;
}


/* --- Header y Navegación --- */
header {
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    padding-bottom: 15px;
}

header #logo h1 a {
    color: #333;
    font-size: 1.8rem;
    font-weight: 700;
}

header nav ul {
    list-style: none;
    display: flex;
}

header nav ul li {
    margin-left: 25px;
}

header nav ul li a {
    color: #555;
    font-weight: 600;
    transition: color 0.3s ease;
}

header nav ul li a:hover {
    color: #005A8D;
}

/* --- Hero Section --- */
#hero {
    background: linear-gradient(rgba(0, 90, 141, 0.7), rgba(0, 90, 141, 0.7)), url('https://via.placeholder.com/1500x800.png?text=Artículos+Promocionales') no-repeat center center/cover;
    height: 70vh;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
   
}

.hero-content h2 {
    font-size: 2.8rem;
    color: #fff;
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* --- Secciones About y Contact --- */
#about {
    text-align: center;
    max-width: 800px;
}

#contact {
    background-color: #f4f7f9;
}

.contact-info {
    text-align: center;
}

.contact-info p {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.contact-info strong {
    color: #005A8D;
}

/* --- Sección Kit Destacado --- */
#featured-kit {
    background-color: #fff;
}

.kit-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.kit-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.kit-image img {
    width: 100%;
    display: block;
}

.kit-description p {
    font-size: 1.05rem;
    margin-bottom: 20px;
}

.kit-description .btn {
    margin-top: 10px;
}

/* --- Servicios --- */
#services {
    background-color: #f4f7f9;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.12);
}

.service-card h3 {
    color: #007BFF;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

.service-card p strong {
    display: block;
    margin-top: 10px;
    color: #333;
}


/* --- Productos --- */
#products .section-subtitle {
    text-align: center;
    max-width: 700px;
    margin: -20px auto 40px auto;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

.product-item {
    height: 150px;
    background-color: #007BFF;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    padding: 10px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.product-item:hover {
    transform: scale(1.05);
}

.product-item span {
    position: relative;
    z-index: 2;
}

.product-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

/* --- Footer --- */
footer {
    background-color: #333;
    color: #f4f4f4;
    text-align: center;
    padding: 20px 0;
}

footer p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

/* --- Responsive Design --- */
@media(max-width: 768px) {
    h2 { font-size: 1.8rem; }
    .hero-content h2 { font-size: 2rem; 
       
    }

    header .container {
        flex-direction: column;
    }
    
    header nav ul {
        padding: 10px 0;
        flex-wrap: wrap;
        justify-content: center;
    }

    header nav ul li { margin: 5px 10px; }
    
    .kit-layout {
        grid-template-columns: 1fr;
    }
    
    .kit-description {
        text-align: center;
    }
}


    .float-wa{
        position:fixed;
        width:60px;
        height:60px;
        bottom:40px;
        right:40px;
        background-color:#25d366;
        color:#FFF;
        border-radius:50px;
        text-align:center;
        font-size:30px;
        z-index:2000;
    }

