/* ============================
   SILUETAS Y TONOS - STYLES v2
   ============================ */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;600;700;800;900&family=Raleway:wght@400;600;700;800;900&display=swap');

:root {
    --teal: #0a9396;
    --teal-dark: #005f73;
    --teal-light: #94d2bd;
    --teal-pale: #e0f5f5;
    --coral: #f4845f;
    --coral-pale: #fef0eb;
    --purple: #7b2d8b;
    --purple-pale: #f4eaf6;
    --mint: #52b788;
    --mint-pale: #eaf7f0;
    --gold: #f4a261;
    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-600: #475569;
    --gray-800: #1e293b;
    --gradient-main: linear-gradient(135deg, #005f73, #0a9396, #52b788);
    --gradient-warm: linear-gradient(135deg, #f4845f, #f4a261);
    --gradient-full: linear-gradient(135deg, #005f73 0%, #0a9396 40%, #52b788 70%, #f4845f 100%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, .08);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, .12);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, .15);
    --radius: 16px;
    --transition: .3s ease;
}

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

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

body {
    font-family: 'Nunito', sans-serif;
    color: var(--gray-800);
    background: var(--white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
    background: var(--teal);
    border-radius: 3px;
}

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

.section {
    padding: 96px 0;
}

.section-tag {
    display: inline-block;
    background: var(--teal-pale);
    color: var(--teal-dark);
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.section-tag.coral {
    background: var(--coral-pale);
    color: var(--coral);
}

.section-tag.purple {
    background: var(--purple-pale);
    color: var(--purple);
}

.section-tag.mint {
    background: var(--mint-pale);
    color: var(--mint);
}

.section-title {
    font-family: 'Raleway', sans-serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 900;
    color: var(--gray-800);
    line-height: 1.15;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--gray-600);
    max-width: 600px;
    line-height: 1.75;
}

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

.text-center .section-subtitle {
    margin: 0 auto;
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 100px;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: .95rem;
    cursor: pointer;
    border: none;
    transition: all var(--transition);
}

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

.btn-primary:hover {
    background: var(--teal-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(10, 147, 150, .35);
}

.btn-secondary {
    background: transparent;
    color: var(--teal);
    border: 2.5px solid var(--teal);
}

.btn-secondary:hover {
    background: var(--teal);
    color: var(--white);
}

.btn-coral {
    background: var(--gradient-warm);
    color: var(--white);
}

.btn-coral:hover {
    opacity: .9;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(244, 132, 95, .4);
}

.btn-white {
    background: var(--white);
    color: var(--teal-dark);
}

.btn-white:hover {
    background: var(--teal-pale);
    transform: translateY(-2px);
}

.btn-wa {
    background: #25D366;
    color: var(--white);
}

.btn-wa:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, .35);
}

/* HEADER */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--gray-200);
    transition: all var(--transition);
}

header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    border-radius: 10px;
}

.logo-text {
    font-family: 'Raleway', sans-serif;
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--teal-dark);
    line-height: 1;
}

.logo-text span {
    display: block;
    font-family: 'Nunito', sans-serif;
    font-size: .62rem;
    font-weight: 700;
    color: var(--gray-600);
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-top: 2px;
}

/* Desktop nav (hidden on mobile) */
.desktop-nav {
    display: flex;
    align-items: center;
    gap: 2px;
}

.desktop-nav a {
    padding: 8px 14px;
    border-radius: 100px;
    font-size: .88rem;
    font-weight: 700;
    color: var(--gray-600);
    transition: all var(--transition);
}

.desktop-nav a:hover,
.desktop-nav a.active {
    background: var(--teal-pale);
    color: var(--teal-dark);
}

/* Visibility helpers */
.desktop-only {
    display: inline-flex;
}

.mobile-only {
    display: none;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
    flex-shrink: 0;
    order: -2;
}

/* Mobile WhatsApp icon in header (right side) */
.mobile-wa-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #25D366;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
    transition: background var(--transition);
}

