:root {
    --primary: #FF6B00; /* Naranja corporativo */
    --primary-hover: #E05E00;
    --dark: #1E2022; /* Gris oscuro textos principales */
    --body-text: #4A4A4A; /* Gris medio para lectura */
    --light-bg: #F8F9FA; /* Gris suave fondos */
    --border-color: #E9ECEF;
    --white: #FFFFFF;
    --font-main: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--body-text);
    background-color: var(--white);
    line-height: 1.6;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header / Nav */
header {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    line-height: 0;
}

.logo img {
    display: block;
    width: 190px;
    height: 85px;
    object-fit: contain;
}

.logo span {
    color: var(--primary);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s;
}

.nav-menu a:hover {
    color: var(--primary);
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white) !important;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600 !important;
    transition: background-color 0.2s ease;
    display: inline-block;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

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

.btn-outline {
    border: 2px solid var(--dark);
    color: var(--dark) !important;
    padding: 10px 22px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s;
}

.btn-outline:hover {
    background-color: var(--dark);
    color: var(--white) !important;
}

/* Hero Section */
.hero {
    padding: 90px 0;
    background: linear-gradient(135deg, #FFFFFF 0%, var(--light-bg) 100%);
    border-bottom: 1px solid var(--border-color);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 107, 0, 0.1);
    color: var(--primary);
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero h1 {
    font-size: 48px;
    color: var(--dark);
    line-height: 1.15;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 32px;
    color: var(--body-text);
}

.hero-btns {
    display: flex;
    gap: 16px;
}

.hero-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* Section General */
section {
    padding: 90px 0;
}

.section-title {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.section-title h2 {
    font-size: 36px;
    color: var(--dark);
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-title p {
    font-size: 17px;
    color: var(--body-text);
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
}

.about-content h2 {
    font-size: 34px;
    color: var(--dark);
    margin-bottom: 20px;
}

.about-content p {
    font-size: 17px;
    margin-bottom: 24px;
}

/* Mision & Vision Cards */
.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.mv-card {
    background: var(--light-bg);
    padding: 35px;
    border-radius: 10px;
    border-left: 4px solid var(--primary);
}

.mv-card h3 {
    font-size: 22px;
    color: var(--dark);
    margin-bottom: 12px;
}

/* Process Section */
.process {
    background-color: var(--light-bg);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.process-card {
    background: var(--white);
    padding: 35px 30px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    position: relative;
}

.process-num {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 15px;
}

.process-card h3 {
    font-size: 20px;
    color: var(--dark);
    margin-bottom: 12px;
}

/* Why Choose Us */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-box {
    padding: 30px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    transition: transform 0.2s, box-shadow 0.2s;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 107, 0, 0.1);
    color: var(--primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
}

.feature-box h3 {
    font-size: 20px;
    color: var(--dark);
    margin-bottom: 12px;
}

/* Clients Section */
.clients {
    background-color: var(--light-bg);
    text-align: center;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.client-logo {
    background: var(--white);
    border: 1px solid var(--border-color);
    padding: 30px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    overflow: hidden;
}

.client-logo img {
    max-width: 140px;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.client-logo:hover img {
    transform: scale(1.1);
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 50px;
    align-items: start;
}

.contact-info h2 {
    font-size: 34px;
    color: var(--dark);
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 17px;
    margin-bottom: 30px;
}

.contact-details {
    list-style: none;
}

.contact-details li {
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
}

.form-container iframe {
    width: 100%;
    height: 680px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    background: var(--white);
}

/* Footer */
footer {
    background-color: var(--dark);
    color: #A0A0A0;
    padding: 60px 0 30px 0;
    font-size: 14px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    color: var(--white);
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 15px;
    display: inline-block;
}

.footer-logo span {
    color: var(--primary);
}

.footer-nav h4,
.footer-contact h4 {
    color: #FFF;
    margin-bottom: 15px;
}

.footer-nav a {
    color: #A0A0A0;
    text-decoration: none;
}

.footer-bottom {
    border-top: 1px solid #333333;
    padding-top: 25px;
    text-align: center;
}

/* Responsive Mobile */
@media (max-width: 992px) {
    .hero-grid, .about-grid, .contact-grid, .mv-grid {
        grid-template-columns: 1fr;
    }

    .process-grid, .features-grid {
        grid-template-columns: 1fr;
    }

    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .nav-menu {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .logo img {
        width: 110px;
        height: 45px;
    }
}

/* =========================
   Productos destacados
========================= */

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    margin-top: 48px;
    align-items: stretch;
}

.product-card {
    min-width: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e8eaed;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(20, 30, 40, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-image {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 290px;
    flex-shrink: 0;
    background: #eef0f2;
}

.product-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.product-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 24px 22px 26px;
}

.product-content h3 {
    min-height: 28px;
    margin: 0 0 12px;
    color: #1d2733;
    font-size: 1.15rem;
}

.product-content p {
    min-height: 78px;
    margin: 0 0 20px;
    color: #68727d;
    font-size: 0.9rem;
    line-height: 1.65;
}

.product-link {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #e25c32;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
}

.footer-logo img {
    display: block;
    width: 150px;
    height: auto;
    object-fit: contain;
}

.contact-details a {
    color: var(--body-text);
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-details a:hover {
    color: var(--primary);
}

.footer-contact-link {
    color: #A0A0A0;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-contact-link:hover {
    color: var(--primary);
}

.form-button-card {
    padding: 48px 40px;
    border: 1px solid #e7e2f1;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 18px 45px rgba(41, 27, 72, 0.12);
    text-align: center;
}

.form-button-card h3 {
    margin: 0 0 14px;
    color: #FF6B00;
    font-size: 1.5rem;
}

.form-button-card p {
    max-width: 390px;
    margin: 0 auto 30px;
    color: #666;
    line-height: 1.7;
}

.form-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 15px 24px;
    border-radius: 8px;
    background: #FF6B00;
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.25s ease, transform 0.25s ease,
                box-shadow 0.25s ease;
}

.form-button:hover {
    background: #FF6B00;
    box-shadow: 0 8px 20px rgba(107, 63, 193, 0.28);
    transform: translateY(-2px);
}

.form-button span {
    font-size: 1.25rem;
    line-height: 1;
}
/* Tablets */
@media (min-width: 577px) and (max-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Celulares */
@media (max-width: 576px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .product-image {
        height: 260px;
    }

    .product-content {
        padding: 22px 20px 24px;
    }

    .product-content p {
        min-height: auto;
    }
}
/* Subtítulo de productos destacados */
.section-subtitle {
    display: inline-block;
    margin-bottom: 14px;
    padding: 6px 14px;
    border-radius: 20px;
    background: rgba(255, 107, 0, 0.1);
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(255, 107, 0, 0.12);
}
.product-card {
  overflow: hidden;
}

.product-card img {
  transition: transform 0.3s ease;
}

.product-card:hover img {
  transform: scale(1.08);
}
.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    line-height: 1.5;
}

.contact-icon {
    width: 24px;
    min-width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 23px;
    font-weight: 400;
    line-height: 1;
}

.location-icon {
    font-size: 28px;
    transform: rotate(-20deg);
}

.whatsapp-icon {
    border: 2px solid var(--primary);
    border-radius: 50%;
    font-size: 0;
    position: relative;
}

.whatsapp-icon::after {
    content: "☎";
    font-size: 13px;
    color: var(--primary);
    transform: rotate(-18deg);
}

.mail-icon {
    font-size: 25px;
}

.footer-contact-item span:not(.contact-icon),
.footer-contact-item a {
    color: #A0A0A0;
    text-decoration: none;
}

.footer-contact-item a:hover {
    color: var(--primary);
}
.whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 62px;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #25D366;
    border-radius: 50%;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
    z-index: 9999;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float svg {
    display: block;
    width: 38px;
    height: 38px;
    fill: #ffffff;
    transform: none;
    flex-shrink: 0;
}
@media (max-width: 600px) {
    .whatsapp-float {
        right: 16px;
        bottom: 16px;
        width: 56px;
        height: 56px;
    }

    .whatsapp-float svg {
        width: 35px;
        height: 35px;
    }
}
