/* INDUSTRIAS HENDY - Ropa y Telas */
/* Colors: Primary Blue (#3535CC) + Warm Gray (#9e9e9e) */

:root {
    --primary: #3535CC;
    --primary-dark: #2828a3;
    --primary-light: #5252e0;
    --warm-gray: #9e9e9e;
    --warm-gray-dark: #757575;
    --warm-gray-light: #bdbdbd;
    --off-white: #f9f9f9;
    --white: #ffffff;
    --dark: #333333;
    --light-bg: #f5f5f5;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 400;
    background-color: var(--white);
    color: var(--dark);
    line-height: 1.7;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.header.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo img {
    height: 60px;
    width: auto;
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--dark);
    font-size: 0.95rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

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

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--dark);
    cursor: pointer;
}

/* Hero Section - Full Background */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 4rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(53, 53, 204, 0.85) 0%, rgba(40, 40, 163, 0.75) 100%);
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 650px;
    text-align: left;
}

.hero-eyebrow {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-text {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--white);
    color: var(--primary);
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid var(--white);
}

.cta-button:hover {
    background: transparent;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-button i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: translateY(3px);
}


/* Section Styles */
.section-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.section-label.light {
    color: var(--primary-light);
}

.section-title {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}

.section-title.light {
    color: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: var(--light-bg);
}

.services-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-block {
    background: var(--white);
    padding: 2.5rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.service-block:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.service-block h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}

.service-block p {
    font-size: 0.95rem;
    color: var(--warm-gray-dark);
    line-height: 1.7;
}

/* Features Row */
.features {
    padding: 4rem 0;
    background: var(--white);
    border-top: 1px solid var(--light-bg);
    border-bottom: 1px solid var(--light-bg);
}

.features-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.feature-item {
    text-align: center;
    flex: 1;
}

.feature-value {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.feature-label {
    font-size: 0.85rem;
    color: var(--warm-gray-dark);
}

.feature-divider {
    width: 1px;
    height: 50px;
    background: var(--warm-gray-light);
}

/* About Section */
.about {
    padding: 6rem 0;
    background: var(--white);
}

.about-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text {
    margin-bottom: 2rem;
}

.about-text p {
    font-size: 1.05rem;
    color: var(--warm-gray-dark);
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.highlight i {
    color: var(--primary);
    font-size: 1.1rem;
}

.highlight span {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark);
}

.visual-card {
    background: var(--light-bg);
    padding: 2.5rem;
    border-top: 4px solid var(--primary);
}

.visual-icon {
    width: 70px;
    height: 70px;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.visual-icon i {
    font-size: 2rem;
    color: var(--white);
}

.visual-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.75rem;
}

.visual-card p {
    font-size: 0.95rem;
    color: var(--warm-gray-dark);
    line-height: 1.7;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: var(--primary);
}

.contact-centered {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
}

.contact-item i {
    width: 55px;
    height: 55px;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
    border-radius: 50%;
}

.contact-item span {
    display: block;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-item strong {
    font-size: 1.1rem;
    color: var(--white);
}

/* Footer */
.footer {
    padding: 4rem 0 2rem;
    background: var(--dark);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 2rem;
}

.footer-logo {
    height: 50px;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    font-size: 0.9rem;
    color: var(--warm-gray);
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--warm-gray);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-light);
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary);
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--warm-gray);
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .hero {
        min-height: auto;
        padding: 10rem 0 5rem;
    }

    .services-row {
        grid-template-columns: 1fr;
    }

    .features-grid {
        flex-wrap: wrap;
        gap: 2rem;
    }

    .feature-divider {
        display: none;
    }

    .feature-item {
        flex: 0 0 calc(50% - 1rem);
    }

    .about-layout {
        grid-template-columns: 1fr;
    }

    .contact-details {
        flex-direction: column;
        gap: 1.5rem;
    }

    .contact-item {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: block;
    }

    .nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--white);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .nav.active {
        opacity: 1;
        visibility: visible;
    }

    .nav-menu {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .nav-menu a {
        font-size: 1.5rem;
    }

    .hero {
        padding: 8rem 0 4rem;
        min-height: auto;
    }

    .hero-title {
        font-size: 2rem;
    }

    .about-highlights {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Images */
.product-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 1.5rem;
    border-radius: 4px;
}

.about-image {
    width: 100%;
    max-width: 350px;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}