.mobile-wa-icon:hover {
    background: #128C7E;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gray-800);
    border-radius: 2px;
    transition: all var(--transition);
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    padding: 20px;
    flex-direction: column;
    gap: 6px;
    z-index: 999;
    box-shadow: var(--shadow-md);
    max-height: calc(100vh - 72px);
    overflow-y: auto;
}

.mobile-nav.open {
    display: flex;
}

/* Big Cotizar button at top of mobile menu */
.mobile-nav-cotizar {
    justify-content: center;
    font-size: 1rem;
    padding: 15px;
    border-radius: 14px;
    background: #25D366;
    color: white;
    margin-bottom: 4px;
    text-align: center;
}

.mobile-nav-cotizar:hover {
    background: #128C7E;
    transform: none;
    box-shadow: none;
}

/* Nav links */
.mobile-nav>a:not(.mobile-nav-cotizar) {
    padding: 12px 16px;
    border-radius: 12px;
    font-weight: 700;
    color: var(--gray-600);
    transition: all var(--transition);
}

.mobile-nav>a:not(.mobile-nav-cotizar):hover {
    background: var(--teal-pale);
    color: var(--teal-dark);
}

/* Social section at bottom */
.mobile-nav-social {
    margin-top: 8px;
    padding-top: 16px;
    border-top: 1px solid var(--gray-200);
}

.mobile-nav-social-label {
    display: block;
    font-size: .74rem;
    font-weight: 800;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 12px;
}

.mobile-nav-social-icons {
    display: flex;
    gap: 10px;
}

.mobile-social-btn {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: var(--gray-100);
    color: var(--gray-600);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    transition: all .2s;
}

.mobile-social-btn:hover {
    background: var(--teal-pale);
    color: var(--teal);
}

.mobile-social-btn.wa {
    background: #e6faf0;
    color: #25D366;
}

.mobile-social-btn.wa:hover {
    background: #25D366;
    color: white;
}

.mobile-social-btn.yt {
    background: #fff0f0;
    color: #ff0000;
}

.mobile-social-btn.yt:hover {
    background: #ff0000;
    color: white;
}

/* HERO — fixed container alignment */
#inicio {
    min-height: 100vh;
    padding: 100px 0 60px;
    background: linear-gradient(145deg, #f0fafa 0%, #fef8f5 50%, #f0fdf6 100%);
    position: relative;
    overflow: hidden;
}

#inicio::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(10, 147, 150, .07), transparent 70%);
}

#inicio::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(244, 132, 95, .07), transparent 70%);
}

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

/* .hero-content uses inherited grid layout */

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--teal-pale);
    border: 1.5px solid var(--teal-light);
    border-radius: 100px;
    padding: 7px 18px;
    font-size: .8rem;
    font-weight: 800;
    color: var(--teal-dark);
    margin-bottom: 24px;
}

.hero-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--teal);
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: .3;
    }
}

.hero-title {
    font-family: 'Raleway', sans-serif;
    font-size: clamp(2.4rem, 4.5vw, 3.6rem);
    font-weight: 900;
    line-height: 1.12;
    color: var(--gray-800);
    margin-bottom: 20px;
}

.hero-title em {
    font-style: normal;
    background: var(--gradient-full);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.05rem;
    color: var(--gray-600);
    line-height: 1.75;
    margin-bottom: 36px;
}

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

