 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        :root {
            --primary: #8b7e6f;
            --secondary: #a89b8c;
            --accent: #d4c8bb;
            --dark: #4a453f;
            --light: #f5f3f0;
            --white: #ffffff;
            --gray: #8a8580;
        }
        
        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: var(--dark);
            overflow-x: hidden;
        }
        .c_text_negro
        {
            color: black !important;
        }
        
        /* Header */
        /* Header */
        header {
            background: rgb(236, 233, 228);
            backdrop-filter: blur(10px);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 15px rgba(0,0,0,0.08);
        }
        
        nav {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 3rem;
        }
        
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--primary);
            letter-spacing: 2px;
        }
        
        .nav-menu {
            display: flex;
            gap: 2.5rem;
            list-style: none;
        }
        
        .nav-menu a {
            color: var(--dark);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: color 0.3s;
        }
        
        .nav-menu a:hover {
            color: var(--primary);
        }
        
        .cta-nav {
            background: var(--primary);
            color: white !important;
            padding: 0.7rem 1.8rem;
            border-radius: 30px;
            transition: all 0.3s;
        }
        
        .cta-nav:hover {
            background: var(--secondary);
            transform: translateY(-2px);
        }
        
        .menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
        }
        
        .menu-toggle span {
            width: 28px;
            height: 3px;
            background: var(--primary);
            transition: all 0.3s;
            border-radius: 3px;
        }
        
        .menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }
        
        .menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }
        
        .menu-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }
        
        /* Hero */
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            text-align: center;
            color: white;
            overflow: hidden;
        }
        
        .hero-slider {
            position: absolute;
            inset: 0;
        }
        
        .hero-slide {
            position: absolute;
            inset: 0;
            opacity: 0;
            transition: opacity 1.5s ease-in-out;
        }
        
        .hero-slide.active {
            opacity: 1;
        }
        
        .hero-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }
        
        .hero-slide::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
            z-index: 1;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 900px;
            padding: 2rem;
        }
        
        .hero h1 {
            font-size: 4.5rem;
            font-weight: 300;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            letter-spacing: 3px;
        }
        
        .hero h1 strong {
            font-weight: 600;
        }
        
        .hero p {
            font-size: 1.4rem;
            margin-bottom: 3rem;
            font-weight: 300;
            letter-spacing: 1px;
        }
        
        .hero-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .hero-indicators {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 12px;
            z-index: 10;
        }
        
        .hero-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.4);
            cursor: pointer;
            transition: all 0.3s;
            border: 2px solid white;
        }
        
        .hero-dot.active {
            background: white;
            width: 40px;
            border-radius: 6px;
        }
        
        .btn {
            padding: 1.2rem 3rem;
            text-decoration: none;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            transition: all 0.3s;
            display: inline-block;
            letter-spacing: 1px;
            text-transform: uppercase;
        }
        
        .btn-light {
            background: white;
            color: var(--dark);
        }
        
        .btn-light:hover {
            background: var(--light);
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }
        
        .btn-outline {
            background: transparent;
            color: white;
            border: 2px solid white;
        }
        
        .btn-outline:hover {
            background: white;
            color: var(--dark);
        }
        
        /* Services Section */
        .services-intro {
            padding: 100px 3rem;
            background: white;
            text-align: center;
        }
        
        .container {
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .section-label {
            color: var(--primary);
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-weight: 600;
            margin-bottom: 1rem;
        }
        
        .section-title {
            font-size: 3rem;
            color: var(--dark);
            margin-bottom: 1.5rem;
            font-weight: 300;
        }
        
        .section-description {
            font-size: 1.2rem;
            color: var(--gray);
            max-width: 700px;
            margin: 0 auto 4rem;
            line-height: 1.8;
        }
        
        /* Services Grid */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 0;
            margin-top: 4rem;
        }
        
        .service-item {
            position: relative;
            overflow: hidden;
            aspect-ratio: 1;
            cursor: pointer;
        }
        
        .service-bg {
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--accent), var(--primary));
            background-size: cover;
            background-position: center;
            transition: transform 0.5s;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 5rem;
        }
        
        .service-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 2.5rem;
            color: white;
            transition: all 0.3s;
        }
        
        .service-item:hover .service-overlay {
            background: rgba(139, 126, 111, 0.85);
        }
        
        .service-item:hover .service-bg {
            transform: scale(1.1);
        }
        
        .service-overlay h3 {
            font-size: 1.8rem;
            margin-bottom: 0.5rem;
            font-weight: 400;
        }
        
        .service-overlay p {
            font-size: 0.95rem;
            opacity: 0.9;
        }
        
        /* About Section */
        .about-section {
            padding: 100px 3rem;
            background: var(--light);
        }

        .about-wrapper {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
        }

        .about-image {
            position: relative;
            overflow: hidden;
        }

        .about-image img {
            width: 100%;
            aspect-ratio: 3/4;
            object-fit: cover;
            object-position: center;
            display: block;
        }

        .about-image::before {
            content: '';
            position: absolute;
            top: -15px;
            left: -15px;
            width: 100%;
            height: 100%;
            border: 2px solid var(--primary);
            z-index: 0;
        }

        .about-image img {
            position: relative;
            z-index: 1;
        }

        .about-subtitle {
            color: var(--primary);
            font-size: 1rem;
            letter-spacing: 1px;
            margin-bottom: 2rem;
            font-style: italic;
        }

        .about-text {
            color: var(--gray);
            font-size: 1.1rem;
            line-height: 1.9;
            margin-bottom: 1.5rem;
        }

        .about-courses {
            margin-top: 1.5rem;
            margin-bottom: 1rem;
        }

        .about-courses-title {
            color: var(--primary);
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .about-courses-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem;
        }

        .about-courses-grid span {
            background: white;
            border: 1px solid var(--accent);
            color: var(--gray);
            font-size: 0.85rem;
            padding: 0.4rem 1rem;
            letter-spacing: 0.5px;
        }

        .about-badges {
            display: flex;
            gap: 2rem;
            margin-top: 2.5rem;
            padding-top: 2.5rem;
            border-top: 1px solid var(--accent);
        }

        .about-badge {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .badge-number {
            font-size: 2rem;
            font-weight: 300;
            color: var(--primary);
            line-height: 1;
        }

        .badge-label {
            font-size: 0.8rem;
            color: var(--gray);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-top: 0.4rem;
        }

        @media (max-width: 968px) {
            .about-wrapper {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .about-image::before {
                display: none;
            }

            .about-image {
                max-width: 100%;
                width: 100%;
            }

            .about-image img {
                width: 100%;
                max-width: 100%;
                height: auto;
                aspect-ratio: 3/4;
            }

            .about-badges {
                justify-content: space-around;
            }
        }

        @media (max-width: 600px) {
            .about-section {
                padding: 60px 1.5rem;
            }

            .about-image {
                max-width: 100%;
                width: 100%;
                overflow: hidden;
            }

            .about-image img {
                width: 100%;
                max-width: 100%;
                height: auto;
                aspect-ratio: auto;
                object-fit: cover;
            }

            .about-badges {
                gap: 1rem;
                flex-wrap: wrap;
            }

            .about-text {
                font-size: 1rem;
            }
        }

        @media (max-width: 380px) {
            .about-section {
                padding: 50px 1rem;
            }

            .about-image img {
                width: 100%;
                height: auto;
            }

            .badge-number {
                font-size: 1.5rem;
            }

            .badge-label {
                font-size: 0.7rem;
            }
        }

        /* Carousel Section */
        .packages-section {
            padding: 100px 3rem;
            background: var(--light);
        }
        
        .carousel-container {
            max-width: 1400px;
            margin: 4rem auto 0;
            position: relative;
        }
        
        .carousel-wrapper {
            overflow: hidden;
            padding: 2rem 0 3rem;
        }
        
        .carousel-track {
            display: flex;
            gap: 2rem;
        }
        
        .carousel-track.transitioning {
            transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }
        
        .package-card {
            min-width: 320px;
            max-width: 320px;
            flex-shrink: 0;
            background: white;
            border-radius: 0;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            transition: all 0.3s;
        }
        
        .package-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.15);
        }
        
        .package-image {
            height: 220px;
            background: linear-gradient(135deg, var(--accent), var(--primary));
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0;
            position: relative;
            overflow: hidden;
        }
        
        .package-badge {
            position: absolute;
            top: 20px;
            left: 20px;
            background: white;
            color: var(--dark);
            padding: 0.6rem 1.5rem;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
        }
        
        .package-content {
            padding: 2rem;
        }
        
        .package-card h3 {
            font-size: 1.5rem;
            color: var(--dark);
            margin-bottom: 1rem;
            font-weight: 400;
        }
        
        .package-card p {
            color: var(--gray);
            margin-bottom: 2rem;
            line-height: 1.8;
        }
        
        .package-features {
            list-style: none;
            margin-bottom: 2rem;
            padding-bottom: 2rem;
            border-bottom: 1px solid var(--accent);
        }
        
        .package-features li {
            padding: 0.8rem 0;
            color: var(--gray);
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        
        .package-features li::before {
            content: '✓';
            color: var(--primary);
            font-weight: bold;
            font-size: 1.2rem;
            width: 20px;
        }
        
        .package-price {
            font-size: 2.2rem;
            color: var(--primary);
            font-weight: 300;
            margin-bottom: 2rem;
        }
        
        .package-price span {
            font-size: 1rem;
            color: var(--gray);
        }
        
        .btn-primary {
            background: var(--primary);
            color: white;
            width: 100%;
            text-align: center;
            padding: 1.2rem;
        }
        
        .btn-primary:hover {
            background: var(--secondary);
        }
        
        .carousel-controls {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-top: 3rem;
        }
        
        .carousel-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: white;
            color: var(--primary);
            border: 2px solid var(--primary);
            font-size: 1.5rem;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .carousel-btn:hover {
            background: var(--primary);
            color: white;
        }
        
        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 0.6rem;
            margin-top: 2rem;
        }
        
        .dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(196, 165, 123, 0.3);
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .dot.active {
            background: var(--primary);
            width: 30px;
            border-radius: 5px;
        }
        
        /* Gallery */
        .gallery {
            padding: 100px 3rem;
            background: white;
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 1.5rem;
            margin-top: 4rem;
        }

        @media (max-width: 768px) {
            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 0.8rem;
            }
        }

        @media (max-width: 480px) {
            .gallery-grid {
                grid-template-columns: 1fr;
                gap: 0.8rem;
            }
        }
        
        .gallery-item {
            aspect-ratio: 4/5;
            overflow: hidden;
            position: relative;
            cursor: pointer;
        }
        
        .gallery-img {
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--accent), var(--primary));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 5rem;
            transition: transform 0.5s;
        }
        
        .gallery-item:hover .gallery-img {
            transform: scale(1.1);
        }
        
        .gallery-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
            padding: 2rem;
            color: white;
            transform: translateY(100%);
            transition: transform 0.3s;
        }
        
        .gallery-item:hover .gallery-caption {
            transform: translateY(0);
        }
        
        .gallery-caption h4 {
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
            font-weight: 400;
        }

        /* Video Section */
        .video-section {
            padding: 100px 3rem;
            background: var(--dark);
            text-align: center;
        }

        .video-section .section-title {
            color: white;
        }

        .video-section .section-description {
            color: var(--accent);
        }

        .video-wrapper {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
        }

        .video-wrapper video {
            width: 100%;
            height: auto;
            display: block;
            outline: none;
        }

        @media (max-width: 600px) {
            .video-section {
                padding: 60px 1.5rem;
            }
        }
        
        /* Testimonials */
        .testimonials {
            padding: 100px 3rem;
            background: var(--dark);
            color: white;
        }
        
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 3rem;
            margin-top: 4rem;
        }

        @media (max-width: 768px) {
            .testimonials-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .testimonial-card {
                padding: 2rem;
            }

            .testimonials {
                padding: 60px 1.5rem;
            }
        }
        
        .testimonial-card {
            background: rgba(255,255,255,0.05);
            padding: 3rem;
            border-left: 3px solid var(--primary);
        }
        
        .testimonial-text {
            font-size: 1.1rem;
            line-height: 1.9;
            margin-bottom: 2rem;
            font-style: italic;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        
        .testimonial-avatar {
            width: 50px;
            height: 50px;
            min-width: 50px;
            min-height: 50px;
            border-radius: 50%;
            background: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.2rem;
            color: white;
        }
        
        .testimonial-info h5 {
            font-size: 1.1rem;
            font-weight: 400;
        }
        
        .testimonial-info p {
            font-size: 0.9rem;
            opacity: 0.7;
        }
        
        /* Contact */
        .contact {
            padding: 100px 3rem;
            background: var(--light);
        }
        
        .contact-wrapper {
            max-width: 1200px;
            margin: 4rem auto 0;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
        }
        
        .contact-info h3 {
            font-size: 2rem;
            margin-bottom: 2rem;
            font-weight: 400;
        }
        
        .contact-item {
            margin-bottom: 2.5rem;
        }
        
        .contact-item h4 {
            color: var(--primary);
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }
        
        .contact-item p {
            color: var(--gray);
            font-size: 1.1rem;
        }
        
        .contact-item a {
            color: var(--dark);
            text-decoration: none;
            font-size: 1.3rem;
            font-weight: 500;
            transition: color 0.3s;
        }
        
        .contact-item a:hover {
            color: var(--primary);
        }
        
        .contact-form-wrapper {
            background: white;
            padding: 3rem;
        }
        
        .contact-form h3 {
            font-size: 2rem;
            margin-bottom: 2rem;
            font-weight: 400;
        }
        
        .form-group {
            margin-bottom: 2rem;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--gray);
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 1rem;
            border: 1px solid #ddd;
            border-radius: 0;
            font-size: 1rem;
            font-family: Arial, sans-serif;
            transition: border-color 0.3s;
        }
        
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--primary);
        }
        
        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }
        
        /* Responsive */
        @media (max-width: 968px) {
            .menu-toggle {
                display: flex;
            }
            
            .nav-menu {
                position: fixed;
                left: -100%;
                top: 70px;
                flex-direction: column;
                background: white;
                width: 100%;
                text-align: center;
                transition: left 0.3s;
                padding: 2rem 0;
                gap: 0;
                box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            }
            
            .nav-menu.active {
                left: 0;
            }
            
            .nav-menu li {
                padding: 1.5rem 0;
            }
            
            .hero h1 {
                font-size: 3rem;
            }
            
            .hero p {
                font-size: 1.2rem;
            }
            
            .package-card {
                min-width: 320px;
            }
            
            .contact-wrapper {
                grid-template-columns: 1fr;
            }
            
            .services-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        
        @media (max-width: 600px) {
            .services-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 380px) {
            .package-card {
                min-width: 260px;
                max-width: 260px;
            }

            .package-content {
                padding: 1.2rem;
            }

            .package-card h3 {
                font-size: 1.2rem;
            }

            .package-card p {
                font-size: 0.85rem;
            }

            .package-features li {
                font-size: 0.85rem;
                padding: 0.5rem 0;
            }

            .package-image {
                height: 180px;
            }

            .hero h1 {
                font-size: 2.2rem;
                letter-spacing: 1px;
            }

            .hero p {
                font-size: 1rem;
            }

            .btn {
                padding: 1rem 1.8rem;
                font-size: 0.85rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .section-description {
                font-size: 1rem;
            }

            nav {
                padding: 0 1.2rem;
            }
        }