@charset "utf-8";
/* CSS Document */

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

        html {
            scroll-behavior: smooth;
            font-size: 93.75%;
        }

        :root {
            --color-bg: #0f0c09;
            --color-bg-alt: #1c1915;
            --color-gradient-start: #1b120c;
            --color-gradient-end: #3a2414;
            --color-panel: rgba(246, 236, 222, 0.03);
            --color-panel-strong: rgba(246, 236, 222, 0.06);
            --color-border: rgba(246, 236, 222, 0.14);
            --color-border-strong: rgba(246, 236, 222, 0.24);
            --color-accent: #d9833f;
            --color-accent-strong: #f2c370;
            --color-accent-dark: #8f5529;
            --color-text-primary: #f7f1e7;
            --color-text-secondary: rgba(247, 241, 231, 0.75);
            --color-text-muted: rgba(247, 241, 231, 0.62);
            --hero-background: radial-gradient(circle at top, rgba(242, 195, 112, 0.12) 0%, transparent 55%), linear-gradient(135deg, var(--color-gradient-start) 0%, var(--color-gradient-end) 100%);
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            overflow-x: hidden;
            position: relative;
            background: var(--color-bg);
            font-size: 1rem;
            line-height: 1.6;
            color: var(--color-text-primary);
        }

        /* Sections */