.hero-stats {
    display: flex;
    gap: 32px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-family: 'Raleway', sans-serif;
    font-size: 1.9rem;
    font-weight: 900;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-label {
    font-size: .78rem;
    color: var(--gray-600);
    margin-top: 4px;
    font-weight: 600;
}

/* Hero image area */
.hero-image {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.hero-image-bg {
    position: absolute;
    inset: 8% -5% -5%;
    border-radius: 50% 50% 46% 46% / 40% 40% 30% 30%;
    background: radial-gradient(ellipse at 40% 60%, hsla(182, 82%, 88%, .65) 0%, hsla(182, 82%, 78%, .3) 45%, transparent 75%),
        radial-gradient(ellipse at 70% 30%, hsla(14, 90%, 92%, .5) 0%, transparent 60%);
    z-index: 0;
    animation: blobPulse 8s ease-in-out infinite alternate;
}

@keyframes blobPulse {
    0% {
        transform: scale(1) rotate(0deg);
    }

    50% {
        transform: scale(1.04) rotate(2deg);
    }

    100% {
        transform: scale(1) rotate(-1deg);
    }
}

.hero-image img,
.hero-image svg,
.hero-image canvas {
    position: relative;
    z-index: 1;
    width: 90%;
    max-height: 560px;
    object-fit: contain;
    object-position: bottom;
    filter: drop-shadow(0 24px 48px rgba(10, 147, 150, .25));
    animation: floatNurse 5s ease-in-out infinite;
}

@keyframes floatNurse {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Canvas sizing */
.hero-image canvas {
    display: block;
    height: auto;
    margin: 0 auto;
}

.hero-badge-float {
    position: absolute;
    background: var(--white);
    border-radius: 14px;
    padding: 12px 16px;
    box-shadow: var(--shadow-md);
    z-index: 2;
}

.hero-badge-float.top-left {
    bottom: 20px;
    left: -10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-badge-float.bottom-right {
    bottom: 80px;
    right: -10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.badge-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.badge-icon.teal {
    background: var(--teal-pale);
}

.badge-icon.coral {
    background: var(--coral-pale);
}

.badge-text strong {
    display: block;
    font-size: .88rem;
    color: var(--gray-800);
    font-weight: 800;
}

.badge-text span {
    font-size: .74rem;
    color: var(--gray-600);
}

/* COLOR SWATCHES in hero */
.color-swatches {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.swatch {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, .7);
    box-shadow: 0 2px 6px rgba(0, 0, 0, .15);
    cursor: pointer;
    transition: transform var(--transition);
}

.swatch:hover {
    transform: scale(1.25);
}

.swatch.selected {
    transform: scale(1.3);
    outline: 3px solid var(--gray-800);
    outline-offset: 2px;
    box-shadow: 0 0 0 5px rgba(0, 0, 0, .12);
}

/* Uniform colour layer — garment-only PNG. Tinted via ::before with multiply */
.uniform-color-layer {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    pointer-events: none;
}

.uniform-color-layer img {
    width: 90%;
    max-height: 560px;
    object-fit: contain;
    object-position: bottom;
    position: relative;
    z-index: 1;
    opacity: 0;
    /* invisible until colour selected */
    transition: opacity .3s ease;
    mix-blend-mode: multiply;
}

.uniform-color-layer.active img {
    opacity: 0.85;
}

/* Colour fill overlay on top of the garment image */
.uniform-color-layer::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    background-color: var(--uniform-tint, transparent);
    mix-blend-mode: multiply;
    pointer-events: none;
    transition: background-color .45s ease;
}

/* TRUST BAR */
.trust-bar {
    background: var(--gradient-main);
    padding: 20px 0;
}

.trust-items {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, .95);
    font-size: .88rem;
    font-weight: 700;
}

.trust-item i {
    color: white;
    font-size: 1rem;
    opacity: .85;
}

/* NOSOTROS */
#nosotros {
    background: var(--white);
}

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

.nosotros-image-wrap {
    position: relative;
}

.nosotros-image-wrap img {
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gradient-warm);
    color: white;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: .78rem;
    font-weight: 800;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.experience-badge strong {
    font-family: 'Raleway', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
}

.nosotros-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 32px;
}

.feature-card {
    background: var(--gray-50);
    border-radius: 14px;
    padding: 18px;
    border-left: 4px solid;
}

.feature-card:nth-child(1) {
    border-color: var(--teal);
}

.feature-card:nth-child(2) {
    border-color: var(--coral);
}

.feature-card:nth-child(3) {
    border-color: var(--mint);
}

.feature-card:nth-child(4) {
    border-color: var(--purple);
}

.feature-card h4 {
    font-size: .9rem;
    font-weight: 800;
    color: var(--gray-800);
    margin-bottom: 6px;
}

.feature-card p {
    font-size: .82rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* MATERIALES */
#materiales {
    background: var(--gray-50);
}

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

.material-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1.5px solid var(--gray-200);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.material-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    border-radius: var(--radius) var(--radius) 0 0;
}

