* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #1a202c;
            overflow-x: hidden;
        }

        .header {
            background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
            color: white;
            padding: 1.2rem 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0,0,0,0.15);
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.6rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .logo-icon {
            background: #fbbf24;
            width: 40px;
            height: 40px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
        }

        .logo-icon img{
            width: 40px;
            height: 40px;
        }

        .nav-links {
            display: flex;
            gap: 2.5rem;
            list-style: none;
        }

        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: #fbbf24;
            transition: width 0.3s;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .hero {
            background: linear-gradient(135deg, rgba(30, 58, 138, 0.2) 0%, rgba(30, 64, 175, 0.9) 100%),
                        url('./assets/foto_matrimonio.jpg') center/cover;
            color: white;
            padding: 180px 2rem 120px;
            text-align: center;
            margin-top: 70px;
            position: relative;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            font-weight: 800;
            line-height: 1.2;
            animation: fadeInUp 0.8s ease;
        }

        .hero-subtitle {
            font-size: 1.4rem;
            margin-bottom: 2.5rem;
            opacity: 0.95;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            animation: fadeInUp 0.8s ease 0.2s both;
            font-weight: 300;
        }

        .hero-badges {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 3rem;
            flex-wrap: wrap;
            animation: fadeInUp 0.8s ease 0.3s both;
        }

        .badge {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            padding: 0.8rem 1.5rem;
            border-radius: 30px;
            border: 1px solid rgba(255, 255, 255, 0.3);
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .cta-button {
            background: #fbbf24;
            color: #1e3a8a;
            padding: 1.3rem 3rem;
            border: none;
            border-radius: 50px;
            font-size: 1.3rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s;
            animation: fadeInUp 0.8s ease 0.4s both;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.8rem;
            box-shadow: 0 10px 30px rgba(251, 191, 36, 0.3);
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(251, 191, 36, 0.4);
            background: #f59e0b;
        }

        .cta-button img {
            width: 24px;
            height: 24px;
        }

        .trust-bar {
            background: white;
            padding: 2rem;
            box-shadow: 0 -5px 30px rgba(0,0,0,0.1);
            position: relative;
            margin-top: -30px;
            z-index: 10;
        }

        .trust-items {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            text-align: center;
        }

        .trust-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
        }

        .trust-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: #1e3a8a;
        }

        .trust-label {
            color: #64748b;
            font-size: 0.95rem;
        }

        .section {
            padding: 80px 2rem;
            max-width: 100%;
            margin: 0 auto;
        }

        .section-title {
            text-align: center;
            font-size: 2.8rem;
            margin-bottom: 1rem;
            color: #1e3a8a;
            font-weight: 800;
        }

        .section-subtitle {
            text-align: center;
            color: #64748b;
            font-size: 1.2rem;
            margin-bottom: 3rem;
        }

        .features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .feature-card {
            background: white;
            padding: 2.5rem;
            border-radius: 20px;
            box-shadow: 0 5px 25px rgba(0,0,0,0.08);
            transition: all 0.3s;
            text-align: center;
            border: 2px solid transparent;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(30, 58, 138, 0.15);
            border-color: #fbbf24;
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 1.5rem;
            background: linear-gradient(135deg, #eff6ff, #dbeafe);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
        }

        .feature-icon img {
            width: 50%;
            height: 50%;
        }

        .feature-card h3 {
            color: #1e3a8a;
            margin-bottom: 1rem;
            font-size: 1.4rem;
            font-weight: 700;
        }

        .feature-card p {
            color: #64748b;
            line-height: 1.7;
        }

        .services-bg {
            background: linear-gradient(to bottom, #f8fafc, #f1f5f9);
        }

        .service-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .service-card {
            background: white;
            padding: 2.5rem;
            border-radius: 20px;
            box-shadow: 0 5px 25px rgba(0,0,0,0.08);
            transition: all 0.3s;
            border-left: 6px solid #1e3a8a;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, #fbbf24, #f59e0b);
            opacity: 0.1;
            border-radius: 0 0 0 100%;
        }

        .service-card:hover {
            transform: translateX(5px);
            box-shadow: 0 10px 35px rgba(30, 58, 138, 0.15);
        }

        .service-badge {
            display: inline-block;
            background: #fbbf24;
            color: #1e3a8a;
            padding: 0.3rem 1rem;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .service-card h3 {
            color: #1e3a8a;
            margin-bottom: 1rem;
            font-size: 1.5rem;
            font-weight: 700;
        }

        .service-card p {
            color: #64748b;
            margin-bottom: 1.5rem;
            line-height: 1.7;
        }

        .service-features {
            list-style: none;
            margin-bottom: 1.5rem;
        }

        .service-features li {
            padding: 0.5rem 0;
            color: #64748b;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .service-features li::before {
            content: '✓';
            color: #10b981;
            font-weight: bold;
            font-size: 1.2rem;
        }

        .price-tag {
            display: inline-block;
            background: linear-gradient(135deg, #1e3a8a, #1e40af);
            color: white;
            padding: 0.8rem 1.8rem;
            border-radius: 30px;
            font-weight: 700;
            font-size: 1.3rem;
        }

        .process-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
            position: relative;
        }

        .step {
            text-align: center;
            position: relative;
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 3px 15px rgba(0,0,0,0.08);
            transition: all 0.3s;
        }

        .step:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(30, 58, 138, 0.15);
        }

        .step-number {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #1e3a8a, #1e40af);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            font-weight: 800;
            margin: 0 auto 1.5rem;
            box-shadow: 0 5px 20px rgba(30, 58, 138, 0.3);
        }

        .step h3 {
            color: #1e3a8a;
            margin-bottom: 0.8rem;
            font-weight: 700;
        }

        .step p {
            color: #64748b;
        }

        .testimonials {
            background: linear-gradient(135deg, #f8fafc, #e0f2fe);
            padding: 80px 2rem;
            margin: 3rem 0;
        }

        .testimonials-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .testimonial-card {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            position: relative;
        }

        .quote-icon {
            font-size: 3rem;
            color: #fbbf24;
            opacity: 0.3;
            position: absolute;
            top: 1rem;
            right: 1.5rem;
        }

        .testimonial-text {
            color: #475569;
            line-height: 1.7;
            margin-bottom: 1.5rem;
            font-style: italic;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .author-avatar {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #1e3a8a, #1e40af);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            font-size: 1.2rem;
        }

        .author-info h4 {
            color: #1e3a8a;
            font-size: 1rem;
            margin-bottom: 0.2rem;
        }

        .author-info p {
            color: #64748b;
            font-size: 0.9rem;
        }

        .faq-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .faq-item {
            background: white;
            margin-bottom: 1rem;
            border-radius: 12px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.06);
            overflow: hidden;
            transition: box-shadow 0.3s;
            border: 2px solid transparent;
        }

        .faq-item:hover {
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }

        .faq-item.active {
            border-color: #fbbf24;
        }

        .faq-question {
            padding: 1.5rem 2rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: white;
            transition: background 0.3s;
        }

        .faq-question:hover {
            background: #f8fafc;
        }

        .faq-question h3 {
            color: #1e3a8a;
            font-size: 1.1rem;
            margin: 0;
            flex: 1;
            font-weight: 600;
        }

        .faq-toggle {
            font-size: 1.5rem;
            color: #1e3a8a;
            font-weight: bold;
            transition: transform 0.3s;
            margin-left: 1rem;
            background: #eff6ff;
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
        }

        .faq-item.active .faq-toggle {
            transform: rotate(45deg);
            background: #fbbf24;
            color: white;
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
            padding: 0 2rem;
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
            padding: 0 2rem 1.5rem;
        }

        .faq-answer p {
            color: #475569;
            line-height: 1.8;
            margin: 0;
        }

        .contact-section {
            background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
            color: white;
            padding: 100px 2rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .contact-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.05)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') bottom center/cover no-repeat;
        }

        .contact-section h2 {
            font-size: 3rem;
            margin-bottom: 1rem;
            font-weight: 800;
            position: relative;
            z-index: 1;
        }

        .contact-section p {
            font-size: 1.3rem;
            margin-bottom: 3rem;
            opacity: 0.95;
            position: relative;
            z-index: 1;
        }

        .contact-cta-group {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            flex-wrap: wrap;
            margin-bottom: 3rem;
            position: relative;
            z-index: 1;
        }

        .cta-primary {
            background: #fbbf24;
            color: #1e3a8a;
            padding: 1.3rem 3rem;
            border-radius: 50px;
            font-size: 1.3rem;
            font-weight: 700;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.8rem;
            box-shadow: 0 10px 30px rgba(251, 191, 36, 0.4);
            transition: all 0.3s;
        }

        .cta-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(251, 191, 36, 0.5);
            background: #f59e0b;
        }

        .cta-secondary {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            color: white;
            padding: 1.3rem 3rem;
            border-radius: 50px;
            font-size: 1.3rem;
            font-weight: 700;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.8rem;
            border: 2px solid rgba(255, 255, 255, 0.3);
            transition: all 0.3s;
        }

        .cta-secondary:hover {
            background: rgba(255, 255, 255, 0.25);
            transform: translateY(-3px);
        }

        .contact-info {
            display: flex;
            justify-content: center;
            gap: 4rem;
            flex-wrap: wrap;
            margin-top: 3rem;
            position: relative;
            z-index: 1;
        }

        .contact-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.8rem;
        }

        .contact-icon {
            font-size: 2.5rem;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid rgba(255, 255, 255, 0.3);
        }

        .contact-item strong {
            font-size: 1.1rem;
        }

        .contact-item span {
            font-size: 1.2rem;
            opacity: 0.95;
        }

        .footer {
            background: #252e3d;
            color: white;
            padding: 3rem 2rem 2rem;
            text-align: center;
        }

        

        .footer p {
            opacity: 0.8;
        }

        .whatsapp-float {
            position: fixed;
            width: 65px;
            height: 65px;
            bottom: 30px;
            right: 30px;
            background: #25d366;
            color: #fff;
            border-radius: 50%;
            text-align: center;
            box-shadow: 0 5px 25px rgba(37, 211, 102, 0.5);
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            animation: pulse 2s infinite;
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
            box-shadow: 0 8px 35px rgba(37, 211, 102, 0.6);
        }

        .whatsapp-float img {
            width: 75%;
        }

        @keyframes pulse {
            0% {
                box-shadow: 0 5px 25px rgba(37, 211, 102, 0.5);
            }
            50% {
                box-shadow: 0 5px 35px rgba(37, 211, 102, 0.7);
            }
            100% {
                box-shadow: 0 5px 25px rgba(37, 211, 102, 0.5);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .mobile-menu {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .mobile-menu {
                display: block;
            }

            .hero h1 {
                font-size: 2.2rem;
            }

            .hero-subtitle {
                font-size: 1.1rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .contact-section h2 {
                font-size: 2rem;
            }

            .contact-info {
                flex-direction: column;
                gap: 2rem;
            }

            .contact-cta-group {
                flex-direction: column;
            }

            .cta-button,
            .cta-primary,
            .cta-secondary {
                width: 100%;
                justify-content: center;
            }

            .hero-badges {
                flex-direction: column;
                align-items: center;
            }

            .whatsapp-float {
                width: 60px;
                height: 60px;
                bottom: 20px;
                right: 20px;
            }
        }

        .newspapers-section {
            background: linear-gradient(135deg, #f8fafc, #e0f2fe);
            padding: 80px 2rem;
            margin: 0;
        }

        .newspapers-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 3rem auto 2rem;
        }

        .newspaper-card {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            text-align: center;
            transition: all 0.3s;
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
        }

        .newspaper-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #1e3a8a, #fbbf24);
            transform: scaleX(0);
            transition: transform 0.3s;
        }

        .newspaper-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(30, 58, 138, 0.15);
            border-color: #fbbf24;
        }

        .newspaper-card:hover::before {
            transform: scaleX(1);
        }

        .newspaper-logo {
            margin-bottom: 1rem;
        }

        .newspaper-icon {
            font-size: 3rem;
            margin-bottom: 0.8rem;
            filter: grayscale(0.3);
        }

        .newspaper-icon img{
            width: 100%;
            height: 100%;
        }

        .newspaper-card h3 {
            color: #1e3a8a;
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .newspaper-card p {
            color: #64748b;
            font-size: 0.95rem;
            margin-bottom: 1rem;
            min-height: 40px;
        }

        .newspaper-badge {
            display: inline-block;
            background: linear-gradient(135deg, #eff6ff, #dbeafe);
            color: #1e3a8a;
            padding: 0.4rem 1rem;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            border: 1px solid #bfdbfe;
        }

        .newspapers-footer {
            max-width: 900px;
            margin: 2rem auto 0;
            text-align: center;
            background: white;
            padding: 1.5rem 2rem;
            border-radius: 15px;
            box-shadow: 0 3px 15px rgba(0,0,0,0.08);
        }

        .newspapers-footer p {
            color: #475569;
            font-size: 1rem;
            line-height: 1.7;
            margin: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }