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

        html {
            scroll-behavior: smooth;
            scrollbar-color: rgb(119, 74, 22) white;
        }

        body {
            font-family: 'Manrope', sans-serif;
            background-color: #fbf9f5;
            color: #1b1c1a;
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Textura de grano sutil */
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image:
                url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' /%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23noise)' opacity='0.02'/%3E%3C/svg%3E");
            pointer-events: none;
            z-index: 0;
        }

        /* HEADER */
        header {
            position: sticky;
            top: 0;
            background: rgba(251, 249, 245, 0.95);
            backdrop-filter: blur(20px);
            padding: 24px 80px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid rgba(232, 230, 224, 0.5);
            z-index: 100;
        }

        .logo {
            font-family: 'Noto Serif', serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: #775928;
            text-decoration: none;
            letter-spacing: 2px;
        }

        nav {
            display: flex;
            gap: 48px;
            align-items: center;
        }

        nav a {
            text-decoration: none;
            color: #5c4620;
            font-size: 0.95rem;
            font-weight: 500;
            transition: color 400ms ease-in-out;
        }

        nav a:hover {
            color: #775928;
        }

        .nav-cta {
            padding: 10px 24px;
            background: linear-gradient(135deg, #775928 0%, #b08d57 100%);
            color: #fbf9f5 !important;
            border-radius: 6px;
            font-weight: 600;
            transition: all 400ms ease-in-out;
        }

        .nav-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0px 12px 24px rgba(78, 69, 58, 0.2);
        }

        /* HAMBURGER MENU */
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 6px;
            z-index: 101;
        }

        .hamburger span {
            width: 28px;
            height: 3px;
            background: #775928;
            transition: all 400ms ease-in-out;
            border-radius: 2px;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(10px, 10px);
        }

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

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }

        /* MOBILE MENU */
        .mobile-menu {
            display: none;
            position: fixed;
            top: 0;
            right: -100%;
            width: 100%;
            height: 100vh;
            background: rgba(251, 249, 245, 0.98);
            backdrop-filter: blur(10px);
            z-index: 99;
            transition: right 400ms ease-in-out;
            padding-top: 120px;
            padding-left: 40px;
        }

        .mobile-menu.active {
            right: 0;
        }

        .mobile-menu a {
            display: block;
            text-decoration: none;
            color: #5c4620;
            font-size: 1.3rem;
            margin-bottom: 32px;
            font-weight: 500;
            transition: color 400ms ease-in-out;
        }

        .mobile-menu a:hover {
            color: #775928;
        }

        .mobile-menu .nav-cta {
            display: inline-block;
            margin-top: 32px;
        }

        /* MAIN CONTENT */
        main {
            position: relative;
            z-index: 1;
        }

        /* HERO SECTION */
        .hero {
            min-height: 100vh;
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 80px;
            align-items: center;
            padding: 100px 80px;
            max-width: 1600px;
            margin: 0 auto;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            right: -20%;
            top: -10%;
            width: 600px;
            height: 600px;
            background: linear-gradient(135deg, rgba(177, 141, 87, 0.08) 0%, rgba(119, 89, 40, 0.04) 100%);
            border-radius: 50%;
            z-index: -1;
        }

        .hero::after {
            content: '';
            position: absolute;
            left: -10%;
            bottom: -15%;
            width: 400px;
            height: 400px;
            background: linear-gradient(135deg, rgba(228, 226, 222, 0.6) 0%, rgba(232, 230, 224, 0.2) 100%);
            border-radius: 50%;
            z-index: -1;
        }

        .hero-content {
            opacity: 0;
            animation: fadeInLeft 1.2s ease-out 0.2s forwards;
        }

        .hero-visual {
            opacity: 0;
            animation: fadeInRight 1.2s ease-out 0.4s forwards;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            height: 500px;
        }

        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-60px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(60px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .welcome-emoji {
            font-size: 56px;
            margin-bottom: 24px;
            display: block;
            animation: float 3s ease-in-out infinite;
        }

        @keyframes float {

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

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

        .hero h1 {
            font-family: 'Noto Serif', serif;
            font-size: 5.5rem;
            font-weight: 700;
            color: #775928;
            line-height: 1;
            margin-bottom: 24px;
            letter-spacing: -3px;
        }

        .hero-subtitle {
            font-family: 'Noto Serif', serif;
            font-size: 1.6rem;
            color: #5c4620;
            font-style: italic;
            margin-bottom: 40px;
            line-height: 1.6;
            font-weight: 400;
        }

        .hero-description {
            font-size: 1.05rem;
            color: #4a4a48;
            line-height: 1.8;
            margin-bottom: 48px;
            max-width: 550px;
        }

        .cta-primary {
            display: inline-block;
            padding: 18px 50px;
            background: linear-gradient(135deg, #775928 0%, #b08d57 100%);
            color: #fbf9f5;
            text-decoration: none;
            font-weight: 600;
            border-radius: 8px;
            transition: all 400ms ease-in-out;
            cursor: pointer;
            border: none;
            font-size: 1rem;
            letter-spacing: 0.5px;
            box-shadow: 0px 20px 40px rgba(78, 69, 58, 0.1);
        }

        .cta-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0px 30px 60px rgba(78, 69, 58, 0.2);
        }

        /* NEW HERO VISUAL */
        .hero-svg-container {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .hero-svg {
            width: 100%;
            max-width: 320px;
            height: auto;
            filter: drop-shadow(0px 40px 80px rgba(119, 89, 40, 0.15));
            animation: hero-float 6s ease-in-out infinite;
        }

        @keyframes hero-float {

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

            50% {
                transform: translateY(-20px) rotate(2deg);
            }
        }


        /* EXPERIENCE SECTION */
        .experience {
            padding: 120px 80px;
            background: #f5f3ef;
            max-width: 1600px;
            margin: 0 auto;
            position: relative;
        }

        .experience::before {
            content: '';
            position: absolute;
            left: -15%;
            top: 50%;
            width: 500px;
            height: 500px;
            background: linear-gradient(135deg, rgba(228, 226, 222, 0.5) 0%, rgba(232, 230, 224, 0.1) 100%);
            border-radius: 50%;
            z-index: 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: 80px;
            position: relative;
            z-index: 1;
        }

        .section-header h2 {
            font-family: 'Noto Serif', serif;
            font-size: 3.5rem;
            color: #775928;
            margin-bottom: 24px;
            font-weight: 700;
            letter-spacing: -1px;
        }

        .section-header p {
            font-size: 1.1rem;
            color: #5c4620;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.8;
            font-style: italic;
        }

        .cards-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            margin-bottom: 80px;
            position: relative;
            z-index: 1;
        }

        .card {
            background: #fbf9f5;
            padding: 48px;
            border-radius: 12px;
            transition: all 400ms ease-in-out;
            opacity: 0;
            animation: slideUp 0.8s ease-out forwards;
            position: relative;
            border: 1px solid rgba(232, 230, 224, 0.3);
        }

        .card:nth-child(1) {
            animation-delay: 0.6s;
        }

        .card:nth-child(2) {
            animation-delay: 0.8s;
        }

        .card:nth-child(3) {
            animation-delay: 1s;
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .card:hover {
            background: linear-gradient(135deg, #fbf9f5 0%, #f5f3ef 100%);
            transform: translateY(-12px);
            box-shadow: 0px 30px 60px rgba(78, 69, 58, 0.12);
            border-color: rgba(177, 141, 87, 0.2);
        }

        .card-icon {
            font-size: 52px;
            margin-bottom: 24px;
            display: flex;
            align-items: center;
            justify-content: flex-start;
            color: #775928;
            animation: hover-float 3s ease-in-out infinite;
        }

        .icon-svg {
            width: 32px;
            height: 32px;
            stroke: currentColor;
            stroke-width: 1.5;
            stroke-linecap: round;
            stroke-linejoin: round;
            fill: none;
        }

        .icon-large {
            width: 48px;
            height: 48px;
        }

        .icon-small {
            width: 20px;
            height: 20px;
            margin-right: 10px;
        }

        @keyframes hover-float {

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

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

        .card h3 {
            font-family: 'Noto Serif', serif;
            font-size: 1.7rem;
            color: #775928;
            margin-bottom: 16px;
            font-weight: 600;
        }

        .card p {
            color: #4a4a48;
            font-size: 0.95rem;
            line-height: 1.8;
        }

        /* CATA SECTION */
        .cata {
            padding: 120px 80px;
            background: #fbf9f5;
            max-width: 1600px;
            margin: 0 auto;
            position: relative;
        }

        .cata::after {
            content: '';
            position: absolute;
            right: -10%;
            bottom: -10%;
            width: 600px;
            height: 600px;
            background: linear-gradient(135deg, rgba(177, 141, 87, 0.08) 0%, transparent 100%);
            border-radius: 50%;
            z-index: 0;
        }

        .cata-header {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 80px;
            align-items: start;
            margin-bottom: 80px;
            position: relative;
            z-index: 1;
        }

        .cata-header h2 {
            font-family: 'Noto Serif', serif;
            font-size: 3.5rem;
            color: #775928;
            line-height: 1.2;
            font-weight: 700;
            margin-bottom: 32px;
            letter-spacing: -1px;
        }

        .cata-intro {
            color: #5c4620;
            font-size: 1.05rem;
            line-height: 1.9;
            padding-top: 20px;
        }

        .details-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
            position: relative;
            z-index: 1;
        }

        .detail-box {
            background: #f5f3ef;
            padding: 40px;
            border-radius: 12px;
            opacity: 0;
            animation: slideUp 0.8s ease-out forwards;
            border: 1px solid rgba(232, 230, 224, 0.3);
            transition: all 400ms ease-in-out;
        }

        .detail-box:nth-child(1) {
            animation-delay: 1.2s;
        }

        .detail-box:nth-child(2) {
            animation-delay: 1.4s;
        }

        .detail-box:nth-child(3) {
            animation-delay: 1.6s;
        }

        .detail-box:nth-child(4) {
            animation-delay: 1.8s;
        }

        .detail-box:hover {
            background: linear-gradient(135deg, #f5f3ef 0%, #fbf9f5 100%);
            border-color: rgba(177, 141, 87, 0.2);
            transform: translateY(-6px);
        }

        .detail-box h4 {
            font-family: 'Noto Serif', serif;
            font-size: 1.5rem;
            color: #775928;
            margin-bottom: 12px;
            font-weight: 600;
        }

        .detail-box p {
            color: #4a4a48;
            font-size: 0.95rem;
            line-height: 1.7;
        }

        /* CTA SECTION */
        .cta-section {
            padding: 120px 80px;
            background: linear-gradient(135deg, #775928 0%, #5c4620 100%);
            text-align: center;
            max-width: 1600px;
            margin: 0 auto;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
            border-radius: 50%;
        }

        .cta-section::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -15%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(0, 0, 0, 0.1) 0%, transparent 70%);
            border-radius: 50%;
        }

        .cta-content {
            position: relative;
            z-index: 1;
        }

        .cta-section h2 {
            font-family: 'Noto Serif', serif;
            font-size: 3.2rem;
            color: #fbf9f5;
            margin-bottom: 24px;
            font-weight: 700;
            letter-spacing: -1px;
        }

        .cta-section p {
            color: #f5f3ef;
            font-size: 1.15rem;
            margin-bottom: 48px;
            line-height: 1.8;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-secondary {
            display: inline-block;
            padding: 16px 48px;
            background: #fbf9f5;
            color: #775928;
            text-decoration: none;
            font-weight: 600;
            border-radius: 8px;
            transition: all 400ms ease-in-out;
            cursor: pointer;
            border: none;
            font-size: 1rem;
        }

        .cta-secondary:hover {
            transform: translateY(-3px);
            box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.3);
        }

        /* FOOTER */
        footer {
            padding: 80px;
            background: #1b1c1a;
            color: #f5f3ef;
        }

        .footer-content {
            max-width: 1600px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 60px;
            margin-bottom: 60px;
        }

        .footer-section h3 {
            font-family: 'Noto Serif', serif;
            font-size: 1.2rem;
            color: #b08d57;
            margin-bottom: 24px;
            font-weight: 600;
        }

        .footer-section p,
        .footer-section a {
            font-size: 0.9rem;
            line-height: 1.8;
            color: #e4e2de;
            text-decoration: none;
            transition: color 400ms ease-in-out;
        }

        .footer-section a:hover {
            color: #b08d57;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section li {
            margin-bottom: 12px;
        }

        .footer-bottom {
            border-top: 1px solid rgba(177, 141, 87, 0.3);
            padding-top: 40px;
            text-align: center;
            color: #a09a8f;
            font-size: 0.9rem;
        }

        /* RESPONSIVE */
        @media (max-width: 1024px) {
            header {
                padding: 20px 40px;
            }

            nav {
                gap: 24px;
            }

            .hero {
                grid-template-columns: 1fr;
                padding: 80px 40px;
                gap: 60px;
            }

            .hero h1 {
                font-size: 4rem;
            }

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

            .experience,
            .cata,
            .cta-section {
                padding: 80px 40px;
            }

            .cata-header {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .footer-content {
                grid-template-columns: repeat(2, 1fr);
                gap: 40px;
            }
        }

        @media (max-width: 768px) {
            header {
                flex-direction: row;
                padding: 20px 24px;
            }

            nav {
                display: none;
            }

            .hamburger {
                display: flex;
            }

            .mobile-menu {
                display: block;
            }

            .hero {
                padding: 60px 24px;
                gap: 40px;
                grid-template-columns: 1fr;
            }

            .hero h1 {
                font-size: 3rem;
            }

            .hero-subtitle {
                font-size: 1.3rem;
            }

            .section-header h2 {
                font-size: 2.5rem;
            }

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

            .hero-visual {
                height: 300px;
            }

            .hero-svg {
                max-width: 240px;
            }

            .experience,
            .cata,
            .cta-section {
                padding: 60px 24px;
            }

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

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

            .cta-section h2 {
                font-size: 2.2rem;
            }
        }