.material-card:nth-child(1)::before {
    background: var(--teal);
}

.material-card:nth-child(2)::before {
    background: var(--coral);
}

.material-card:nth-child(3)::before {
    background: var(--mint);
}

.material-card:nth-child(4)::before {
    background: var(--purple);
}

.material-card:nth-child(5)::before {
    background: var(--gold);
}

.material-card:nth-child(6)::before {
    background: var(--teal-dark);
}

.material-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.material-icon {
    width: 68px;
    height: 68px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 18px;
}

.material-card:nth-child(1) .material-icon {
    background: var(--teal-pale);
}

.material-card:nth-child(2) .material-icon {
    background: var(--coral-pale);
}

.material-card:nth-child(3) .material-icon {
    background: var(--mint-pale);
}

.material-card:nth-child(4) .material-icon {
    background: var(--purple-pale);
}

.material-card:nth-child(5) .material-icon {
    background: #fff8ee;
}

.material-card:nth-child(6) .material-icon {
    background: var(--teal-pale);
}

.material-card h3 {
    font-family: 'Raleway', sans-serif;
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--gray-800);
    margin-bottom: 10px;
}

.material-card p {
    font-size: .85rem;
    color: var(--gray-600);
    line-height: 1.7;
}

.material-tag {
    display: inline-block;
    font-size: .7rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 100px;
    margin-top: 16px;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: white;
}

.material-card:nth-child(1) .material-tag {
    background: var(--teal);
}

.material-card:nth-child(2) .material-tag {
    background: var(--coral);
}

.material-card:nth-child(3) .material-tag {
    background: var(--mint);
}

.material-card:nth-child(4) .material-tag {
    background: var(--purple);
}

.material-card:nth-child(5) .material-tag {
    background: var(--gold);
}

.material-card:nth-child(6) .material-tag {
    background: var(--teal-dark);
}

/* PRODUCTOS */
#productos {
    background: var(--white);
}

.productos-tabs {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 40px 0 48px;
}

.tab-btn {
    padding: 10px 24px;
    border-radius: 100px;
    border: 2px solid var(--gray-200);
    background: transparent;
    font-family: 'Nunito', sans-serif;
    font-size: .88rem;
    font-weight: 800;
    color: var(--gray-600);
    cursor: pointer;
    transition: all var(--transition);
}

.tab-btn.active,
.tab-btn:hover {
    border-color: var(--teal);
    background: var(--teal);
    color: white;
}

.productos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(255px, 1fr));
    gap: 24px;
}

.producto-card {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1.5px solid var(--gray-200);
    transition: all var(--transition);
}

.producto-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.producto-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

