:root {
            /* Colores para modo claro */
            --color-primary: #1e88e5;
            --color-secondary: #42a5f5;
            --color-tertiary: #90caf9;
            --color-opuesto:#060d74;
            --color-accent: #1565c0;
            --color-text: #333;
            --color-text-light: #666;
            --color-bg: #f5f7fa;
            --color-card: #ffffff;
            --color-shadow: rgba(0, 0, 0, 0.1);
            --glass-bg: rgba(255, 255, 255, 0.7);
            --glass-border: rgba(255, 255, 255, 0.3);
            --particle-color: #1e88e5;
            --card-bg: #1a2430;
            --gradient-primary: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
            --gradient-accent: linear-gradient(135deg, var(--secondary), var(--accent));
            --grade-transTime:40deg;


            /* Sombras más definidas */
            --shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            --shadow-hover: 0 15px 35px rgba(0, 0, 0, 0.25);
        }

        [data-theme="dark"] {
            /* Colores para modo oscuro */
            --color-primary: #0d47a1;
            --color-secondary: #1976d2;
            --color-tertiary: #42a5f5;
            --color-opuesto:#000547;
            --color-accent: #90caf9;
            --color-text: #f5f5f5;
            --color-text-light: #e0e0e0;
            --color-bg: #121212;   
            --color-card: #1e1e1e;
            --color-shadow: rgba(0, 0, 0, 0.3);
            --glass-bg: rgba(0, 0, 0, 0.555);
            --glass-border: rgba(255, 255, 255, 0.1);
            --particle-color: #42a5f5;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            transition: background-color 0.3s, color 0.3s;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: var(--color-bg);
            color: var(--color-text);
            overflow-x: hidden;
            line-height: 1.6;
        }
         @import url('https://rsms.me/inter/inter.css');

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

               /* Header y navegación */
        header {
            padding: 1.5rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            background: rgba(var(--card-bg-rgb), 0.9);
            backdrop-filter: blur(10px);
            z-index: 1000;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
        }
        
        .logo {
            display: flex;
            align-items: center;
            font-size: 2rem;
            font-weight: 800;
            color: var(--primary);
            text-decoration: none;
            letter-spacing: 1px;
        }
        
        .logo span {
            color: var(--secondary);
            font-weight: 700;
        }
        
        nav ul {
            display: flex;
            list-style: none;
            gap: 2.5rem;
        }
        
        nav a {
            color: var(--text);
            text-decoration: none;
            font-weight: 600;
            position: relative;
            padding: 0.5rem 0;
            font-size: 1.1rem;
        }
        
        nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--gradient-primary);
            transition: width 0.4s;
        }
        
        nav a:hover::after {
            width: 100%;
        }
        
        .theme-toggle {
            background: var(--card-bg);
            border: 2px solid var(--primary);
            display: block;
            width: 55px;
            height: 28px;
            border-radius: 15px;
            position: relative;
            cursor: pointer;
            box-shadow: var(--shadow);
            margin-left: 1.5rem;
        }
        
        .theme-toggle::before {
            content: '';
            position: absolute;
            top: 3px;
            left: 3px;
            width: 20px;
            height: 20px;
            background: var(--primary);
            border-radius: 50%;
            transition: transform 0.3s;
        }
        
        .dark-mode .theme-toggle::before {
            transform: translateX(25px);
        }
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: var(--text);
            cursor: pointer;
        }
        
        @media (max-width: 768px) {
            nav {
                position: fixed;
                top: 0;
                right: -300px;
                width: 300px;
                height: 100vh;
                background: var(--color-bg);
                padding: 8rem 2rem 2rem;
                transition: right 0.3s;
                z-index: 999;
                box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
            }
            
            nav.active {
                right: 0;
            }
            
            nav ul {
                flex-direction: column;
                gap: 2rem;
            }
            
            .mobile-menu-btn {
                display: block;
                z-index: 1001;
            }
            .hero h1 {
                font-size: 3rem;
            }
            
            .hero p {
                font-size: 1.3rem;
            }
            
            .section {
                padding: 8rem 5%;
            }
            
            .special-section {
                padding: 8rem 5%;
            }
            
            .section-title h2 {
                font-size: 2.8rem;
            }
            
        }

        /* Estilos para el botón de tema */
        .theme-toggle {
            position: relative;
            top: 5px;
            bottom: 50px;
            right: 20px;
            z-index: 1000;
            background: var(--glass-bg);
            backdrop-filter: blur(10px);
            border-radius: 50%;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            border: 1px solid var(--glass-border);
            box-shadow: 0 4px 12px var(--color-shadow);
        }

        .theme-toggle i {
            font-size: 24px;
            color: var(--color-text);
        }

        /* Hero Section */
        .hero {
            position: relative;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        #particles-hero {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
        }

        .blob-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            overflow: hidden;
        }

        .blob {
            position: absolute;
            border-radius: 50%;
            filter: blur(40px);
            z-index: -1;
            animation: blob-animation 10s infinite ease-in-out;
        }

        .blob-1 {
            background: linear-gradient(120deg, var(--color-primary), #251ee5);
            width: 500px;
            height: 500px;
            top: 10%;
            left: 5%;
            animation-delay: 0s;
        }

        .blob-2 {
            background: linear-gradient(60deg,#0d90a1, var(--color-tertiary));
            width: 400px;
            height: 400px;
            bottom: 40%;
            right: 5%;
            animation-delay: 3s;
        }

        .blob-3 {
            background: linear-gradient(240deg, var(--color-tertiary), #0d47a1);
            width: 300px;
            height: 300px;
            top: 50%;
            right: 40%;
            animation-delay: 6s;
        }

        @keyframes blob-animation {
            0%, 100% { transform: rotate(0deg) translate(0, 0) scale(1); }
            25% { transform: rotate(-40deg) translate(50px, 40px) scale(1.3); }
            50% { transform: rotate(50deg) translate(-30px, -30px) scale(0.9); }
            75% { transform: rotate(20deg) translate(40px, -20px) scale(1.05); }
        }

        .hero-content {
            text-align: center;
            padding: 40px;
            background: var(--glass-bg);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            border: 1px solid var(--glass-border);
            max-width: 800px;
            z-index: 10;
            box-shadow: 0 8px 32px var(--color-shadow);
        }

        .hero-content h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 10px;
            background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            line-height: 1.4;
        }

        .hero-content p {
            font-size: 1.5rem;
            color: var(--color-text-light);
            margin-bottom: 30px;
        }

        .btn {
            display: inline-block;
            background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
            color: white;
            padding: 12px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
        }

        /* Sección de servicios */
        /*.services {
            padding: 100px 0;
            position: relative;
        }*/

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title h2 {
            font-size: 2.5rem;
            margin-bottom: 15px;
            background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            position: relative;
        }
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -15px;
            margin-top:15px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 5px;
            background: var(--gradient-primary);
            border-radius: 3px;
        }

        .section-title p {
            padding-top: 15px;
            display: block;
            color: var(--color-text-light);
            max-width: 700px;
            margin: 0 auto;
        }

        /* Para móviles: Grid de 3 columnas */
        /*.services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        

        /* Para escritorio: Cards con acordeón */
        /* @media (min-width: 992px) {
            .services-grid {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
            }
            
            .service-card {
                background: var(--color-card);
                border-radius: 20px;
                overflow: hidden;
                box-shadow: 0 10px 30px var(--color-shadow);
                transition: transform 0.3s;
            }
            
            .service-card:hover {
                transform: translateY(-10px);
            }
            
            .service-card-header {
                background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
                color: white;
                padding: 25px;
                cursor: pointer;
                display: flex;
                align-items: center;
                justify-content: space-between;
            }
            
            .service-card-header h3 {
                font-size: 1.8rem;
                margin: 0;
            }
            
            .service-card-header i {
                font-size: 1.5rem;
                transition: transform 0.3s;
            }
            
            .service-card.active .service-card-header i {
                transform: rotate(180deg);
            }
            
            .service-card-content {
                padding: 0 25px;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.5s ease-out, padding 0.5s ease-out;
            }
            
            .service-card.active .service-card-content {
                max-height: 1000px;
                padding: 25px;
            }
            
            .service-card-content p {
                margin-bottom: 15px;
                color: var(--color-text-light);
            }
            
            .service-card-content ul {
                padding-left: 20px;
                margin-bottom: 20px;
            }
            
            .service-card-content li {
                margin-bottom: 10px;
            }
        }
        */


        .service-icon {
            font-size: 48px;
            margin-bottom: 20px;
            display: inline-block;
            transition: transform 0.3s;
            color:var(--color-accent);
        }
        .service-card{
            background-color: var(--color-bg);
            color: var(--color-text);
        }
        .service-alt{
            background-color: var(--color-primary);
        }

        .service-item {
            border-radius: 15px;
            padding: 30px 60px;
            text-align: center;
            color: rgb(255, 255, 255);
            transition: transform 0.3s, box-shadow 0.3s;
            position: relative;
            overflow: hidden;
            z-index: 1;
            background-color: var(--color-bg);
        }

        .service-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.1);
            z-index: -1;
            opacity: 0;
            transition: opacity 0.3s;
        }

        .service-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }

        .service-item:hover::before {
            opacity: 1;
        }

        .service-item:hover .service-icon {
            transform: scale(1.1);
        }

        .service-item h3 {
            font-size: 1.5rem;
            color: white;
            margin-bottom: 15px;
        }

        .service-item p {
            font-size: 0.9rem;
            color: white;
            opacity: 0.9;
        }

        .text-opuesto{
            color: var(--color-text);
            background-color: var(--card-bg);
        }

        /* Sección de Wedding */
        .wedding-section {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
            color: white;
            position: relative;
        }

        #particles-wedding {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
        }

        .wedding-content {
            position: relative;
            z-index: 10;
            text-align: center;
        }

        .wedding-content h2 {
            font-size: 2.8rem;
            margin-bottom: 20px;
        }

        .wedding-content p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 40px;
            opacity: 0.9;
        }

        .features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .feature {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 30px;
            text-align: center;
            transition: transform 0.3s;
        }

        .feature:hover {
            transform: translateY(-10px);
        }

        .feature i {
            font-size: 48px;
            margin-bottom: 20px;
            color: white;
        }

        .feature h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
        }

        /* Footer */
        footer {
            background: var(--color-card);
            padding: 60px 0 30px;
            position: relative;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-logo {
            font-size: 2rem;
            font-weight: bold;
            margin-bottom: 20px;
            background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .footer-links h3, .footer-contact h3 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: var(--color-primary);
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: var(--color-text-light);
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: var(--color-primary);
        }

        .footer-contact p {
            margin-bottom: 10px;
            color: var(--color-text-light);
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: var(--color-primary);
            color: white;
            border-radius: 50%;
            transition: transform 0.3s, 
            background 0.3s;
        }

        .social-links a:hover {
            transform: translateY(-5px);
            background: var(--color-accent);
        }

        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(0, 0, 0, 0.1);
            color: var(--color-text-light);
            font-size: 0.9rem;
        }

        /* Responsive */
        @media (max-width: 991px) {
            .hero-content h1 {
                font-size: 2.5rem;
            }
            
            .hero-content p {
                font-size: 1.2rem;
            }
            /*
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }*/
        }

        @media (max-width: 767px) {
            .hero-content h1 {
                font-size: 2rem;
            }
            
            .hero-content p {
                font-size: 1rem;
            }
            /*
            .services-grid {
                grid-template-columns: 1fr;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }*/
        }
        
        .modal-content {
            transition: opacity 0.1s ease-in-out, transform 0.3s ease-in-out;
        }
        .accordion-content {
            transition: max-height 0.4s ease-in-out, padding 0.4s ease-in-out;
            max-height: 0;
            overflow: hidden;
        }
        .accordion-content.open {
            max-height: 500px; /* Adjust as needed */
        }
        .chevron {
            transition: transform 0.3s ease-in-out;
        }



        /* Custom styles for smaller screens to make 3x3 grid workable */
        @media (max-width: 767px) {
            .service-card .card-description {
                display: none; /* Hide description on mobile */
            }
            .service-card {
                padding: 1rem; /* Adjust padding for smaller cards */
            }
            .service-card .text-5xl {
                font-size: 3rem; /* Smaller icon on mobile */
            }
            .service-card .text-xl {
                font-size: 1.125rem; /* Smaller title on mobile */
            }
        }

        .portfolio-slide {
            transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
        }
        .portfolio-slide:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        .apears-backdrop {
            transition: opacity 0.3s ease-in-out;
        }
        .apears-content {
            transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;

        }