/* ===== VARIABLES ===== */
:root {
    --orange: #FF6B2B;
    --orange-dark: #E05820;
    --navy: #1B2B5E;
    --navy-dark: #0F1A3D;
    --navy-light: #2D4A8A;
    --yellow: #FFE600;
    --green-wa: #25D366;
    --white: #FFFFFF;
    --light: #F8F9FA;
    --gray: #6C757D;
    --dark: #212529;
    --text: #2B2D42;
    --shadow-sm: 0 2px 8px rgba(0,0,0,.08);
    --shadow-md: 0 8px 30px rgba(0,0,0,.12);
    --shadow-lg: 0 20px 60px rgba(0,0,0,.18);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: all .3s cubic-bezier(.4,0,.2,1);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.65;
}

h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.2;
    color: var(--navy);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 900; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); font-weight: 800; }
h3 { font-size: 1.2rem; font-weight: 700; }

a { text-decoration: none; color: inherit; }
img, svg { display: block; max-width: 100%; }
ul { list-style: none; }

.container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: .95rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--orange);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(255,107,43,.35);
}
.btn-primary:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255,107,43,.45);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,.6);
}
.btn-outline:hover {
    background: var(--white);
    color: var(--navy);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn-card {
    background: transparent;
    color: var(--orange);
    border-color: var(--orange);
    padding: 10px 22px;
    font-size: .88rem;
    width: 100%;
    justify-content: center;
    margin-top: auto;
}
.btn-card:hover {
    background: var(--orange);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-full { width: 100%; justify-content: center; }

/* ===== SECTION TAGS & HEADERS ===== */
.section-tag {
    display: inline-block;
    background: rgba(255,107,43,.12);
    color: var(--orange);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: .78rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 14px;
}

.tag-light {
    background: rgba(255,230,0,.2);
    color: var(--yellow);
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}
.section-header h2 { margin-bottom: 14px; }
.section-header p { color: var(--gray); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }
.section-header.light h2 { color: var(--white); }
.section-header.light p { color: rgba(255,255,255,.7); }

.text-orange { color: var(--orange); }

/* ===== NAVBAR ===== */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 18px 0;
    transition: var(--transition);
}
#navbar.scrolled {
    background: var(--navy-dark);
    box-shadow: var(--shadow-md);
    padding: 12px 0;
}

.nav-container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.nav-logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1rem;
    line-height: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0 2px;
    color: var(--white);
}
.logo-mega { color: var(--orange); font-size: 1.15rem; }
.logo-rest { color: var(--white); }
.logo-vallarta { color: var(--yellow); font-size: .72rem; letter-spacing: .2em; width: 100%; margin-top: 1px; }

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2px;
}

.nav-link {
    color: rgba(255,255,255,.85);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: .82rem;
    padding: 8px 10px;
    border-radius: 8px;
    white-space: nowrap;
    transition: var(--transition);
}
.nav-link:hover { color: var(--white); background: rgba(255,255,255,.1); }

.nav-cta {
    background: var(--orange) !important;
    color: var(--white) !important;
    border-radius: 50px !important;
    padding: 9px 16px !important;
    margin-left: 4px;
}
.nav-cta:hover { background: var(--orange-dark) !important; }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ===== HERO ===== */
.hero {
    position: relative;
    background: var(--navy-dark);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 24px 80px;
    overflow: hidden;
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.bg-circle {
    position: absolute;
    border-radius: 50%;
    opacity: .08;
}
.c1 { width: 600px; height: 600px; background: var(--orange); top: -200px; right: -100px; }
.c2 { width: 400px; height: 400px; background: var(--yellow); bottom: -150px; left: -100px; }
.c3 { width: 250px; height: 250px; background: var(--orange); top: 50%; left: 40%; }

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,230,0,.15);
    border: 1px solid rgba(255,230,0,.35);
    color: var(--yellow);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: .82rem;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.hero-content h1 {
    color: var(--white);
    margin-bottom: 20px;
}

.hero-sub {
    color: rgba(255,255,255,.75);
    font-size: 1.05rem;
    margin-bottom: 36px;
    max-width: 480px;
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-item strong {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1.8rem;
    color: var(--orange);
    line-height: 1;
}
.stat-item span {
    font-size: .78rem;
    color: rgba(255,255,255,.6);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .05em;
}
.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,.2);
}

/* Hero visual: floating product cards grid */
.product-float-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 14px;
}