/* colorful background per card */
.producto-card:nth-child(1) .producto-img {
    background: linear-gradient(135deg, #e0f5f5, #b2e8e8);
}

.producto-card:nth-child(2) .producto-img {
    background: linear-gradient(135deg, #fef0eb, #fdd5c4);
}

.producto-card:nth-child(3) .producto-img {
    background: linear-gradient(135deg, #eaf7f0, #c5ebd9);
}

.producto-card:nth-child(4) .producto-img {
    background: linear-gradient(135deg, #f4eaf6, #ddbde6);
}

.producto-card:nth-child(5) .producto-img {
    background: linear-gradient(135deg, #fff8ee, #fde5bb);
}

.producto-card:nth-child(6) .producto-img {
    background: linear-gradient(135deg, #e0f5f5, #94d2bd);
}

.producto-card:nth-child(7) .producto-img {
    background: linear-gradient(135deg, #fef0eb, #fdd5c4);
}

.producto-card:nth-child(8) .producto-img {
    background: linear-gradient(135deg, #eaf7f0, #c5ebd9);
}

.producto-card:nth-child(9) .producto-img {
    background: linear-gradient(135deg, #f4eaf6, #ddbde6);
}

.producto-card:nth-child(10) .producto-img {
    background: linear-gradient(135deg, #fff8ee, #fde5bb);
}

.producto-card:nth-child(11) .producto-img {
    background: linear-gradient(135deg, #e0f5f5, #b2e8e8);
}

.producto-card:nth-child(12) .producto-img {
    background: linear-gradient(135deg, #fef0eb, #fdd5c4);
}

.producto-card:nth-child(13) .producto-img {
    background: linear-gradient(135deg, #eaf7f0, #c5ebd9);
}

.producto-card:nth-child(14) .producto-img {
    background: linear-gradient(135deg, #f4eaf6, #ddbde6);
}

.producto-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.producto-card:hover .producto-img img {
    transform: scale(1.05);
}

.producto-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    font-size: .68rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 100px;
    text-transform: uppercase;
    color: white;
}

.producto-badge.teal {
    background: var(--teal);
}

.producto-badge.coral {
    background: var(--coral);
}

.producto-badge.mint {
    background: var(--mint);
}

.producto-badge.purple {
    background: var(--purple);
}

.producto-info {
    padding: 18px;
    background: var(--white);
}

.producto-info h3 {
    font-family: 'Raleway', sans-serif;
    font-size: .95rem;
    font-weight: 800;
    color: var(--gray-800);
    margin-bottom: 6px;
    line-height: 1.35;
}

.producto-info p {
    font-size: .82rem;
    color: var(--gray-600);
    line-height: 1.55;
    margin-bottom: 14px;
}

.producto-detail {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.detail-tag {
    font-size: .7rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 100px;
}

.detail-tag.teal {
    background: var(--teal-pale);
    color: var(--teal-dark);
}

.detail-tag.coral {
    background: var(--coral-pale);
    color: var(--coral);
}

.detail-tag.mint {
    background: var(--mint-pale);
    color: var(--mint);
}

.detail-tag.purple {
    background: var(--purple-pale);
    color: var(--purple);
}

/* COLOR CATALOG */
.color-catalog {
    margin-top: 56px;
    background: var(--gray-50);
    border-radius: 24px;
    padding: 40px;
}

.color-catalog h3 {
    font-family: 'Raleway', sans-serif;
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--gray-800);
    margin-bottom: 8px;
}

.color-catalog p {
    color: var(--gray-600);
    font-size: .9rem;
    margin-bottom: 24px;
}

.colors-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.color-chip {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.color-chip-dot {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 3px solid rgba(0, 0, 0, .08);
    box-shadow: 0 3px 10px rgba(0, 0, 0, .12);
    transition: transform .2s;
}

.color-chip:hover .color-chip-dot {
    transform: scale(1.2);
}

.color-chip-name {
    font-size: .64rem;
    font-weight: 700;
    color: var(--gray-600);
}

/* PROCESO */
#proceso {
    background: var(--gradient-main);
    position: relative;
    overflow: hidden;
}

#proceso .section-title {
    color: white;
}

#proceso .section-subtitle {
    color: rgba(255, 255, 255, .8);
}

#proceso .section-tag {
    background: rgba(255, 255, 255, .15);
    color: white;
}

.proceso-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 56px;
    position: relative;
}

.proceso-steps::before {
    content: '';
    position: absolute;
    top: 32px;
    left: 12%;
    right: 12%;
    height: 2px;
    background: rgba(255, 255, 255, .2);
    z-index: 0;
}

.step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--white);
    font-family: 'Raleway', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 3px solid rgba(255, 255, 255, .3);
}

.step:nth-child(1) .step-number {
    color: var(--teal);
}

.step:nth-child(2) .step-number {
    color: var(--coral);
}

.step:nth-child(3) .step-number {
    color: var(--mint);
}

.step:nth-child(4) .step-number {
    color: var(--purple);
}

.step h3 {
    font-family: 'Raleway', sans-serif;
    font-size: 1rem;
    font-weight: 800;
    color: white;
    margin-bottom: 10px;
}

.step p {
    font-size: .83rem;
    color: rgba(255, 255, 255, .75);
    line-height: 1.65;
}

/* TESTIMONIOS */
#testimonios {
    background: var(--gray-50);
}

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

.testimonio-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    border: 1.5px solid var(--gray-200);
    position: relative;
    overflow: hidden;
}

.testimonio-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 5rem;
    line-height: 1;
    font-weight: 900;
    opacity: .06;
    color: var(--teal);
}

.testimonio-card:nth-child(2)::before {
    color: var(--coral);
}

.testimonio-card:nth-child(3)::before {
    color: var(--purple);
}

.testimonio-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: var(--radius) var(--radius) 0 0;
}

.testimonio-card:nth-child(1) .testimonio-accent {
    background: var(--teal);
}

.testimonio-card:nth-child(2) .testimonio-accent {
    background: var(--coral);
}

.testimonio-card:nth-child(3) .testimonio-accent {
    background: var(--purple);
}

.stars {
    font-size: 1rem;
    margin-bottom: 14px;
    margin-top: 12px;
}

.testimonio-card:nth-child(1) .stars {
    color: var(--teal);
}

.testimonio-card:nth-child(2) .stars {
    color: var(--coral);
}

.testimonio-card:nth-child(3) .stars {
    color: var(--purple);
}

.testimonio-card p {
    font-size: .88rem;
    color: var(--gray-600);
    line-height: 1.75;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonio-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 900;
    font-size: .95rem;
    flex-shrink: 0;
}

.testimonio-card:nth-child(1) .author-avatar {
    background: var(--teal);
}

.testimonio-card:nth-child(2) .author-avatar {
    background: var(--coral);
}

.testimonio-card:nth-child(3) .author-avatar {
    background: var(--purple);
}

.author-info strong {
    display: block;
    font-size: .88rem;
    color: var(--gray-800);
    font-weight: 800;
}

.author-info span {
    font-size: .77rem;
    color: var(--gray-600);
}

/* CONTACTO */
#contacto {
    background: var(--white);
}

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

.contacto-info h3 {
    font-family: 'Raleway', sans-serif;
    font-size: 1.45rem;
    font-weight: 900;
    color: var(--gray-800);
    margin-bottom: 14px;
}

.contacto-info>p {
    color: var(--gray-600);
    line-height: 1.75;
    margin-bottom: 32px;
}

.contacto-items {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 36px;
}

.contacto-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contacto-item-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contacto-item:nth-child(1) .contacto-item-icon {
    background: var(--mint-pale);
    color: var(--mint);
}

.contacto-item:nth-child(2) .contacto-item-icon {
    background: var(--teal-pale);
    color: var(--teal);
}

.contacto-item:nth-child(3) .contacto-item-icon {
    background: var(--coral-pale);
    color: var(--coral);
}

.contacto-item-text strong {
    display: block;
    font-size: .9rem;
    color: var(--gray-800);
    font-weight: 800;
}

.contacto-item-text span {
    font-size: .83rem;
    color: var(--gray-600);
}

.contacto-form {
    background: var(--gray-50);
    border-radius: 24px;
    padding: 36px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: .84rem;
    font-weight: 800;
    color: var(--gray-800);
    margin-bottom: 7px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 13px 16px;
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    font-family: 'Nunito', sans-serif;
    font-size: .9rem;
    color: var(--gray-800);
    background: var(--white);
    transition: border-color var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--teal);
}

.form-group textarea {
    resize: vertical;
    min-height: 110px;
}

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

/* FOOTER */
footer {
    background: var(--gray-800);
    color: rgba(255, 255, 255, .7);
}

.footer-top {
    padding: 64px 0 48px;
}

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

.footer-brand p {
    font-size: .875rem;
    line-height: 1.7;
    margin: 14px 0 22px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 8px;
    background: white;
    padding: 2px;
}

.footer-logo-text {
    font-family: 'Raleway', sans-serif;
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--white);
}