.section {
            min-height: 100vh;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 120px 20px 80px;
        }

        .hero-section {
            background: var(--hero-background);
        }

        .hero-content {
            max-width: 780px;
            margin: 0 auto;
            text-align: center;
            padding: 40px 20px;
            color: var(--color-text-primary);
        }

        .hero-logo,
        .about-logo {
            display: flex;
            justify-content: center;
            margin-bottom: 35px;
        }

        .hero-logo img,
        .about-logo img {
            width: 320px;
            max-width: 80vw;
            height: auto;
        }

        .hero-section h1 {
            font-size: 2.8rem;
            margin-bottom: 20px;
            line-height: 1.2;
            background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-strong) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-section p {
            font-size: 1.15rem;
            color: var(--color-text-secondary);
            margin-bottom: 45px;
            line-height: 1.8;
        }

        .hero-cta {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        #about,
        #trabaja,
        #formulario,
        #contacto,
        #privacy {
            background: var(--hero-background);
        }

        /* Header Styles */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            height: 60px;
            right: 0;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 40px;
            transition: all 0.3s ease;
            font-family: "Garamond", "Times New Roman", serif;
            z-index: 1000;
            backdrop-filter: blur(22px);
            -webkit-backdrop-filter: blur(22px);
            background: linear-gradient(135deg, rgba(247, 241, 231, 0.12) 0%, rgba(217, 131, 63, 0.1) 45%, rgba(15, 12, 9, 0.25) 100%);
            border-bottom: 1px solid rgba(247, 241, 231, 0.22);
            box-shadow: 0 20px 40px rgba(15, 12, 9, 0.35);
            overflow: hidden;
        }

        .header::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(115deg, rgba(242, 195, 112, 0.15) 0%, rgba(247, 241, 231, 0.05) 50%, rgba(15, 12, 9, 0.18) 100%);
            opacity: 0.85;
            pointer-events: none;
        }

        .header::after {
            content: '';
            position: absolute;
            top: -80%;
            left: -40%;
            width: 60%;
            height: 260%;
            background: radial-gradient(circle at center, rgba(247, 241, 231, 0.18) 0%, transparent 60%);
            transform: rotate(25deg);
            opacity: 0.4;
            pointer-events: none;
        }

        .header > * {
            position: relative;
            z-index: 1;
        }

        .header.scrolled {
            background: linear-gradient(135deg, rgba(217, 131, 63, 0.16) 0%, rgba(15, 12, 9, 0.32) 100%);
            border-bottom-color: rgba(247, 241, 231, 0.26);
            box-shadow: 0 24px 45px rgba(15, 12, 9, 0.4);
            height: 70px;
        }

        .header.scrolled::before {
            opacity: 0.95;
        }

        .header.scrolled::after {
            top: -60%;
            opacity: 0.55;
        }

        .logo-container {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            cursor: pointer;
            transition: transform 0.25s ease;
        }

        .logo-container:hover {
            transform: translateY(-2px);
        }

        .logo {
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .logo svg {
            width: 100%;
            height: 100%;
        }

        .logo img {
            width: 100%;
            height: auto;
            object-fit: contain;
        }

        .logo-text {
            color: var(--color-text-primary);
            font-size: 1.125rem;
            font-weight: 600;
            letter-spacing: 0.8px;
        }

        .main-menu {
            display: flex;
            align-items: center;
            gap: 25px;
        }

        .menu-item {
            color: var(--color-text-muted);
            text-decoration: none;
            font-size: 1rem;
            font-weight: 500;
            transition: all 0.25s ease;
            position: relative;
            padding: 3px 0;
        }

        .menu-item:hover {
            color: var(--color-text-primary);
            transform: translateY(-2px);
        }

        .menu-item::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--color-accent-dark), var(--color-accent-strong));
            transition: width 0.3s ease;
        }

        .menu-item:hover::after {
            width: 100%;
        }

        .menu-item.active {
            color: var(--color-text-primary);
        }

        .menu-item.active::after {
            width: 100%;
        }

        /* Mobile menu toggle */
        .menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 4px;
        }

        .menu-toggle span {
            width: 25px;
            height: 3px;
            background: var(--color-text-primary);
            margin: 3px 0;
            transition: 0.3s;
            border-radius: 2px;
        }

        /* About Section */
        .about-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 20px;
            color: var(--color-text-primary);
        }

        .about-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .about-logo {
            margin-bottom: 35px;
        }

        .about-logo img {
            margin-top: 10px;
        }

        .about-header h2 {
            font-size: 2.25rem;
			margin-top: 30px;
            margin-bottom: 16px;
            background: linear-gradient(135deg, var(--color-accent-dark) 0%, var(--color-accent-strong) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .about-header p {
            font-size: 1.05rem;
            color: var(--color-text-secondary);
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.8;
        }

        .about-main {
            display: flex;
            justify-content: center;
            margin-bottom: 20px;
        }

        .about-info {
            max-width: 720px;
            padding-left: 0;
            text-align: center;
        }

        .about-info h3 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            line-height: 1.3;
            color: var(--color-text-primary);
        }

        .about-info p {
            font-size: 1rem;
            color: var(--color-text-secondary);
            line-height: 1.8;
            margin-bottom: 40px;
        }

        .feature-list {
            list-style: none;
            margin-bottom: 40px;
        }

        .feature-list li {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
            font-size: 1rem;
            color: var(--color-text-primary);
        }

        .feature-list li::before {
            content: '✓';
            display: flex;
            align-items: center;
            justify-content: center;
            width: 30px;
            height: 30px;
            background: linear-gradient(135deg, var(--color-accent-dark) 0%, var(--color-accent-strong) 100%);
            border-radius: 50%;
            flex-shrink: 0;
            color: var(--color-bg);
            font-weight: 700;
        }

        .cta-button {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-strong) 100%);
            color: var(--color-bg);
            text-decoration: none;
            padding: 15px 30px;
            border-radius: 23px;
            font-weight: 600;
            transition: all 0.23s ease;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(217, 131, 63, 0.35);
        }

        .cta-button svg {
            width: 20px;
            height: 20px;
            transition: transform 0.23s ease;
        }

        .cta-button:hover svg {
            transform: translateX(5px);
        }

        .secondary-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 15px 30px;
            border-radius: 23px;
            border: 1px solid rgba(247, 241, 231, 0.35);
            color: var(--color-text-primary);
            text-decoration: none;
            font-weight: 600;
            transition: all 0.23s ease;
        }

        .secondary-button:hover {
            color: var(--color-text-primary);
            border-color: var(--color-accent-strong);
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(242, 195, 112, 0.22);
        }

        /* Contact Section */
        .contact-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px;
            color: var(--color-text-secondary);
        }

        .contact-header {
            text-align: center;
			margin-top: 30px;
            margin-bottom: 50px;
        }

        .contact-header h2 {
            font-size: 2.25rem;
            margin-bottom: 20px;
            background: linear-gradient(135deg, var(--color-accent-dark) 0%, var(--color-accent-strong) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .contact-header p {
            font-size: 1.05rem;
            color: var(--color-text-secondary);
            max-width: 600px;
            margin: 0 auto;
        }

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

        .contact-container.single-column {
            grid-template-columns: 1fr;
            max-width: 640px;
            margin: 0 auto;
        }

        .contact-container.single-column .contact-form {
            margin: 0 auto;
        }

        .contact-info-section {
            padding-right: 20px;
        }

        .contact-info-section h3 {
            font-size: 1.35rem;
            margin-bottom: 20px;
            color: var(--color-text-primary);
        }

        .contact-info-section p {
            font-size: 1rem;
            color: var(--color-text-secondary);
            line-height: 1.6;
            margin-bottom: 20px;
            text-align: justify;
        }

        .contact-details {
            display: flex;
            flex-direction: column;
            gap: 23px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 23px;
            padding: 12px;
            background: var(--color-panel);
            backdrop-filter: blur(12px);
            border: 1px solid var(--color-border);
            border-radius:23px;
            transition: all 0.23s ease;
            text-decoration: none;
            color: inherit;
            cursor: pointer;
        }

        .contact-item:hover {
            background: var(--color-panel-strong);
            transform: translateX(5px);
            box-shadow: 0 12px 30px rgba(217, 131, 63, 0.22);
            border-color: var(--color-border-strong);
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-strong) 100%);
            border-radius: 23px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            padding: 12px;
        }

        .contact-icon svg {
            width: 30px;
            height: auto;
            fill: var(--color-bg);
        }

        .contact-text {
            flex: 1;
            text-align: left;
            padding-left: 16px;
        }

        .contact-text h4 {
            font-size: 0.95rem;
            color: var(--color-text-primary);
            margin-bottom: 5px;
        }

        .contact-text p {
            font-size: 0.95rem;
            color: var(--color-text-secondary);
            margin: 0;
        }

        /* Privacy Section */
        .privacy-content {
            max-width: 960px;
            margin: 0 auto;
            background: var(--color-panel);
            border: 1px solid var(--color-border);
            border-radius: 24px;
            padding: 50px 40px;
            backdrop-filter: blur(16px);
            color: var(--color-text-secondary);
            box-shadow: 0 20px 60px rgba(15, 12, 9, 0.35);
        }

        .privacy-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .privacy-header h1 {
            font-size: 2.5rem;
            margin-bottom: 10px;
            background: linear-gradient(135deg, var(--color-accent-dark) 0%, var(--color-accent-strong) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .privacy-header p {
            font-size: 0.95rem;
            color: var(--color-text-muted);
        }

        .privacy-block + .privacy-block {
            margin-top: 30px;
        }

        .privacy-block h2 {
            font-size: 1.45rem;
            margin-bottom: 12px;
            color: var(--color-text-primary);
        }

        .privacy-block h3 {
            font-size: 1.1rem;
            margin: 18px 0 10px;
            color: var(--color-accent-strong);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .privacy-block p {
            margin-bottom: 14px;
            line-height: 1.7;
        }

        .privacy-block ul,
        .privacy-block ol {
            padding-left: 20px;
            margin-bottom: 14px;
        }

        .privacy-block ul li,
        .privacy-block ol li {
            margin-bottom: 10px;
            line-height: 1.6;
        }

        .privacy-block ul li::marker,
        .privacy-block ol li::marker {
            color: var(--color-accent);
        }

        .privacy-block strong {
            color: var(--color-text-primary);
            font-weight: 600;
        }

        .privacy-block a {
            color: var(--color-accent-strong);
            text-decoration: underline;
            transition: color 0.2s ease;
        }

        .privacy-block a:hover {
            color: var(--color-accent);
        }

        .contact-form-section {
            padding-left: 20px;
        }

        .contact-form {
            background: var(--color-panel);
            backdrop-filter: blur(14px);
            border: 1px solid var(--color-border);
            border-radius: 23px;
            padding: 30px;
        }

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

        .form-group label {
            display: block;
            margin-bottom: 10px;
            color: var(--color-text-primary);
            font-weight: 500;
            font-size: 0.95rem;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 15px;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid var(--color-border);
            border-radius: 10px;
            color: var(--color-text-primary);
            font-size: 0.95rem;
            font-family: inherit;
            transition: all 0.23s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--color-accent-strong);
            background: rgba(242, 195, 112, 0.08);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 150px;
            line-height: 1.5;
        }

        .submit-btn {
            background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-strong) 100%);
            color: var(--color-bg);
            border: none;
            padding: 15px 40px;
            font-size: 1rem;
            font-weight: 600;
            border-radius: 23px;
            cursor: pointer;
            transition: all 0.23s ease;
            width: 60%;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(217, 131, 63, 0.35);
        }

        .submit-btn.is-loading {
            opacity: 0.7;
            cursor: wait;
            transform: none;
            box-shadow: none;
        }

        /* Footer Styles */
        .footer {
            background: rgba(15, 12, 9, 0.95);
            border-top: 1px solid var(--color-border);
            padding: 30px 20px;
            margin-top: 40px;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 30px;
        }

        .footer-copyright {
            color: var(--color-text-muted);
            font-size: 0.875rem;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .footer-copyright a {
            color: var(--color-accent-strong);
            text-decoration: none;
            transition: color 0.23s ease;
        }

        .footer-copyright a:hover {
            color: var(--color-accent);
        }

        .footer-links {
            display: flex;
            gap: 30px;
            align-items: center;
        }

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

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

        /* Scroll to top button */
        /* Mobile Responsive */
        @media (max-width: 1024px) {
            .section {
                padding: 110px 20px 70px;
            }
            .about-main {
                padding: 0 20px;
            }

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

            .feature-list {
                text-align: left;
                max-width: 500px;
                margin: 0 auto 40px;
            }

            /* Contact section responsive */
            .contact-container {
                grid-template-columns: 1fr;
                gap: 50px;
            }

            .contact-info-section {
                padding-right: 0;
            }

            .contact-form-section {
                padding-left: 0;
            }

            .privacy-content {
                padding: 40px 30px;
            }
        }

        @media (max-width: 768px) {
            .section {
                padding: 100px 20px 60px;
            }
            .header {
                padding: 0 20px;
            }

            .hero-logo img {
                width: 260px;
            }

            .hero-section h1 {
                font-size: 2.2rem;
            }

            .hero-section p {
                font-size: 1rem;
            }

            .hero-cta {
                gap: 15px;
            }

            .main-menu {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: rgba(15, 12, 9, 0.96);
                backdrop-filter: blur(16px);
                flex-direction: column;
                padding: 20px;
                gap: 20px;
                border-bottom: 1px solid var(--color-border);
            }

            .main-menu.active {
                display: flex;
            }

            .menu-toggle {
                display: flex;
            }

            .menu-toggle.active span:nth-child(1) {
                transform: rotate(-45deg) translate(-5px, 6px);
            }

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

            .menu-toggle.active span:nth-child(3) {
                transform: rotate(45deg) translate(-5px, -6px);
            }

            .logo-text {
                font-size: 1.05rem;
            }

            .privacy-content {
                padding: 35px 25px;
            }

            .privacy-header h1 {
                font-size: 2.1rem;
            }

            .privacy-block h2 {
                font-size: 1.3rem;
            }

            .about-header h2 {
                font-size: 2rem;
            }

            .about-info h3 {
                font-size: 1.35rem;
            }

            .contact-content h2 {
                font-size: 2rem;
            }

            .footer-content {
                flex-direction: column;
                text-align: center;
                gap: 20px;
            }

            .footer-links {
                gap: 20px;
            }
        }

        @media (max-width: 480px) {
            .section {
                padding: 90px 15px 50px;
            }
            .header {
                height: 70px;
                padding: 0 15px;
            }

            .header.scrolled {
                height: 60px;
            }

            .logo {
                width: 40px;
                height: 40px;
            }

            .logo-text {
                font-size: 0.95rem;
            }

            .hero-content,
            .about-content,
            .contact-content {
                padding: 20px;
            }

            .privacy-content {
                padding: 28px 18px;
            }

            .hero-logo img {
                width: 200px;
            }

            .hero-section h1 {
                font-size: 1.8rem;
            }

            .hero-section p {
                font-size: 0.95rem;
            }

            .hero-cta {
                flex-direction: column;
                gap: 12px;
            }

            .cta-button,
            .secondary-button {
                width: 100%;
                justify-content: center;
            }

            /* Additional contact section mobile optimization for small screens */
            .contact-container {
                gap: 30px;
            }

            .contact-header {
                margin-bottom: 40px;
            }

            .contact-header h2 {
                font-size: 1.8rem;
                margin-bottom: 15px;
            }

            .contact-header p {
                font-size: 0.95rem;
                padding: 0 10px;
            }

            .contact-info-section {
                margin-bottom: 20px;
            }

            .contact-info-section h3 {
                font-size: 1.15rem;
                margin-bottom: 15px;
            }

            .contact-info-section > p {
                font-size: 0.9rem;
                padding: 0 10px;
                margin-bottom: 30px;
            }

            .contact-details {
                gap: 15px;
            }

            .contact-item {
                padding: 15px;
                gap: 12px;
            }

            .contact-icon {
                width: 40px;
                height: 40px;
            }

            .contact-icon svg {
                width: 20px;
                height: 20px;
            }

            .contact-text h4 {
                font-size: 0.85rem;
            }

            .contact-text p {
                font-size: 0.85rem;
                word-break: break-word;
            }

            .contact-form {
                padding: 20px 15px;
                border-radius: 15px;
            }

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

            .form-group label {
                font-size: 0.85rem;
                margin-bottom: 8px;
            }

            .form-group input,
            .form-group textarea {
                padding: 12px;
                font-size: 0.85rem;
                border-radius: 8px;
            }

            .form-group textarea {
                min-height: 120px;
            }

            .submit-btn {
                padding: 12px 30px;
                font-size: 0.95rem;
                border-radius: 25px;
            }

            .privacy-header h1 {
                font-size: 1.8rem;
            }

            .privacy-block h2 {
                font-size: 1.2rem;
            }
        }