.float-card {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--radius);
    padding: 18px 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(8px);
    transition: var(--transition);
    cursor: default;
}
.float-card:hover {
    background: rgba(255,255,255,.12);
    transform: translateY(-4px);
    border-color: rgba(255,107,43,.4);
}
.float-card svg { width: 52px; height: 52px; }
.float-card span {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: .78rem;
    color: rgba(255,255,255,.8);
    text-align: center;
}

/* stagger animation delays */
.fc-1 { animation: floatUp 3s ease-in-out infinite; }
.fc-2 { animation: floatUp 3s ease-in-out .5s infinite; }
.fc-3 { animation: floatUp 3s ease-in-out 1s infinite; }
.fc-4 { animation: floatUp 3s ease-in-out 1.5s infinite; }
.fc-5 { animation: floatUp 3s ease-in-out .25s infinite; }
.fc-6 { animation: floatUp 3s ease-in-out .75s infinite; }

@keyframes floatUp {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}
.float-card:hover { animation-play-state: paused; }

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
}
.hero-wave svg { width: 100%; height: 80px; }

/* ===== ABOUT ===== */
.about { padding: 100px 0; background: var(--light); }

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

.about-img-wrap { position: relative; }
.about-img-wrap svg { border-radius: var(--radius-lg); width: 100%; box-shadow: var(--shadow-lg); }

.about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--orange);
    color: var(--white);
    border-radius: var(--radius);
    padding: 16px 20px;
    text-align: center;
    box-shadow: var(--shadow-md);
    font-family: 'Montserrat', sans-serif;
}
.badge-date { display: block; font-size: .7rem; font-weight: 600; opacity: .85; }
.badge-year { display: block; font-size: 2rem; font-weight: 900; line-height: 1; }
.badge-label { display: block; font-size: .65rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; opacity: .85; }

.about-content .section-tag { display: block; margin-bottom: 10px; }
.about-content h2 { margin-bottom: 16px; }
.about-content .lead { font-size: 1.05rem; margin-bottom: 14px; color: var(--text); }
.about-content p { color: var(--gray); margin-bottom: 24px; }

.feature-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.feature-item { display: flex; align-items: center; gap: 12px; }
.feat-check {
    width: 24px;
    height: 24px;
    background: var(--orange);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .75rem;
    font-weight: 900;
    flex-shrink: 0;
}
.feature-item span { font-weight: 600; color: var(--text); font-size: .95rem; }

/* ===== CATALOG ===== */
.catalog { padding: 100px 0; background: var(--white); }

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

.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    border: 1px solid #f0f0f0;
}
.product-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
}

.product-img {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.product-img svg { width: 100px; height: 100px; }

.product-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--yellow);
    color: var(--navy);
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: .68rem;
    text-transform: uppercase;
    letter-spacing: .05em;
    padding: 4px 10px;
    border-radius: 50px;
}

.product-body {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 10px;
}
.product-body h3 { color: var(--navy); }
.product-body p { color: var(--gray); font-size: .92rem; flex: 1; }

.product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.product-tags span {
    background: var(--light);
    color: var(--navy);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: .72rem;
    padding: 4px 10px;
    border-radius: 50px;
}

/* ===== WHY US ===== */
.why-us { padding: 100px 0; background: var(--navy); }
.why-us .section-header { margin-bottom: 56px; }

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

.why-card {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    transition: var(--transition);
}
.why-card:hover {
    background: rgba(255,255,255,.08);
    transform: translateY(-4px);
    border-color: rgba(255,107,43,.3);
}
.why-icon { width: 52px; height: 52px; margin-bottom: 18px; }
.why-card h3 { color: var(--white); margin-bottom: 10px; }
.why-card p { color: rgba(255,255,255,.65); font-size: .92rem; }

/* ===== PROCESS ===== */
.process { padding: 100px 0; background: var(--light); }

.steps {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.step-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    flex: 1;
    min-width: 180px;
    max-width: 220px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.step-item:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }

.step-num {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 2.4rem;
    color: var(--orange);
    line-height: 1;
    margin-bottom: 12px;
    opacity: .9;
}
.step-item h3 { margin-bottom: 8px; color: var(--navy); }
.step-item p { color: var(--gray); font-size: .88rem; }

.step-arrow {
    font-size: 1.8rem;
    color: var(--orange);
    opacity: .5;
    align-self: center;
    flex-shrink: 0;
    margin-top: -20px;
}

/* ===== CONTACT ===== */
.contact { padding: 100px 0; background: var(--white); }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    align-items: start;
}

.contact-info .section-tag { display: block; margin-bottom: 10px; }
.contact-info h2 { margin-bottom: 16px; }
.contact-info > p { color: var(--gray); margin-bottom: 36px; font-size: 1rem; }