.footer-social {
    display: flex;
    gap: 10px;
}

.social-btn {
    width: 38px;
    height: 38px;
    border-radius: 9px;
    background: rgba(255, 255, 255, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .95rem;
    transition: all var(--transition);
    color: rgba(255, 255, 255, .7);
}

.social-btn:hover {
    background: var(--teal);
    color: white;
}

.footer-col h4 {
    font-family: 'Raleway', sans-serif;
    font-size: .9rem;
    font-weight: 900;
    color: white;
    margin-bottom: 18px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col ul li a {
    font-size: .84rem;
    transition: color var(--transition);
}

.footer-col ul li a:hover {
    color: var(--teal-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .82rem;
}

/* WA FLOAT */
.wa-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 900;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.wa-btn {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25D366;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 6px 20px rgba(37, 211, 102, .4);
    animation: wa-bounce 3s ease-in-out infinite;
}

@keyframes wa-bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-7px);
    }
}

.wa-tooltip {
    background: var(--gray-800);
    color: white;
    font-size: .78rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 100px;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: all var(--transition);
}

.wa-float:hover .wa-tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* ANIMATE ON SCROLL */
.anim {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .55s ease, transform .55s ease;
}

.anim.visible {
    opacity: 1;
    transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .materiales-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

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

    .proceso-steps::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

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

    .hero-image {
        min-height: 280px;
    }

    .hero-image-bg {
        inset: 0;
        border-radius: 20px;
    }

    .hero-image img {
        max-height: 340px;
    }

    .hero-badge-float {
        display: none;
    }

    .nosotros-grid,
    .contacto-grid {
        grid-template-columns: 1fr;
    }

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

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

    .proceso-steps {
        grid-template-columns: 1fr 1fr;
    }

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

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

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

    /* Mobile header: hamburger left | logo center | WA icon right */
    .desktop-nav {
        display: none;
    }

    .desktop-only {
        display: none !important;
    }

    .mobile-only {
        display: flex !important;
    }

    .hamburger {
        display: flex;
    }

    .logo {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .trust-items {
        gap: 18px;
        justify-content: flex-start;
    }
}

@media (max-width: 480px) {
    .proceso-steps {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        gap: 20px;
    }

    .color-chip-dot {
        width: 36px;
        height: 36px;
    }
}

/* ==============================
   BLOG — Cards (homepage preview + listing)
   ============================== */
.blog-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.blog-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .3s, box-shadow .3s;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.blog-card-img {
    aspect-ratio: 16/9;
    overflow: hidden;
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s;
}

.blog-card:hover .blog-card-img img {
    transform: scale(1.05);
}

.blog-card-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.blog-card-content h2,
.blog-card-content h3 {
    font-size: 1.1rem;
    line-height: 1.4;
    color: var(--gray-800);
}

.blog-card-content h2 a,
.blog-card-content h3 a {
    color: inherit;
    text-decoration: none;
}

.blog-card-content h2 a:hover,
.blog-card-content h3 a:hover {
    color: var(--teal);
}

.blog-card-content p {
    font-size: .95rem;
    color: var(--gray-600);
    flex: 1;
}

.blog-tag {
    display: inline-block;
    background: var(--teal-pale);
    color: var(--teal-dark);
    font-size: .78rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 999px;
}

.blog-read-more {
    font-size: .9rem;
    font-weight: 700;
    color: var(--teal);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap .2s;
}

.blog-read-more:hover {
    gap: 8px;
}

/* ==============================
   BLOG ARTICLE PAGE
   ============================== */
.blog-article-header {
    padding-bottom: 0;
    text-align: center;
}

.blog-article-header h1 {
    font-size: clamp(1.6rem, 4vw, 2.6rem);
    max-width: 800px;
    margin: 20px auto 12px;
}

.blog-meta {
    font-size: .9rem;
    color: var(--gray-600);
    margin-bottom: 32px;
}

.blog-hero-img {
    width: 100%;
    max-height: 480px;
    object-fit: cover;
    border-radius: var(--radius);
    margin: 0 auto;
    display: block;
}

.blog-content {
    max-width: 780px;
    margin: 0 auto;
    padding: 60px 24px;
}

.blog-intro {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--gray-800);
    border-left: 4px solid var(--teal);
    padding-left: 20px;
    margin-bottom: 40px;
}

