@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=Poppins:wght@300;400;600;700&display=swap');
        
        :root {
            --primary: #8B4513;
            --primary-dark: #5D2906;
            --secondary: #F5DEB3;
            --accent: #D2691E;
            --light: #FFF8E7;
            --dark: #2C1A0A;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--light);
            color: var(--dark);
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4 {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
        }
        
        .container {
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 1rem;
        }
        
        /* Header & Navigation */
        header {
            position: fixed;
            width: 100%;
            z-index: 1000;
            transition: background-color 0.3s ease;
        }
        
        header.scrolled {
            background-color: rgba(44, 26, 10, 0.95);
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
        }
        
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.5rem 0;
        }
        
        .logo {
            display: flex;
            align-items: center;
        }
        
        .logo img {
            height: 60px;
            margin-right: 1rem;
        }
        
        .logo-text {
            color: var(--light);
        }
        
        .logo-text h2 {
            font-size: 1.8rem;
            font-weight: 900;
            letter-spacing: 1px;
            margin-bottom: 0.3rem;
        }
        
        .logo-text p {
            font-size: 0.9rem;
            font-weight: 300;
            color: var(--secondary);
        }
        
        .nav-links {
            display: flex;
            gap: 2rem;
        }
        
        .nav-links a {
            color: var(--light);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
            padding-bottom: 0.3rem;
        }
        
        .nav-links a:hover {
            color: var(--secondary);
        }
        
        .nav-links a::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 0;
            height: 2px;
            background-color: var(--secondary);
            transition: width 0.3s ease;
        }
        
        .nav-links a:hover::after {
            width: 100%;
        }
        
        .mobile-toggle {
            display: none;
            cursor: pointer;
            font-size: 1.5rem;
            color: var(--light);
        }
        
        .cta-button {
            background-color: var(--accent);
            color: var(--light);
            padding: 0.8rem 1.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: 2px solid var(--accent);
        }
        
        .cta-button:hover {
            background-color: transparent;
            color: var(--accent);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(210, 105, 30, 0.3);
        }
        
        /* Hero Section */
        .hero {
            position: relative;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--light);
            overflow: hidden;
        }
        
        .hero-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: -2;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(44, 26, 10, 0.7);
            z-index: -1;
        }
        
        .hero-content {
            max-width: 800px;
            padding: 0 1rem;
        }
        
        .hero h1 {
            font-size: 4.5rem;
            font-weight: 900;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s forwards;
            animation-delay: 0.3s;
        }
        
        .hero p {
            font-size: 1.3rem;
            margin-bottom: 2.5rem;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s forwards;
            animation-delay: 0.6s;
        }
        
        .hero-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s forwards;
            animation-delay: 0.9s;
        }
        
        .secondary-button {
            background-color: transparent;
            color: var(--light);
            padding: 0.8rem 1.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: 2px solid var(--light);
        }
        
        .secondary-button:hover {
            background-color: var(--light);
            color: var(--dark);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
        }
        
        .scroll-down {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            animation: bounce 2s infinite;
            color: var(--light);
            text-decoration: none;
            display: flex;
            flex-direction: column;
            align-items: center;
            opacity: 0;
            animation: fadeIn 1s forwards, bounce 2s 1s infinite;
        }
        
        .scroll-down i {
            font-size: 2rem;
            margin-bottom: 0.5rem;
        }
        
        .scroll-down span {
            font-size: 0.9rem;
            font-weight: 300;
        }
        
        /* About Section */
        .about {
            padding: 8rem 0;
            background-color: var(--light);
        }
        
        .about-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }
        
        .about-image {
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(44, 26, 10, 0.2);
        }
        
        .about-image img {
            width: 100%;
            height: auto;
            display: block;
            transform: scale(1.05);
            transition: transform 0.5s ease;
        }
        
        .about-image:hover img {
            transform: scale(1);
        }
        
        .years-badge {
            position: absolute;
            right: -2rem;
            top: 2rem;
            background-color: var(--primary);
            color: var(--light);
            width: 150px;
            height: 150px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            border-radius: 50%;
            box-shadow: 0 10px 25px rgba(44, 26, 10, 0.3);
            z-index: 1;
        }
        
        .years-badge span:first-child {
            font-size: 3rem;
            font-weight: 700;
            line-height: 1;
        }
        
        .years-badge span:last-child {
            font-size: 1rem;
            font-weight: 400;
        }
        
        .about-content h2 {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            color: var(--primary-dark);
        }
        
        .about-content p {
            margin-bottom: 1.5rem;
            line-height: 1.8;
            font-size: 1.1rem;
        }
        
        .signature {
            font-family: 'Playfair Display', serif;
            font-style: italic;
            font-size: 1.5rem;
            margin-top: 2rem;
            color: var(--primary);
        }
        
        /* Products Section */
        .products {
            padding: 8rem 0;
            background-color: var(--dark);
            color: var(--light);
            position: relative;
        }
        
        .products::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('https://images.unsplash.com/photo-1587241321921-91a834d6d191');
            background-size: cover;
            background-position: center;
            opacity: 0.15;
            z-index: 0;
        }
        
        .products-container {
            position: relative;
            z-index: 1;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }
        
        .section-header h2 {
            font-size: 3rem;
            margin-bottom: 1rem;
            color: #8b4513;
        }
        #productos h2{
            color: white;
        }
        
        .section-header p {
            max-width: 600px;
            margin: 0 auto;
            color: rgba(255, 248, 231, 0.8);
            font-size: 1.1rem;
        }
        
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2.5rem;
        }
        
        .product-card {
            background-color: rgba(255, 248, 231, 0.1);
            border-radius: 10px;
            overflow: hidden;
            transition: all 0.3s ease;
            height: 100%;
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
        }
        
        .product-image {
            height: 250px;
            overflow: hidden;
        }
        
        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .product-card:hover .product-image img {
            transform: scale(1.1);
        }
        
        .product-content {
            padding: 2rem;
        }
        
        .product-content h3 {
            font-size: 1.5rem;
            margin-bottom: 0.8rem;
            color: var(--secondary);
        }
        
        .product-content p {
            margin-bottom: 1.5rem;
            line-height: 1.6;
            color: rgba(255, 248, 231, 0.8);
        }
        
        .product-link {
            display: inline-flex;
            align-items: center;
            color: var(--accent);
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s ease;
        }
        
        .product-link i {
            margin-left: 0.5rem;
            transition: transform 0.3s ease;
        }
        
        .product-link:hover {
            color: var(--secondary);
        }
        
        .product-link:hover i {
            transform: translateX(5px);
        }
        
        /* Process Section */
        .process {
            padding: 8rem 0;
            background-color: var(--light);
        }
        
        .process-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-top: 4rem;
        }
        
        .process-step {
            text-align: center;
            transition: transform 0.3s ease;
        }
        
        .process-step:hover {
            transform: translateY(-10px);
        }
        
        .step-icon {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            background-color: var(--secondary);
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 0 auto 1.5rem;
            position: relative;
            transition: all 0.3s ease;
        }
        
        .process-step:hover .step-icon {
            background-color: var(--primary);
        }
        
        .step-icon i {
            font-size: 3rem;
            color: var(--primary);
            transition: all 0.3s ease;
        }
        
        .process-step:hover .step-icon i {
            color: var(--light);
        }
        
        .step-number {
            position: absolute;
            top: -10px;
            right: -10px;
            width: 40px;
            height: 40px;
            background-color: var(--accent);
            color: var(--light);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-weight: 700;
            font-size: 1.2rem;
            box-shadow: 0 5px 15px rgba(210, 105, 30, 0.3);
        }
        
        .process-step h3 {
            font-size: 1.5rem;
            margin-bottom: 0.8rem;
            color: var(--primary-dark);
        }
        
        .process-step p {
            color: rgba(44, 26, 10, 0.8);
            line-height: 1.6;
        }
        
        /* Gallery Section */
        .gallery {
            padding: 8rem 0;
            background-color: var(--secondary);
            position: relative;
            overflow: hidden;
        }
        
        .gallery::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('https://images.unsplash.com/photo-1608198093002-ad4e005484ec');
            background-size: cover;
            background-position: center;
            opacity: 0.05;
            z-index: 0;
        }
        
        .gallery-container {
            position: relative;
            z-index: 1;
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            grid-auto-rows: 300px;
            gap: 1.5rem;
            margin-top: 4rem;
        }
        
        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 10px 25px rgba(44, 26, 10, 0.15);
            cursor: pointer;
        }
        
        .gallery-item.wide {
            grid-column: span 2;
        }
        
        .gallery-item.tall {
            grid-row: span 2;
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(44, 26, 10, 0.8), transparent);
            opacity: 0;
            transition: opacity 0.3s ease;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 2rem;
            color: var(--light);
        }
        
        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }
        
        .gallery-overlay h3 {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
            transform: translateY(20px);
            transition: transform 0.3s ease;
        }
        
        .gallery-overlay p {
            font-size: 0.9rem;
            transform: translateY(20px);
            transition: transform 0.3s ease;
            transition-delay: 0.1s;
        }
        
        .gallery-item:hover .gallery-overlay h3,
        .gallery-item:hover .gallery-overlay p {
            transform: translateY(0);
        }
        
        /* Testimonials Section */
        .testimonials {
            padding: 8rem 0;
            background-color: var(--primary);
            color: var(--light);
            position: relative;
        }
        
        .testimonials::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('https://images.unsplash.com/photo-1509440159596-0249088772ff');
            background-size: cover;
            background-position: center;
            opacity: 0.1;
            z-index: 0;
        }
        
        .testimonials-container {
            position: relative;
            z-index: 1;
        }
        
        .testimonials-slider {
            position: relative;
            margin-top: 4rem;
            padding: 3rem 0;
        }
        
        .testimonial-card {
            background-color: rgba(255, 248, 231, 0.1);
            border-radius: 10px;
            padding: 3rem;
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
            position: relative;
        }
        
        .quote-icon {
            font-size: 4rem;
            color: var(--secondary);
            opacity: 0.3;
            position: absolute;
            top: -1.5rem;
            left: 2rem;
        }
        
        .testimonial-text {
            font-size: 1.3rem;
            line-height: 1.8;
            margin-bottom: 2rem;
            font-style: italic;
            color: rgba(255, 248, 231, 0.9);
        }
        
        .testimonial-author {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .author-image {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            overflow: hidden;
            margin-bottom: 1rem;
            border: 3px solid var(--secondary);
        }
        
        .author-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .author-name {
            font-family: 'Playfair Display', serif;
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 0.3rem;
            color: var(--secondary);
        }
        
        .author-title {
            font-size: 0.9rem;
            color: rgba(255, 248, 231, 0.7);
        }
        
        .slider-controls {
            display: flex;
            justify-content: center;
            margin-top: 3rem;
            gap: 1rem;
        }
        
        .slider-arrow {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: rgba(255, 248, 231, 0.1);
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            transition: all 0.3s ease;
            color: var(--light);
            font-size: 1.2rem;
        }
        
        .slider-arrow:hover {
            background-color: var(--secondary);
            color: var(--primary);
        }
        
        .slider-dots {
            display: flex;
            gap: 0.5rem;
            margin: 0 1rem;
            align-items: center;
        }
        
        .slider-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background-color: rgba(255, 248, 231, 0.3);
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .slider-dot.active {
            background-color: var(--secondary);
            transform: scale(1.5);
        }
        
        /* Contact Section */
        .contact {
            padding: 8rem 0;
            background-color: var(--light);
            position: relative;
        }
        
        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
        }
        
        .contact-info {
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .contact-info h2 {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            color: var(--primary-dark);
        }
        
        .contact-info p {
            margin-bottom: 2rem;
            line-height: 1.8;
            font-size: 1.1rem;
            color: rgba(44, 26, 10, 0.8);
        }
        
        .contact-detail {
            display: flex;
            align-items: center;
            margin-bottom: 1.5rem;
        }
        
        .contact-icon {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: var(--secondary);
            display: flex;
            justify-content: center;
            align-items: center;
            margin-right: 1rem;
            color: var(--primary);
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }
        
        .contact-detail:hover .contact-icon {
            background-color: var(--primary);
            color: var(--light);
            transform: scale(1.1);
        }
        
        .contact-text {
            flex: 1;
        }
        
        .contact-text h3 {
            font-size: 1.2rem;
            margin-bottom: 0.3rem;
            color: var(--primary-dark);
        }
        
        .contact-text p, .contact-text a {
            color: rgba(44, 26, 10, 0.8);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .contact-text a:hover {
            color: var(--accent);
        }
        
        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 2rem;
        }
        
        .social-link {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background-color: var(--secondary);
            display: flex;
            justify-content: center;
            align-items: center;
            color: var(--primary);
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }
        
        .social-link:hover {
            background-color: var(--primary);
            color: var(--light);
            transform: translateY(-5px);
        }
        
        .map-container {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(44, 26, 10, 0.2);
            height: 100%;
            min-height: 450px;
        }
        
        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }
        
        /* Footer */
        footer {
            background-color: var(--dark);
            color: var(--light);
            padding: 4rem 0 2rem;
        }
        
        .footer-container {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 3rem;
        }
        
        .footer-logo {
            display: flex;
            align-items: center;
            margin-bottom: 1.5rem;
        }
        
        .footer-logo img {
            height: 50px;
            margin-right: 1rem;
        }
        
        .footer-logo-text h3 {
            font-size: 1.5rem;
            font-weight: 900;
            letter-spacing: 1px;
            margin-bottom: 0.3rem;
            color: var(--light);
        }
        
        .footer-logo-text p {
            font-size: 0.8rem;
            font-weight: 300;
            color: var(--secondary);
        }
        
        .footer-about p {
            color: rgba(255, 248, 231, 0.7);
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }
        
        .footer-title {
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            color: var(--secondary);
            position: relative;
            padding-bottom: 0.8rem;
        }
        
        .footer-title::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 2px;
            background-color: var(--accent);
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        
        .footer-links a {
            color: rgba(255, 248, 231, 0.7);
            text-decoration: none;
            transition: color 0.3s ease;
            display: flex;
            align-items: center;
        }
        
        .footer-links a i {
            margin-right: 0.5rem;
            color: var(--accent);
            font-size: 0.8rem;
        }
        
        .footer-links a:hover {
            color: var(--secondary);
            transform: translateX(5px);
        }
        
        .footer-hours {
            display: flex;
            justify-content: space-between;
            color: rgba(255, 248, 231, 0.7);
            margin-bottom: 0.8rem;
        }
        
        .copyright {
            margin-top: 4rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 248, 231, 0.1);
            text-align: center;
            color: rgba(255, 248, 231, 0.5);
            font-size: 0.9rem;
        }
        
        .copyright a {
            color: var(--secondary);
            text-decoration: none;
        }
        
        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: var(--accent);
            color: var(--light);
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 1.2rem;
            z-index: 99;
            opacity: 0;
            visibility: hidden;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(210, 105, 30, 0.3);
        }
        
        .back-to-top.active {
            opacity: 1;
            visibility: visible;
        }
        
        .back-to-top:hover {
            background-color: var(--primary);
            transform: translateY(-5px);
        }
        
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }
        
        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(0) translateX(-50%);
            }
            40% {
                transform: translateY(-20px) translateX(-50%);
            }
            60% {
                transform: translateY(-10px) translateX(-50%);
            }
        }
        
        /* Responsive Styles */
        @media (max-width: 1200px) {
            .hero h1 {
                font-size: 3.5rem;
            }
            
            .footer-container {
                grid-template-columns: 1fr 1fr;
                gap: 2rem;
            }
        }
        
        @media (max-width: 992px) {
            .nav-links {
                display: none;
            }
            
            .mobile-toggle {
                display: block;
            }
            
            .mobile-nav {
                position: fixed;
                top: 0;
                right: -100%;
                width: 80%;
                height: 100vh;
                background-color: var(--dark);
                z-index: 1001;
                padding: 2rem;
                transition: right 0.3s ease;
                display: flex;
                flex-direction: column;
                justify-content: center;
            }
            
            .mobile-nav.active {
                right: 0;
            }
            
            .mobile-nav a {
                color: var(--light);
                text-decoration: none;
                display: block;
                padding: 1rem 0;
                font-size: 1.3rem;
                text-align: center;
                border-bottom: 1px solid rgba(255, 248, 231, 0.1);
                transition: all 0.3s ease;
            }
            
            .mobile-nav a:hover {
                color: var(--secondary);
                background-color: rgba(255, 248, 231, 0.05);
            }
            
            .close-menu {
                position: absolute;
                top: 1rem;
                right: 1rem;
                font-size: 1.5rem;
                color: var(--light);
                cursor: pointer;
            }
            
            .overlay {
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background-color: rgba(0, 0, 0, 0.7);
                z-index: 1000;
                opacity: 0;
                visibility: hidden;
                transition: all 0.3s ease;
            }
            
            .overlay.active {
                opacity: 1;
                visibility: visible;
            }
            
            .about-container, .contact-container {
                grid-template-columns: 1fr;
            }
            
            .about-image {
                margin-bottom: 2rem;
            }
            
            .years-badge {
                right: 2rem;
                top: 2rem;
            }
            
            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .gallery-item.wide {
                grid-column: auto;
            }
        }
        
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero p {
                font-size: 1.1rem;
            }
            
            .hero-buttons {
                flex-direction: column;
                gap: 1rem;
                align-items: center;
            }
            
            .gallery-grid {
                grid-template-columns: 1fr;
            }
            
            .gallery-item.tall {
                grid-row: auto;
            }
            
            .footer-container {
                grid-template-columns: 1fr;
            }
            
            .section-header h2 {
                font-size: 2.5rem;
            }
            
            .about-content h2, .contact-info h2 {
                font-size: 2.5rem;
            }
        }
    


        /* Estilos para el Formulario de Contacto */
