:root {
            --primary-color: #f5c61c;
            --secondary-color: #fdcf28;
            --dark-color: #1a1a1a;
            --text-color: #333;
            --light-bg: #ffffff;
            --section-bg: #f8f9fa;
            --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            --border-radius: 12px;
        }

        [data-theme="dark"] {
            --text-color: #ffffff;
            --light-bg: #2d2d2d;
            --section-bg: #1a1a1a;
            --shadow: 0 4px 6px rgba(255, 255, 255, 0.1);
        }

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

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--text-color);
            background-color: var(--light-bg);
            transition: all 0.3s ease;
        }

        section[id] {
            scroll-margin-top: 95px;
        }

        /* Header */
        header {
            background: var(--light-bg);
            box-shadow: var(--shadow);
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 5%;
            max-width: 1200px;
            margin: 0 auto;
        }

        .logo {
            height: 60px;
            transition: opacity 0.3s ease;
        }

        .logo-dark {
            display: none;
        }

        [data-theme="dark"] .logo-light {
            display: none;
        }

        [data-theme="dark"] .logo-dark {
            display: block;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-color);
            font-weight: 500;
            transition: color 0.3s ease;
        }

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

        .theme-toggle {
            background: none;
            border: 2px solid var(--primary-color);
            color: var(--primary-color);
            padding: 0.5rem;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }

        .theme-toggle:hover {
            background: var(--primary-color);
            color: var(--light-bg);
        }

        .mobile-menu {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }

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

        /* Notification */
        .notification {
            position: fixed;
            top: 100px;
            right: 20px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            padding: 1rem 1.5rem;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            z-index: 1001;
            transform: translateX(400px);
            transition: transform 0.3s ease;
            opacity: 0;
            visibility: hidden;
        }

        .notification.show {
            transform: translateX(0);
            opacity: 1;
            visibility: visible;
        }

        .notification i {
            margin-right: 0.5rem;
        }

        /* Hero Section */
        .hero {
            position: relative;
            padding: 120px 5% 80px;
            text-align: center;
            color: white;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: url('../imagenes/6.jpeg');
            background-size: cover;
            background-position: center center;
            background-repeat: no-repeat;
            z-index: -2;
        }

        .hero::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.4);
            z-index: -1;
        }

        .hero-content {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
            width: 100%;
        }

        .hero-layout {
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 2rem;
            align-items: center;
            text-align: left;
        }

        .hero-copy {
            max-width: 640px;
        }

        .hero-form-card {
            background: rgba(255, 255, 255, 0.14);
            border: 1px solid rgba(255, 255, 255, 0.35);
            backdrop-filter: blur(6px);
            border-radius: var(--border-radius);
            padding: 1rem;
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
        }

        .hero-form-card h3 {
            margin-bottom: 0.6rem;
            font-size: 1.15rem;
            color: #fff;
            text-align: center;
        }

        .hero-form-iframe {
            width: 100%;
            height: 500px;
            border: none;
            border-radius: 8px;
            background: #fff;
            display: block;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            font-weight: 700;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }

        .hero p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            opacity: 0.9;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
        }

        .cta-button {
            display: inline-block;
            background: var(--primary-color);
            color: white;
            padding: 1rem 2rem;
            text-decoration: none;
            border-radius: var(--border-radius);
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: var(--shadow);
            border: none;
            cursor: pointer;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
            background: var(--secondary-color);
        }

        /* About Section */
        .about {
            padding: 80px 5%;
            background: var(--section-bg);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: var(--dark-color);
        }

        [data-theme="dark"] .section-title {
            color: var(--primary-color);
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .about-content h3 {
            font-size: 2rem;
            margin-bottom: 1rem;
            color: var(--primary-color);
        }

        .about-content p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }

        .features {
            list-style: none;
            margin-top: 2rem;
        }

        .features li {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
            font-size: 1.1rem;
        }

        .features i {
            color: var(--primary-color);
            margin-right: 1rem;
            font-size: 1.2rem;
        }

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

        .about-image img {
            max-width: 100%;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
        }

        /* Fleet Section */
        .fleet {
            padding: 80px 5%;
            background: var(--light-bg);
        }

        .carousel-container {
            position: relative;
            max-width: 1000px;
            margin: 0 auto;
            overflow: hidden;
            border-radius: var(--border-radius);
        }

        .carousel {
            display: flex;
            transition: transform 0.5s ease;
        }

        .carousel-slide {
            min-width: 100%;
            position: relative;
        }

        .carousel-slide img {
            width: 100%;
            height: 400px;
            object-fit: cover;
        }

        .carousel-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0,0,0,0.8));
            color: white;
            padding: 2rem;
            text-align: center;
        }

        .carousel-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.9);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.5rem;
            color: var(--dark-color);
            transition: all 0.3s ease;
        }

        .carousel-nav:hover {
            background: var(--primary-color);
            color: white;
        }

        .carousel-prev {
            left: 20px;
        }

        .carousel-next {
            right: 20px;
        }

        .carousel-dots {
            text-align: center;
            margin-top: 2rem;
        }

        .dot {
            display: inline-block;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #ddd;
            margin: 0 5px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active {
            background: var(--primary-color);
        }

        /* Testimonials */
        .testimonials {
            padding: 80px 5%;
            background: var(--section-bg);
        }

        .testimonials-carousel {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
            overflow: hidden;
            border-radius: var(--border-radius);
        }

        .testimonials-slider {
            display: flex;
            transition: transform 0.5s ease;
        }

        .testimonial {
            min-width: 100%;
            display: flex;
            background: var(--light-bg);
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            overflow: hidden;
        }

        .testimonial-image {
            flex: 1;
            min-height: 400px;
        }

        .testimonial-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .testimonial-content {
            flex: 1;
            padding: 3rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
            text-align: center;
        }

        .stars {
            color: var(--primary-color);
            font-size: 2rem;
            margin-bottom: 2rem;
        }

        .testimonial-content p {
            font-style: italic;
            margin-bottom: 2rem;
            font-size: 1.2rem;
            line-height: 1.6;
        }

        .testimonial-author {
            font-weight: 600;
            color: var(--primary-color);
            font-size: 1.3rem;
        }

        .testimonials-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.9);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.5rem;
            color: var(--dark-color);
            transition: all 0.3s ease;
        }

        .testimonials-nav:hover {
            background: var(--primary-color);
            color: white;
        }

        .testimonials-prev {
            left: 20px;
        }

        .testimonials-next {
            right: 20px;
        }

        .testimonials-dots {
            text-align: center;
            margin-top: 2rem;
        }

        .testimonial-dot {
            display: inline-block;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #ddd;
            margin: 0 5px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .testimonial-dot.active {
            background: var(--primary-color);
        }

        /* Partners Section */
        .partners {
            padding: 80px 5%;
            background: var(--light-bg);
        }

        .partners-carousel {
            max-width: 1100px;
            margin: 0 auto;
            overflow: hidden;
            position: relative;
            padding: 0.5rem 0;
        }

        .partners-track {
            display: flex;
            align-items: center;
            gap: 1.25rem;
            width: max-content;
            animation: partnersScroll 28s linear infinite;
        }

        .partners-carousel:hover .partners-track {
            animation-play-state: paused;
        }

        .partner-logo {
            text-align: center;
            padding: 1.5rem;
            background: var(--section-bg);
            border-radius: var(--border-radius);
            transition: all 0.3s ease;
            height: 120px;
            min-width: 220px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .partner-logo:hover {
            transform: scale(1.05);
            box-shadow: var(--shadow);
        }

        .partner-logo img {
            max-width: 100%;
            max-height: 80px;
            object-fit: contain;
            transition: filter 0.3s ease;
        }

        .partner-logo:hover img {
            filter: brightness(1.1);
        }

        @keyframes partnersScroll {
            from {
                transform: translateX(0);
            }
            to {
                transform: translateX(calc(-50% - 0.625rem));
            }
        }

        /* Contact Section */
        .contact {
            padding: 80px 5%;
            background: var(--section-bg);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            max-width: 1200px;
            margin: 0 auto;
            align-items: start;
        }

        .contact-info {
            width: 100%;
        }

        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 1.5rem;
        }

        .contact-item i {
            color: var(--primary-color);
            font-size: 1.5rem;
            margin-right: 1rem;
            width: 30px;
        }

        /* === ESTILOS EXACTOS DEL FORMULARIO SOLICITADO === */
        /* Forzamos que este bloque se vea igual incluso en modo oscuro */
        .form-container {
            background: white !important;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            width: 100%;
            padding: 40px 30px;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
        }
        
        .form-container * {
            box-sizing: border-box;
        }

        .brand {
            text-align: center;
            margin-bottom: 25px;
        }
        
        .brand h2 { /* Usamos h2 para el titulo Sunshine Rides dentro del form */
            color: #10b981;
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 5px;
            line-height: 1.2;
        }
        
        .brand p {
            color: #666;
            font-size: 13px;
            margin-bottom: 0;
        }

        .form-header {
            text-align: center;
            margin-bottom: 30px;
        }
        
        .form-header h3 { /* Usamos h3 para la pregunta */
            color: #333;
            font-size: 20px;
            font-weight: 600;
            line-height: 1.4;
            margin-bottom: 10px;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            color: #333;
            font-size: 14px;
            font-weight: 500;
            margin-bottom: 8px;
        }
        
        .form-group input {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #d1d5db;
            border-radius: 6px;
            font-size: 14px;
            color: #333;
            background-color: white;
            transition: border-color 0.3s;
        }
        
        .form-group input:focus {
            outline: none;
            border-color: #10b981;
            box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
        }
        
        .form-group input::placeholder {
            color: #9ca3af;
        }
        
        .checkbox-group {
            margin-bottom: 20px;
        }
        
        .checkbox-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 15px;
        }
        
        .checkbox-item input[type="checkbox"] {
            width: 18px;
            height: 18px;
            margin-right: 10px;
            margin-top: 2px;
            cursor: pointer;
            flex-shrink: 0;
        }
        
        .checkbox-item label {
            font-size: 12px;
            color: #666;
            line-height: 1.5;
            cursor: pointer;
            text-align: justify;
        }
        
        .checkbox-item label a {
            color: #10b981;
            text-decoration: none;
            font-weight: 500;
        }
        
        .checkbox-item label a:hover {
            text-decoration: underline;
        }
        
        .submit-btn {
            width: 100%;
            padding: 14px;
            background: #10b981;
            color: white;
            border: none;
            border-radius: 6px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
            box-shadow: none; /* Reset del tema general */
        }
        
        .submit-btn:hover {
            background: #059669;
            transform: none; /* Reset del tema general */
            box-shadow: none;
        }
        
        .submit-btn:disabled {
            background: #9ca3af;
            cursor: not-allowed;
        }
        
        .success-message {
            background: #d1fae5;
            border: 1px solid #10b981;
            color: #065f46;
            padding: 15px;
            border-radius: 6px;
            margin-bottom: 20px;
            text-align: center;
            display: none;
        }
        
        .success-message.show {
            display: block;
        }

        .form-footer {
            text-align: center; 
            margin-top: 20px; 
            font-size: 11px; 
            color: #999;
            line-height: 1.4;
        }

        .form-footer a {
            color: #10b981;
            text-decoration: none;
        }

        /* Footer General Web */
        footer {
            background: var(--dark-color);
            color: white;
            padding: 2rem 5%;
            text-align: center;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-section h3 {
            color: var(--primary-color);
            margin-bottom: 1rem;
        }

        .footer-section a {
            color: white;
            text-decoration: none;
            display: block;
            margin-bottom: 0.5rem;
            transition: color 0.3s ease;
        }

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

        .footer-bottom {
            border-top: 1px solid #444;
            padding-top: 2rem;
            text-align: center;
        }

        /* WhatsApp Button */
        .whatsapp-float {
            position: fixed;
            width: 60px;
            height: 60px;
            bottom: 40px;
            right: 40px;
            background-color: #25d366;
            color: white;
            border-radius: 50px;
            text-align: center;
            font-size: 30px;
            box-shadow: 2px 2px 3px #999;
            z-index: 100;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
            color: white;
        }

        /* Responsive */
        @media (max-width: 768px) {
            nav {
                position: relative;
            }

            .contact-grid {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .form-container {
                padding: 30px 20px;
            }

            .nav-links {
                display: none;
                position: absolute;
                top: calc(100% - 5px);
                left: 0;
                right: 0;
                flex-direction: column;
                gap: 0;
                background: var(--light-bg);
                border-radius: 0 0 var(--border-radius) var(--border-radius);
                box-shadow: var(--shadow);
                overflow: hidden;
                z-index: 1002;
            }

            .nav-links.mobile-open {
                display: flex;
            }

            .nav-links li {
                width: 100%;
                border-bottom: 1px solid rgba(0, 0, 0, 0.08);
            }

            [data-theme="dark"] .nav-links li {
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }

            .nav-links li:last-child {
                border-bottom: none;
            }

            .nav-links a {
                display: block;
                padding: 0.85rem 1rem;
            }

            .mobile-menu {
                display: flex;
                padding: 0.25rem;
            }

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

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

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

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

            .hero p {
                font-size: 1.1rem;
            }

            .hero {
                min-height: auto;
                padding: 120px 5% 60px;
            }

            .hero-layout {
                grid-template-columns: 1fr;
                gap: 1.5rem;
                text-align: center;
            }

            .hero-copy {
                max-width: 100%;
            }

            .hero-form-card {
                padding: 0.75rem;
            }

            .hero-form-iframe {
                height: 500px;
            }

            .about-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
                text-align: center;
            }

            .about-content {
                order: 2;
            }

            .about-image {
                order: 1;
                margin-bottom: 1rem;
            }

            .about-content h3 {
                font-size: 1.8rem;
                margin-bottom: 1.5rem;
            }

            .about-content p {
                font-size: 1rem;
                margin-bottom: 1.2rem;
                text-align: left;
            }

            .about-content h4 {
                font-size: 1.3rem !important;
                text-align: center;
                margin-top: 1.5rem !important;
                margin-bottom: 1rem !important;
            }

            .features {
                margin-top: 1.5rem;
                text-align: left;
            }

            .features li {
                font-size: 1rem;
                margin-bottom: 0.8rem;
                padding: 0.5rem;
                background: var(--section-bg);
                border-radius: 8px;
                border-left: 4px solid var(--primary-color);
            }

            .testimonial {
                flex-direction: column;
            }

            .testimonial-image {
                min-height: 250px;
            }

            .testimonial-content {
                padding: 2rem;
            }

            .partner-logo {
                min-width: 170px;
                height: 100px;
                padding: 1rem;
            }

            .carousel-nav,
            .testimonials-nav {
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
            }

            .carousel-prev,
            .testimonials-prev {
                left: 10px;
            }

            .carousel-next,
            .testimonials-next {
                right: 10px;
            }

            .whatsapp-float {
                width: 50px;
                height: 50px;
                bottom: 20px;
                right: 20px;
                font-size: 25px;
            }

            .notification {
                right: 10px;
                left: 10px;
                transform: translateY(-100px);
            }

            .notification.show {
                transform: translateY(0);
            }
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in-up {
            animation: fadeInUp 0.6s ease forwards;
        }