.blog-content h2 {
    font-size: 1.5rem;
    color: var(--gray-800);
    margin: 48px 0 16px;
}

.blog-content h3 {
    font-size: 1.2rem;
    color: var(--gray-800);
    margin: 36px 0 12px;
}

.blog-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray-600);
    margin-bottom: 16px;
}

.blog-content ul,
.blog-content ol {
    padding-left: 24px;
    margin-bottom: 24px;
}

.blog-content li {
    line-height: 1.9;
    color: var(--gray-600);
    margin-bottom: 6px;
}

.blog-content a {
    color: var(--teal);
    font-weight: 600;
}

/* Blog Table */
.blog-table-wrap {
    overflow-x: auto;
    margin: 32px 0;
}

.blog-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .95rem;
}

.blog-table th {
    background: var(--gradient-main);
    color: #fff;
    padding: 12px 16px;
    text-align: left;
}

.blog-table td {
    padding: 10px 16px;
    border-bottom: 1px solid var(--gray-200);
    vertical-align: top;
}

.blog-table tr:nth-child(even) td {
    background: var(--gray-50);
}

/* Blog Checklist */
.blog-checklist {
    background: var(--teal-pale);
    border-radius: var(--radius);
    padding: 28px 32px;
    margin: 40px 0;
}

