﻿/* Cinzel Local Fonts */
        @font-face {
            font-family: 'Cinzel';
            src: url('Cinzel-Regular.otf') format('opentype');
            font-weight: 400;
        }

        @font-face {
            font-family: 'Cinzel';
            src: url('Cinzel-Bold.otf') format('opentype');
            font-weight: 700;
        }

        @font-face {
            font-family: 'Cinzel';
            src: url('Cinzel-Black.otf') format('opentype');
            font-weight: 900;
        }

        :root {
            --crema: #F5F1EB;
            --lino: #E8E0D5;
            --trigo: #D4C4A8;
            --dorado: #C9A961;
            --caramelo: #8B6F4E;
            --espresso: #3D2B1F;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            background-color: var(--crema);
            color: var(--espresso);
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1, h2, h3, .serif {
            font-family: 'Cormorant Garamond', serif;
        }

        /* Navigation */
        nav {
            position: fixed;
            width: 100%;
            padding: 1.5rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            transition: all 0.4s ease;
            background: transparent;
        }

        nav.scrolled {
            background: rgba(245, 241, 235, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(61, 43, 31, 0.1);
        }

        .logo {
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .brand-logo-img {
            height: 46px;
            width: auto;
            display: block;
            object-fit: contain;
        }

        .nav-links {
            display: flex;
            gap: 2.5rem;
            list-style: none;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--espresso);
            font-size: 0.85rem;
            letter-spacing: 1px;
            text-transform: uppercase;
            position: relative;
            padding-bottom: 5px;
            transition: color 0.3s;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--caramelo);
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            background: linear-gradient(135deg, var(--crema) 0%, var(--lino) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 80%;
            height: 150%;
            background: radial-gradient(circle, rgba(201, 169, 97, 0.1) 0%, transparent 70%);
            animation: pulse 8s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 0.5; }
            50% { transform: scale(1.1); opacity: 0.8; }
        }

        .hero-content {
            text-align: center;
            z-index: 2;
            max-width: 900px;
            padding: 0 2rem;
            animation: fadeInUp 1.2s ease;
        }

        .hero-badge {
            display: inline-block;
            padding: 0.5rem 1.5rem;
            border: 1px solid var(--trigo);
            border-radius: 30px;
            font-size: 0.75rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--caramelo);
            margin-bottom: 2rem;
            background: rgba(255, 255, 255, 0.5);
        }

        .hero h1 {
            display: flex;
            flex-direction: column;
            align-items: center;
            margin-bottom: 1.5rem;
            gap: 0;
        }

        .hero-brand {
            font-family: 'Cinzel', serif;
            font-size: clamp(3.5rem, 10vw, 7rem);
            font-weight: 900;
            line-height: 1;
            color: var(--espresso);
            letter-spacing: 8px;
            text-transform: uppercase;
            display: block;
        }

        .hero-divider {
            display: block;
            width: 80%;
            height: 1px;
            background: linear-gradient(to right, transparent, var(--dorado), transparent);
            margin: 0.6rem auto;
        }

        .hero-tagline {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(1rem, 2.5vw, 1.6rem);
            font-weight: 400;
            font-style: normal;
            color: var(--espresso);
            letter-spacing: 3px;
            text-align: center;
            display: block;
            line-height: 1.6;
        }

        .hero-subtitle {
            font-size: 1.2rem;
            color: var(--caramelo);
            margin-bottom: 3rem;
            font-weight: 300;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-button {
            display: inline-block;
            padding: 1.2rem 3rem;
            background: var(--espresso);
            color: var(--crema);
            text-decoration: none;
            font-size: 0.9rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            border-radius: 50px;
            transition: all 0.4s ease;
            border: 2px solid var(--espresso);
            position: relative;
            overflow: hidden;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: var(--dorado);
            transition: left 0.4s ease;
            z-index: -1;
        }

        .cta-button:hover::before {
            left: 0;
        }

        .cta-button:hover {
            color: var(--espresso);
            border-color: var(--dorado);
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Philosophy Section */
        .philosophy {
            padding: 8rem 5%;
            background: var(--crema);
            position: relative;
        }

        .section-header {
            text-align: center;
            margin-bottom: 5rem;
        }

        .section-tag {
            font-size: 0.8rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--dorado);
            margin-bottom: 1rem;
            display: block;
        }

        .section-title {
            font-size: clamp(2rem, 5vw, 3.5rem);
            font-weight: 400;
            color: var(--espresso);
            margin-bottom: 1rem;
        }

        .philosophy-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .philosophy-card {
            background: rgba(255, 255, 255, 0.6);
            padding: 3rem 2rem;
            border-radius: 20px;
            text-align: center;
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            border: 1px solid rgba(212, 196, 168, 0.3);
            position: relative;
            overflow: hidden;
        }

        .philosophy-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--trigo), var(--dorado));
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .philosophy-card:hover::before {
            transform: scaleX(1);
        }

        .philosophy-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(61, 43, 31, 0.1);
        }

        .card-number {
            font-size: 3rem;
            font-weight: 300;
            color: var(--trigo);
            margin-bottom: 1rem;
            font-family: 'Cormorant Garamond', serif;
        }

        .card-title {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--espresso);
        }

        .card-text {
            color: var(--caramelo);
            line-height: 1.8;
            font-size: 0.95rem;
        }

        /* Señora Pan Fixed Image Section */
        .senora-pan-section {
            height: 70vh;
            background-image: url('../KIT DE MARCA/SEÑORA PAN.png');
            background-attachment: fixed;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
        }

        /* Quote Section */
        .quote-section {
            padding: 6rem 5%;
            background: var(--lino);
            text-align: center;
            position: relative;
        }

        .quote-section::before {
            content: '"';
            font-family: 'Cormorant Garamond', serif;
            font-size: 15rem;
            color: var(--trigo);
            opacity: 0.2;
            position: absolute;
            top: -3rem;
            left: 10%;
            line-height: 1;
        }

        .quote-text {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(1.5rem, 4vw, 2.5rem);
            font-style: italic;
            color: var(--espresso);
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.4;
            position: relative;
            z-index: 2;
        }

        /* Images Row */
        .images-row {
            display: flex;
            gap: 2rem;
            justify-content: center;
            margin: 3rem auto 0;
        }

        /* Marti Image Frame */
        .marti-frame {
            width: 260px;
            border: 1px solid var(--trigo);
            padding: 12px;
            background: transparent;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .marti-img {
            width: 100%;
            height: 320px;
            object-fit: cover;
            display: block;
            filter: grayscale(15%);
        }

        /* Brand Concept */
        .concept {
            padding: 8rem 5%;
            background: var(--crema);
        }

        .concept-intro {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 5rem;
        }

        .concept-intro h3 {
            font-size: 1.8rem;
            color: var(--caramelo);
            font-style: italic;
            margin-bottom: 0.5rem;
        }

        .concept-intro p {
            font-size: 1.3rem;
            color: var(--espresso);
            font-weight: 500;
        }

        .concept-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
            max-width: 1000px;
            margin: 0 auto;
        }

        .concept-item {
            display: flex;
            align-items: flex-start;
            gap: 1.5rem;
            padding: 2rem;
            background: rgba(255, 255, 255, 0.5);
            border-radius: 15px;
            transition: all 0.3s ease;
        }

        .concept-item:hover {
            background: white;
            transform: translateX(10px);
        }

        .concept-letter {
            width: 50px;
            height: 50px;
            background: var(--caramelo);
            color: var(--crema);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.5rem;
            font-weight: 600;
            flex-shrink: 0;
        }

        .concept-content h4 {
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
            color: var(--espresso);
        }

        .concept-content p {
            font-size: 0.9rem;
            color: var(--caramelo);
            line-height: 1.6;
        }

        /* Workshops Section */
        .workshops {
            padding: 8rem 5%;
            background: linear-gradient(180deg, var(--crema) 0%, #efe6d9 100%);
            position: relative;
            overflow: hidden;
        }

        .workshops-bg-shape {
            position: absolute;
            width: 480px;
            height: 480px;
            right: -160px;
            top: -140px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(201, 169, 97, 0.28) 0%, rgba(201, 169, 97, 0) 72%);
            pointer-events: none;
        }

        .workshops-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .workshops-subtitle {
            max-width: 640px;
            margin: 0 auto;
            color: var(--caramelo);
            font-size: 1.05rem;
        }

        .workshops-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 1.5rem;
        }

        .workshop-image {
            width: calc(100% + 4rem);
            margin: -2rem -2rem 1.5rem -2rem;
            height: 200px;
            object-fit: cover;
            border-radius: 20px 20px 0 0;
            display: block;
        }

        .workshop-card {
            background: rgba(255, 255, 255, 0.72);
            border: 1px solid rgba(139, 111, 78, 0.2);
            border-radius: 20px;
            padding: 2rem;
            overflow: hidden;
            box-shadow: 0 12px 30px rgba(61, 43, 31, 0.08);
            transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
            backdrop-filter: blur(2px);
        }

        .workshop-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 24px 44px rgba(61, 43, 31, 0.15);
            border-color: rgba(201, 169, 97, 0.5);
        }

        .workshop-card.featured {
            background: linear-gradient(160deg, rgba(61, 43, 31, 0.95), rgba(139, 111, 78, 0.96));
            color: var(--crema);
            border-color: rgba(201, 169, 97, 0.7);
            transform: translateY(-8px);
        }

        .workshop-card.featured .workshop-level,
        .workshop-card.featured .workshop-desc,
        .workshop-card.featured .workshop-meta {
            color: var(--trigo);
        }

        .workshop-level {
            display: inline-flex;
            align-items: center;
            padding: 0.35rem 0.9rem;
            border-radius: 999px;
            background: rgba(201, 169, 97, 0.2);
            color: var(--caramelo);
            letter-spacing: 1px;
            font-size: 0.72rem;
            text-transform: uppercase;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .workshop-title {
            font-size: 2rem;
            line-height: 1.1;
            margin-bottom: 0.8rem;
        }

        .workshop-desc {
            color: var(--caramelo);
            min-height: 96px;
            margin-bottom: 1.5rem;
        }

        .workshop-meta {
            display: flex;
            justify-content: space-between;
            font-size: 0.82rem;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: var(--caramelo);
            border-top: 1px dashed rgba(139, 111, 78, 0.35);
            padding-top: 1rem;
        }

        .workshops-cta {
            margin-top: 2.5rem;
            text-align: center;
        }

        .workshops-cta p {
            margin-bottom: 1.2rem;
            color: var(--caramelo);
            font-style: italic;
        }

        .workshops-button {
            padding-left: 2.4rem;
            padding-right: 2.4rem;
        }

        /* Products Section */
        .products {
            padding: 7rem 5%;
            background: var(--crema);
        }

        .products-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .products-subtitle {
            max-width: 700px;
            margin: 0 auto;
            color: var(--caramelo);
            font-size: 1.02rem;
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 1.3rem;
        }

        .product-card {
            background: rgba(255, 255, 255, 0.75);
            border: 1px solid rgba(139, 111, 78, 0.2);
            border-radius: 18px;
            padding: 1.6rem;
            box-shadow: 0 10px 24px rgba(61, 43, 31, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
        }

        .product-image {
            width: 100%;
            height: 180px;
            object-fit: cover;
            border-radius: 12px;
            margin-bottom: 1rem;
            border: 1px solid rgba(139, 111, 78, 0.18);
        }

        .product-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 36px rgba(61, 43, 31, 0.14);
            border-color: rgba(201, 169, 97, 0.55);
        }

        .product-card.accent {
            background: linear-gradient(160deg, rgba(61, 43, 31, 0.92), rgba(139, 111, 78, 0.95));
            border-color: rgba(201, 169, 97, 0.6);
        }

        .product-type {
            font-size: 0.72rem;
            text-transform: uppercase;
            letter-spacing: 1.4px;
            color: var(--dorado);
            font-weight: 600;
            margin-bottom: 0.7rem;
        }

        .product-name {
            font-size: 2rem;
            line-height: 1.1;
            margin-bottom: 0.7rem;
            color: var(--espresso);
        }

        .product-note {
            color: var(--caramelo);
            font-size: 0.92rem;
        }

        .product-card.accent .product-name,
        .product-card.accent .product-note {
            color: var(--crema);
        }

        /* Comparison Section - MEJORADA */
        .comparison {
            padding: 8rem 5%;
            background: linear-gradient(to bottom, var(--lino), var(--crema));
            position: relative;
            overflow: hidden;
        }

        .comparison::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d4c4a8' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            opacity: 0.5;
        }

        .comparison-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .comparison-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .comparison-subtitle {
            font-size: 1.1rem;
            color: var(--caramelo);
            margin-top: 1rem;
            font-style: italic;
        }

        .comparison-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: stretch;
        }

        .comparison-card {
            border-radius: 24px;
            overflow: hidden;
            position: relative;
            transition: transform 0.4s ease, box-shadow 0.4s ease;
        }

        .comparison-card:hover {
            transform: translateY(-5px);
        }

        .card-header {
            padding: 2rem;
            text-align: center;
            position: relative;
        }

        .card-header h3 {
            font-size: 1.3rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            margin: 0;
            font-weight: 600;
        }

        .industrial {
            background: rgba(255, 255, 255, 0.6);
            border: 2px solid rgba(139, 111, 78, 0.15);
            box-shadow: 0 10px 40px rgba(61, 43, 31, 0.05);
        }

        .industrial:hover {
            box-shadow: 0 20px 60px rgba(61, 43, 31, 0.1);
        }

        .industrial .card-header {
            background: linear-gradient(135deg, var(--lino) 0%, var(--trigo) 100%);
            color: var(--espresso);
        }

        .industrial .card-header::after {
            content: '✕';
            position: absolute;
            top: 1rem;
            right: 1rem;
            width: 30px;
            height: 30px;
            background: rgba(139, 111, 78, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
            color: var(--caramelo);
        }

        .catale {
            background: var(--espresso);
            color: var(--crema);
            box-shadow: 0 30px 60px rgba(61, 43, 31, 0.4);
            border: 2px solid rgba(201, 169, 97, 0.3);
        }

        .catale:hover {
            box-shadow: 0 40px 80px rgba(61, 43, 31, 0.5);
            transform: translateY(-8px) scale(1.02);
        }

        .catale .card-header {
            background: linear-gradient(135deg, var(--caramelo) 0%, var(--espresso) 100%);
            color: var(--crema);
            position: relative;
            overflow: hidden;
        }

        .catale .card-header::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(201, 169, 97, 0.3) 0%, transparent 70%);
            animation: shimmer 3s ease-in-out infinite;
        }

        @keyframes shimmer {
            0%, 100% { transform: translate(-30%, -30%) rotate(0deg); }
            50% { transform: translate(-20%, -20%) rotate(180deg); }
        }

        .catale .card-header::after {
            content: '✓';
            position: absolute;
            top: 1rem;
            right: 1rem;
            width: 30px;
            height: 30px;
            background: var(--dorado);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
            color: var(--espresso);
            font-weight: bold;
            z-index: 2;
        }

        .card-body {
            padding: 2.5rem;
        }

        .comparison-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
        }

        .comparison-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            padding: 1rem;
            border-radius: 12px;
            transition: all 0.3s ease;
            font-size: 0.95rem;
            line-height: 1.5;
        }

        .industrial .comparison-item {
            background: rgba(139, 111, 78, 0.05);
        }

        .industrial .comparison-item:hover {
            background: rgba(139, 111, 78, 0.1);
        }

        .catale .comparison-item {
            background: rgba(212, 196, 168, 0.1);
            color: var(--crema);
        }

        .catale .comparison-item:hover {
            background: rgba(212, 196, 168, 0.15);
            transform: translateX(5px);
        }

        .icon-wrapper {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.9rem;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .industrial .icon-wrapper {
            background: rgba(139, 111, 78, 0.2);
            color: var(--caramelo);
        }

        .catale .icon-wrapper {
            background: var(--dorado);
            color: var(--espresso);
        }

        .vs-badge {
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            width: 60px;
            height: 60px;
            background: var(--crema);
            border: 3px solid var(--dorado);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--espresso);
            z-index: 10;
            box-shadow: 0 10px 30px rgba(61, 43, 31, 0.2);
        }

        .comparison-footer {
            margin-top: 4rem;
            text-align: center;
            padding: 2rem;
            background: rgba(255, 255, 255, 0.5);
            border-radius: 20px;
            border: 1px solid rgba(212, 196, 168, 0.3);
        }

        .comparison-footer p {
            font-size: 1.1rem;
            color: var(--caramelo);
            font-style: italic;
            max-width: 600px;
            margin: 0 auto;
        }

        .panhuevo-frame {
            margin: 2rem auto 0;
            width: 280px;
            border: 1px solid var(--trigo);
            padding: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .panhuevo-img {
            width: 100%;
            height: 300px;
            object-fit: cover;
            display: block;
        }

        .highlight-text {
            color: var(--espresso);
            font-weight: 600;
        }

        /* Visual Identity */
        .visual-id {
            padding: 6rem 5%;
            background: var(--crema);
        }

        .palette {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin: 3rem 0;
            flex-wrap: wrap;
        }

        .color-swatch {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            font-size: 0.75rem;
            letter-spacing: 1px;
            text-transform: uppercase;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
            border: 2px solid rgba(255,255,255,0.5);
        }

        .color-swatch:hover {
            transform: scale(1.1);
        }

        .swatch-crema { background: var(--crema); color: var(--espresso); }
        .swatch-lino { background: var(--lino); color: var(--espresso); }
        .swatch-trigo { background: var(--trigo); color: var(--espresso); }
        .swatch-dorado { background: var(--dorado); color: var(--espresso); }
        .swatch-caramelo { background: var(--caramelo); color: var(--crema); }
        .swatch-espresso { background: var(--espresso); color: var(--crema); }

        .visual-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            max-width: 1000px;
            margin: 4rem auto 0;
        }

        .visual-feature {
            text-align: center;
        }

        .visual-feature h4 {
            font-size: 1.1rem;
            margin-bottom: 1rem;
            color: var(--caramelo);
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .visual-feature ul {
            list-style: none;
            font-size: 0.9rem;
            color: var(--espresso);
        }

        .visual-feature li {
            padding: 0.5rem 0;
            position: relative;
        }

        .visual-feature li::before {
            content: '—';
            color: var(--dorado);
            margin-right: 0.5rem;
        }

        /* Campaign Section */
        .campaign {
            padding: 8rem 5%;
            background: var(--lino);
            position: relative;
            overflow: hidden;
        }

        .campaign::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(201, 169, 97, 0.15) 0%, transparent 70%);
        }

        .campaign-concept {
            text-align: center;
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.8rem;
            font-style: italic;
            color: var(--caramelo);
            margin: 2rem 0 4rem;
        }

        .timeline {
            max-width: 1000px;
            margin: 0 auto;
            position: relative;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 2px;
            height: 100%;
            background: linear-gradient(to bottom, var(--trigo), var(--dorado), var(--caramelo));
        }

        .timeline-item {
            display: flex;
            justify-content: flex-end;
            padding-right: 50%;
            position: relative;
            margin-bottom: 4rem;
        }

        .timeline-item:nth-child(even) {
            justify-content: flex-start;
            padding-right: 0;
            padding-left: 50%;
        }

        .timeline-content {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            width: 90%;
            box-shadow: 0 10px 30px rgba(61, 43, 31, 0.1);
            position: relative;
            border: 1px solid rgba(212, 196, 168, 0.3);
        }

        .timeline-content::before {
            content: '';
            position: absolute;
            width: 20px;
            height: 20px;
            background: var(--dorado);
            border-radius: 50%;
            top: 50%;
            transform: translateY(-50%);
            border: 4px solid var(--crema);
        }

        .timeline-item:nth-child(odd) .timeline-content::before {
            right: -60px;
        }

        .timeline-item:nth-child(even) .timeline-content::before {
            left: -60px;
        }

        .timeline-phase {
            font-size: 0.8rem;
            color: var(--dorado);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }

        .timeline-title {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
            color: var(--espresso);
        }

        .timeline-months {
            font-size: 0.85rem;
            color: var(--caramelo);
            margin-bottom: 1rem;
            font-style: italic;
        }

        .timeline-desc {
            font-size: 0.9rem;
            color: var(--caramelo);
            line-height: 1.6;
        }

        /* Footer */
        footer {
            background: var(--espresso);
            color: var(--crema);
            padding: 4rem 5% 2rem;
            text-align: center;
        }

        .footer-logo {
            margin-bottom: 1rem;
        }

        .footer-logo-img {
            width: min(280px, 72vw);
            height: auto;
            display: block;
            margin: 0 auto;
            object-fit: contain;
        }

        .footer-tagline {
            font-style: italic;
            color: var(--trigo);
            margin-bottom: 3rem;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 3rem;
            flex-wrap: wrap;
        }

        .footer-links a {
            color: var(--crema);
            text-decoration: none;
            font-size: 0.85rem;
            letter-spacing: 1px;
            text-transform: uppercase;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: var(--dorado);
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin-bottom: 3rem;
        }

        .social-links a {
            width: 45px;
            height: 45px;
            border: 1px solid var(--caramelo);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--crema);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background: var(--dorado);
            border-color: var(--dorado);
            color: var(--espresso);
            transform: translateY(-3px);
        }

        .copyright {
            font-size: 0.8rem;
            color: var(--trigo);
            padding-top: 2rem;
            border-top: 1px solid rgba(212, 196, 168, 0.2);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .brand-logo-img {
                height: 38px;
            }

            .footer-logo-img {
                width: min(220px, 78vw);
            }
            
            .comparison-wrapper {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .vs-badge {
                display: none;
            }
            
            .concept-grid {
                grid-template-columns: 1fr;
            }

            .workshops-grid {
                grid-template-columns: 1fr;
            }

            .workshop-card.featured {
                transform: none;
            }

            .workshop-desc {
                min-height: auto;
            }

            .products-grid {
                grid-template-columns: 1fr;
            }
            
            .timeline::before {
                left: 30px;
            }
            
            .timeline-item,
            .timeline-item:nth-child(even) {
                justify-content: flex-start;
                padding-left: 80px;
                padding-right: 0;
            }
            
            .timeline-content::before,
            .timeline-item:nth-child(even) .timeline-content::before {
                left: -50px;
                right: auto;
            }
        }

        /* Scroll animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        /* WhatsApp Floating Button */
        .whatsapp-float {
            position: fixed;
            bottom: 2rem;
            left: 2rem;
            z-index: 9999;
            display: block;
            width: 60px;
            height: 60px;
            background: none;
            transition: transform 0.2s ease;
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
        }

        .whatsapp-float img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
