        :root {
            --color-primary: #e8d0c0;
            --color-secondary: #d0b49f;
            --color-accent: #a38164;
            --color-dark: #6d5e53;
            --color-light: #f8f3ee;
            --color-white: #ffffff;
            --color-text: #4a3f35;
            --font-cursive: 'Great Vibes', cursive;
            --font-cursive-alt: 'Tangerine', cursive;
            --font-sans: 'Montserrat', sans-serif;
        }

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

        body {
            font-family: var(--font-sans);
            color: var(--color-text);
            line-height: 1.6;
            background-color: var(--color-light);
        }

        h1, h2, h3, h4 {
            font-family: var(--font-sans);
            font-weight: normal;
            color: var(--color-dark);
        }

        h1 {
            font-size: 4rem;
            margin-bottom: 1rem;
        }

        h2 {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            text-align: center;
        }

        h3 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        p {
            margin-bottom: 1rem;
        }

        a {
            color: var(--color-accent);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        a:hover {
            color: var(--color-dark);
        }

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

        .btn {
            display: inline-block;
            padding: 0.8rem 2rem;
            background-color: var(--color-accent);
            color: var(--color-white);
            border: none;
            border-radius: 30px;
            font-family: var(--font-sans);
            font-weight: 500;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
        }

        .btn:hover {
            background-color: var(--color-dark);
            color: var(--color-white);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .btn-outline {
            background-color: transparent;
            border: 2px solid var(--color-accent);
            color: var(--color-accent);
        }

        .btn-outline:hover {
            background-color: var(--color-accent);
            color: var(--color-white);
        }

        /* Header & Navigation */
        header {
            background-color: var(--color-white);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 100;
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 2rem;
        }

        .logo {
            font-family: var(--font-cursive);
            font-size: 2rem;
            color: var(--color-dark);
        }

        .nav-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--color-dark);
            cursor: pointer;
        }

        .nav-menu {
            display: flex;
            list-style: none;
        }

        .nav-menu li {
            margin-left: 2rem;
        }

        .nav-menu a {
            color: var(--color-dark);
            font-weight: 500;
            font-size: 1rem;
            position: relative;
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--color-accent);
            transition: width 0.3s ease;
        }

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

        /* Hero Section */
        .hero {
            height: 100vh;
            background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('/api/placeholder/1920/1080');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            text-align: center;
            color: var(--color-white);
            margin-top: 76px;
        }

        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            padding: 2rem;
        }

        .hero h1 {
            font-size: 5rem;
            color: var(--color-white);
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .hero p {
            font-size: 1.9rem;
            margin-bottom: 2rem;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
        }

        /* Sections */
        section {
            padding: 5rem 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-subtitle {
            font-family: var(--font-sans);
            font-size: 1.2rem;
            color: var(--color-accent);
            text-transform: uppercase;
            letter-spacing: 2px;
            display: block;
            margin-bottom: 0.5rem;
        }

        /* Messages Section */
        .messages {
            background-color: var(--color-white);
        }

        .messages-container {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
        }

        .messages-content, .messages-image {
            flex: 1 1 500px;
            padding: 2rem;
        }

        .messages-image img {
            width: 100%;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        /* RSVP Section */
        .rsvp {
            background-color: var(--color-light);
        }

        .rsvp-container {
            display: flex;
            flex-direction: row-reverse;
            align-items: center;
            flex-wrap: wrap;
        }

        .rsvp-content, .rsvp-image {
            flex: 1 1 500px;
            padding: 2rem;
        }

        .rsvp-image img {
            width: 100%;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        /* Features Section */
        .features {
            background-color: var(--color-white);
            text-align: center;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .feature-item {
            padding: 2rem;
            background-color: var(--color-light);
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }

        .feature-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .feature-icon {
            font-size: 3rem;
            color: var(--color-accent);
            margin-bottom: 1rem;
        }

        .feature-title {
            font-family: var(--font-sans);
            font-size: 1.5rem;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        /* Templates Section */
        .templates {
            background-color: var(--color-light);
        }

        .templates-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .template-item {
            background-color: var(--color-white);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }

        .template-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .template-image {
            height: 510px;
            overflow: hidden;
        }

        .template-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .template-item:hover .template-image img {
            transform: scale(1.1);
        }

        .template-content {
            padding: 1.5rem;
            text-align: center;
        }

        .template-title {
            font-family: var(--font-cursive-alt);
            font-size: 2rem;
            margin-bottom: 1rem;
        }

        /* Packages Section */
        .packages {
            background-color: var(--color-white);
        }

        .packages-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 2rem;
        }

        .package-item {
            flex: 1 1 350px;
            background-color: var(--color-light);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            position: relative;
        }

        .package-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .package-header {
            background-color: var(--color-accent);
            color: var(--color-white);
            padding: 2rem;
            text-align: center;
        }

        .package-header h3 {
            color: var(--color-white);
            font-size: 2.5rem;
        }

        .package-price {
            font-size: 2rem;
            font-weight: 600;
            font-family: var(--font-sans);
        }

        .package-features {
            padding: 2rem;
        }

        .package-features ul {
            list-style: none;
            margin-bottom: 2rem;
        }

        .package-features li {
            padding: 0.5rem 0;
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
            display: flex;
            align-items: center;
        }

        .package-features li i {
            color: var(--color-accent);
            margin-right: 0.5rem;
        }

        .package-features li.unavailable {
            color: #aaa;
            text-decoration: line-through;
        }

        .package-features li.unavailable i {
            color: #aaa;
        }

        .package-btn {
            text-align: center;
            padding: 0 2rem 2rem;
        }

        /* Testimonials Section */
        .testimonials {
            background-color: var(--color-light);
        }

        .testimonials-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 2rem;
        }

        .testimonial-item {
            flex: 1 1 350px;
            background-color: var(--color-white);
            border-radius: 10px;
            padding: 2rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            position: relative;
        }

        .testimonial-item::before {
            content: '\201C';
            font-family: Georgia, serif;
            font-size: 5rem;
            color: var(--color-accent);
            opacity: 0.2;
            position: absolute;
            top: 10px;
            left: 20px;
        }

        .testimonial-content {
            font-style: italic;
            margin-bottom: 1.5rem;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
        }

        .testimonial-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 1rem;
        }

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

        .testimonial-info h4 {
            font-family: var(--font-sans);
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 0.3rem;
        }

        .testimonial-info span {
            font-size: 0.9rem;
            color: var(--color-accent);
        }

        /* FAQ Section */
        .faq {
            background-color: var(--color-white);
        }

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

        .faq-item {
            margin-bottom: 1.5rem;
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
            padding-bottom: 1.5rem;
        }

        .faq-question {
            font-family: var(--font-sans);
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: var(--color-accent);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .faq-question:hover {
            color: var(--color-dark);
        }

        .faq-answer {
            padding-top: 0.5rem;
            display: none;
        }

        .faq-answer.active {
            display: block;
        }

        /* Contact Section */
        .contact {
            background-color: var(--color-primary);
        }

        .contact-info {
            text-align: center;
            margin-bottom: 3rem;
        }

        .social-links {
             display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 40px;
        }
		
		.social-name {
            font-weight: 500;
        }
		
		 .social-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            margin: 0 15px;
        }

        .social-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 60px;
            height: 60px;
            background-color: var(--color-white);
            color: var(--color-accent);
            border-radius: 50%;
            font-size: 1.5rem;
            transition: all 0.3s ease;
        }

        .social-icon:hover {
            background-color: var(--color-accent);
            color: var(--color-white);
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        /* Footer */
        footer {
            background-color: var(--color-dark);
            color: var(--color-light);
            text-align: center;
            padding: 2rem 0;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            list-style: none;
            margin-bottom: 1.5rem;
        }

        .footer-links li {
            margin: 0 1rem;
        }

        .footer-links a {
            color: var(--color-light);
        }

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

        .copyright {
            font-size: 0.9rem;
            opacity: 0.7;
        }
		
		
		
		
		
		
		
		    .containerdp {
            width: 100%;
            max-width: 100%;
            margin: 0;
            padding: 0;
        }

        /* Sección flex responsiva */
        .content-section {
            display: flex;
            flex-wrap: wrap;
            background-color: #EBE2D9; /* Color nude medio para el fondo del div */
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            width: 100%;
        }

        /* Columna de texto */
        .text-column {
            flex: 1;
            padding: 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            min-width: 300px;
        }

        .text-column h2 {
            color: #1A1A1A; /* Texto negro */
            margin-top: 0;
            font-size: 28px;
            margin-bottom: 20px;
        }

        .text-column p {
            color: #333333; /* Negro suave para mejor legibilidad */
            line-height: 1.6;
            margin-bottom: 20px;
            font-size: 16px;
        }

        .cta-button {
            display: inline-block;
            background-color: #D2B8A4; /* Botón en color nude más oscuro */
            color: #1A1A1A;
            padding: 12px 24px;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 600;
            align-self: flex-start;
            border: none;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .cta-button:hover {
            background-color: #C2A491; /* Nude oscuro al pasar el mouse */
        }

        /* Columna de imagen */
        .image-column {
            flex: 1;
            min-width: 300px;
            background-color: #fff; /* Nude un poco más oscuro que el fondo */
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .image-column img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
        }
		
		
		

        /* Responsive Design */
        @media screen and (max-width: 992px) {
            h1 {
                font-size: 3.5rem;
            }
            
            h2 {
                font-size: 2.5rem;
            }
            
            .hero h1 {
                font-size: 4rem;
            }
        }

        @media screen and (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            
            .nav-menu {
                position: fixed;
                top: 76px;
                left: 0;
                width: 100%;
                background-color: var(--color-white);
                flex-direction: column;
                align-items: center;
                padding: 2rem 0;
                box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
                transform: translateY(-150%);
                transition: transform 0.3s ease;
                z-index: 99;
            }
            
            .nav-menu.active {
                transform: translateY(0);
            }
            
            .nav-menu li {
                margin: 1rem 0;
            }
            
            h1 {
                font-size: 3rem;
            }
            
            h2 {
                font-size: 2.2rem;
            }
            
            .hero h1 {
                font-size: 3rem;
            }
            
            .hero p {
                font-size: 1.2rem;
            }
			
			 .social-links {
                flex-direction: column;
                align-items: center;
            }
			
			
			 .social-item {
                margin-bottom: 20px;
            }
			
			
			 .content-section {
                flex-direction: column; /* Cambia a columna en móviles */
            }

            .text-column {
                order: 1; /* El texto va primero en móviles */
                padding: 30px;
            }

            .image-column {
                order: 2; /* La imagen va después en móviles */
            }
            
            .text-column h2 {
                font-size: 24px;
            }
			
			
        }

        @media screen and (max-width: 576px) {
            .hero {
                height: 80vh;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .package-header h3 {
                font-size: 2rem;
            }
            
            .template-title {
                font-size: 1.8rem;
            }
        }
		
		
		
.whatsappch {
  position:fixed;
  width:60px;
  height:60px;
  bottom:40px;
  right:40px;
  background-color:#25d366;
  color:#FFF;
  border-radius:50px;
  text-align:center;
  font-size:30px;
  z-index:100;
}

.whatsapp-iconch {
  margin-top:13px;
}