.blog-checklist h3 {
    color: var(--teal-dark);
    margin-bottom: 16px;
    font-size: 1.1rem;
}

.blog-checklist li {
    list-style: none;
    padding: 6px 0;
    font-size: 1rem;
    color: var(--gray-800);
}

/* Blog CTA */
.blog-cta {
    background: var(--gradient-main);
    border-radius: var(--radius);
    padding: 40px 36px;
    text-align: center;
    margin: 48px 0;
    color: #fff;
}

.blog-cta h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: #fff;
}

.blog-cta p {
    margin-bottom: 24px;
    opacity: .9;
}

/* Blog Color Palette (article 3) */
.blog-color-palette {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin: 32px 0;
}

.bcp-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .9rem;
    color: var(--gray-800);
}

.bcp-dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    flex-shrink: 0;
}

/* ==============================
   FAQ SECTION (homepage + articles)
   ============================== */
.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 780px;
    margin: 40px auto 0;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    overflow: hidden;
    transition: box-shadow .2s;
}

.faq-item:hover {
    box-shadow: var(--shadow-sm);
}

.faq-item summary {
    padding: 20px 24px;
    font-weight: 700;
    color: var(--gray-800);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.faq-item summary::after {
    content: '＋';
    font-size: 1.2rem;
    color: var(--teal);
    flex-shrink: 0;
}

.faq-item[open] summary::after {
    content: '－';
}

.faq-item p {
    padding: 0 24px 20px;
    color: var(--gray-600);
    line-height: 1.7;
    margin: 0;
}

/* ==============================
   BREADCRUMB
   ============================== */
.breadcrumb-nav {
    padding: 16px 0;
}

.breadcrumb-nav ol {
    display: flex;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: .9rem;
    flex-wrap: wrap;
}

.breadcrumb-nav li::after {
    content: '›';
    margin-left: 8px;
    color: var(--gray-200);
}

.breadcrumb-nav li:last-child::after {
    display: none;
}

.breadcrumb-nav a {
    color: var(--teal);
    text-decoration: none;
    font-weight: 600;
}

.breadcrumb-nav [aria-current] {
    color: var(--gray-600);
}

/* ==============================
   BLOG HERO (listing page)
   ============================== */
.blog-hero {
    background: var(--gradient-main);
    color: #fff;
    padding: 80px 24px;
}

.blog-hero .section-tag {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.blog-hero .section-title,
.blog-hero .section-subtitle {
    color: #fff;
}

.blog-hero .section-subtitle {
    opacity: .85;
}