.contact-form {
    padding: 8rem 0;
    background-color: var(--primary);
    color: var(--light);
    position: relative;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1509440159596-0249088772ff');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 0;
}

.contact-form-container {
    position: relative;
    z-index: 1;
}

.form-container {
    background-color: rgba(255, 248, 231, 0.1);
    border-radius: 10px;
    padding: 3rem;
    max-width: 800px;
    margin: 4rem auto 0;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid rgba(255, 248, 231, 0.2);
    background-color: rgba(255, 248, 231, 0.1);
    border-radius: 5px;
    color: var(--light);
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 248, 231, 0.5);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 2px rgba(245, 222, 179, 0.3);
}

.form-privacy {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.form-privacy input {
    width: auto;
    margin-top: 0.2rem;
}

.form-privacy label {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: rgba(255, 248, 231, 0.8);
}

.form-privacy a {
    color: var(--secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.form-privacy a:hover {
    color: var(--light);
    text-decoration: underline;
}

.form-submit-btn {
    background-color: var(--accent);
    color: var(--light);
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    margin: 0 auto;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.form-submit-btn:hover {
    background-color: var(--secondary);
    color: var(--primary);
    transform: translateY(-3px);
}

/* Estilos responsivos para el formulario */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .form-container {
        padding: 2rem;
    }
}


@media (max-width: 768px) {
    .hero-video {
        object-fit: cover;
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        z-index: -2;
    }
    
    /* Para dispositivos con pantallas más pequeñas, usar una imagen de fondo como fallback */
    .hero {
        background-image: url('img/3195294-uhd_3840_2160_25fps.jpg'); /* Crea esta imagen como un frame del video */
        background-size: cover;
        background-position: center;
    }
    
    /* Asegurar que el video no tenga controles en móviles */
    video::-webkit-media-controls {
        display: none !important;
    }
}

/* Prevenir el comportamiento de "tap to zoom" en iOS */
.hero {
    touch-action: pan-y;
    -webkit-touch-callout: none;
}