.contact-items { display: flex; flex-direction: column; gap: 18px; }

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    border-radius: var(--radius);
    background: var(--light);
    transition: var(--transition);
    border: 1px solid transparent;
}
a.contact-item:hover {
    border-color: var(--orange);
    background: rgba(255,107,43,.05);
    transform: translateX(4px);
}

.contact-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-icon svg { width: 20px; height: 20px; }
.ci-whatsapp { background: #25D366; color: var(--white); }
.ci-phone { background: var(--navy); color: var(--white); }
.ci-location { background: var(--orange); color: var(--white); }

.ci-label { display: block; font-size: .75rem; font-weight: 600; color: var(--gray); text-transform: uppercase; letter-spacing: .06em; }
.ci-value { display: block; font-family: 'Montserrat', sans-serif; font-weight: 700; color: var(--navy); font-size: .95rem; }

/* Contact Form */
.contact-form-wrap {
    background: var(--light);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-sm);
    border: 1px solid #eee;
}

#contactForm h3 {
    font-size: 1.35rem;
    margin-bottom: 24px;
    color: var(--navy);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }

.form-group label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: .8rem;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: .05em;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #E8E8E8;
    border-radius: 10px;
    font-family: 'Open Sans', sans-serif;
    font-size: .93rem;
    color: var(--text);
    background: var(--white);
    transition: var(--transition);
    outline: none;
    -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(255,107,43,.15);
}
.form-group textarea { resize: vertical; }
.form-group select { cursor: pointer; }

.form-note {
    text-align: center;
    font-size: .78rem;
    color: var(--gray);
    margin-top: 12px;
}

.form-success {
    display: none;
    text-align: center;
    padding: 40px 20px;
}
.form-success.show { display: block; }
.success-icon {
    width: 72px;
    height: 72px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-weight: 900;
}
.form-success h3 { font-size: 1.5rem; margin-bottom: 10px; color: var(--navy); }
.form-success p { color: var(--gray); margin-bottom: 24px; }

/* ===== FOOTER ===== */
footer {
    background: var(--navy-dark);
    color: rgba(255,255,255,.7);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding: 60px 24px 40px;
    max-width: 1160px;
    margin: 0 auto;
}

.footer-logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1rem;
    line-height: 1.1;
    margin-bottom: 14px;
}

.footer-brand p { font-size: .9rem; line-height: 1.65; max-width: 280px; }

.footer-col h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--white);
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a, .footer-col p, .footer-col a {
    font-size: .88rem;
    color: rgba(255,255,255,.6);
    transition: color .2s;
}
.footer-col ul a:hover, .footer-col a:hover { color: var(--orange); }

.footer-wa {
    display: inline-block;
    margin-top: 12px;
    color: #25D366 !important;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: .88rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
}
.footer-bottom .container { padding: 20px 24px; }
.footer-bottom p {
    text-align: center;
    font-size: .8rem;
    color: rgba(255,255,255,.4);
}

/* ===== WHATSAPP FLOAT ===== */
.wa-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,.4);
    z-index: 999;
    transition: var(--transition);
}
.wa-float svg { width: 30px; height: 30px; color: var(--white); }
.wa-float:hover {
    background: #20ba5a;
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37,211,102,.55);
}

.wa-tooltip {
    position: absolute;
    right: 70px;
    background: var(--dark);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: .75rem;
    padding: 7px 14px;
    border-radius: 50px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s;
}
.wa-tooltip::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: var(--dark);
}
.wa-float:hover .wa-tooltip { opacity: 1; }

/* ===== TÉCNICAS ===== */
.tecnicas { padding: 100px 0; background: var(--white); }

.tecnicas-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.tecnica-card {
    background: var(--white);
    border: 1px solid #eee;
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.tecnica-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }

.tecnica-icon {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.tecnica-icon svg { width: 52px; height: 52px; }

.tecnica-body { padding: 24px; flex: 1; }
.tecnica-body h3 { color: var(--navy); margin-bottom: 10px; font-size: 1.1rem; }
.tecnica-body p { color: var(--gray); font-size: .92rem; margin-bottom: 16px; }

.tecnica-list { display: flex; flex-direction: column; gap: 6px; }
.tecnica-list li {
    font-size: .86rem;
    font-weight: 600;
    color: var(--navy);
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ===== BORDADOS ===== */
.bordados { padding: 100px 0; background: var(--light); }

.bordados-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.bordados-content .section-tag { display: block; margin-bottom: 10px; }
.bordados-content h2 { margin-bottom: 16px; }
.bordados-content .lead { font-size: 1.05rem; margin-bottom: 14px; color: var(--text); }
.bordados-content p { color: var(--gray); margin-bottom: 24px; font-size: .95rem; }

.bordados-tipos { margin-bottom: 28px; }
.bordados-tipos h4 { font-family: 'Montserrat', sans-serif; font-weight: 700; color: var(--navy); margin-bottom: 12px; font-size: .95rem; }

.bordado-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.bordado-tags span {
    background: var(--white);
    border: 1.5px solid #ddd;
    color: var(--navy);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: .78rem;
    padding: 6px 14px;
    border-radius: 50px;
    transition: var(--transition);
}
.bordado-tags span:hover { border-color: var(--orange); color: var(--orange); }

.bordados-specs {
    display: flex;
    gap: 20px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}
.spec-item {
    background: var(--white);
    border-radius: var(--radius);
    padding: 16px 20px;
    text-align: center;
    flex: 1;
    min-width: 100px;
    box-shadow: var(--shadow-sm);
}
.spec-num {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1.8rem;
    color: var(--orange);
    line-height: 1;
}
.spec-label { display: block; font-size: .75rem; font-weight: 600; color: var(--gray); margin-top: 4px; line-height: 1.3; }

/* Bordados visual card */
.bv-card {
    background: var(--navy);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.bv-header {
    background: var(--orange);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: .9rem;
    padding: 14px 24px;
    text-transform: uppercase;
    letter-spacing: .06em;
}
.bv-steps { padding: 24px; display: flex; flex-direction: column; gap: 20px; }
.bv-step { display: flex; gap: 16px; align-items: flex-start; }
.bv-num {
    width: 36px;
    height: 36px;
    background: var(--orange);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: .9rem;
    flex-shrink: 0;
}
.bv-step strong { display: block; color: var(--white); font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: .95rem; margin-bottom: 2px; }
.bv-step p { color: rgba(255,255,255,.6); font-size: .85rem; margin: 0; }

/* ===== SECTORES ===== */
.sectores { padding: 100px 0; background: var(--white); }

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

.sector-card {
    background: var(--light);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid transparent;
}
.sector-card:hover {
    border-color: var(--orange);
    background: var(--white);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}
.sector-icon {
    font-size: 2.4rem;
    margin-bottom: 14px;
    display: block;
}
.sector-card h3 { color: var(--navy); margin-bottom: 8px; font-size: 1.05rem; }
.sector-card p { color: var(--gray); font-size: .88rem; }

/* ===== SCROLL ANIMATIONS ===== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .6s ease, transform .6s ease;
}
.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}
.animate-on-scroll:nth-child(2) { transition-delay: .1s; }
.animate-on-scroll:nth-child(3) { transition-delay: .2s; }
.animate-on-scroll:nth-child(4) { transition-delay: .1s; }
.animate-on-scroll:nth-child(5) { transition-delay: .2s; }
.animate-on-scroll:nth-child(6) { transition-delay: .3s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .catalog-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .tecnicas-grid { grid-template-columns: repeat(2, 1fr); }
    .sectores-grid { grid-template-columns: repeat(2, 1fr); }
    .bordados-grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-content { order: 1; }
    .hero-btns { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-sub { margin: 0 auto 36px; }
    .product-float-grid { max-width: 400px; margin: 0 auto; }

    .about-grid { grid-template-columns: 1fr; }
    .about-badge { bottom: -10px; right: 10px; }

    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }

    .steps { flex-direction: column; align-items: center; }
    .step-arrow { transform: rotate(90deg); margin: -8px 0; }
    .step-item { max-width: 100%; width: 100%; }
}

@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .nav-menu {
        position: fixed;
        inset: 0;
        background: var(--navy-dark);
        flex-direction: column;
        justify-content: center;
        gap: 8px;
        transform: translateX(100%);
        transition: transform .3s ease;
        z-index: 999;
    }
    .nav-menu.open { transform: translateX(0); }
    .nav-link { font-size: 1.1rem; padding: 14px 24px; }
    .nav-toggle { z-index: 1000; position: relative; }

    .catalog-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
    .why-grid { grid-template-columns: 1fr; }
    .tecnicas-grid { grid-template-columns: 1fr; }
    .sectores-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .form-row { grid-template-columns: 1fr; }
    .contact-form-wrap { padding: 24px; }
}

@media (max-width: 480px) {
    .hero-btns { flex-direction: column; align-items: center; }
    .hero-btns .btn { width: 100%; justify-content: center; }
    .product-float-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
    .float-card { padding: 12px 8px; }
    .float-card svg { width: 38px; height: 38px; }
    .hero-stats { gap: 16px; }
    .stat-divider { height: 30px; }
}
