* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.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;
}

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;
    text-decoration: none;
    color: white;
}

.logo-icon {
    background: #fbbf24;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.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-judicial {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 58, 138, 0.9) 100%),
        url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?w=1600&q=80') center/cover;
    color: white;
    padding: 180px 2rem 100px;
    text-align: center;
    margin-top: 70px;
}

.hero-judicial 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;
}

.breadcrumb {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding: 0 2rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.breadcrumb a {
    color: #fbbf24;
    text-decoration: none;
}

.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;
}

.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;
}

.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;
    margin-left: 8%;
    margin-right: 8%;
}

.section {
    padding: 80px 2rem;
    max-width: 100%;
    margin: 0 auto;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #1e3a8a;
    font-weight: 800;
}

.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;
}

.section-subtitle {
    color: #64748b;
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

.content-grid {
    max-width: 100%;
    margin: 0 auto;
}

.main-content {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.cta-inline-section {
    background: linear-gradient(135deg, #1e3a8a, #1e40af);
    color: white;
    padding: 2.5rem;
    border-radius: 20px;
    margin: 3rem 0;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
}

.cta-inline-section h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: white;
}

.cta-inline-section p {
    margin-bottom: 1.5rem;
    opacity: 0.95;
    line-height: 1.7;
    font-size: 1.1rem;
}

.pricing-highlight-section {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: white;
    padding: 2.5rem;
    border-radius: 20px;
    margin: 3rem 0;
    text-align: center;
    box-shadow: 0 5px 25px rgba(251, 191, 36, 0.3);
}

.pricing-highlight-section h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.pricing-highlight-section .price {
    font-size: 3rem;
    font-weight: 800;
    margin: 1rem 0;
}

.pricing-highlight-section p {
    margin-bottom: 1.5rem;
}

.info-box {
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border-left: 5px solid #1e3a8a;
    padding: 1.5rem 2rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.info-box h3 {
    color: #1e3a8a;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-box p {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.info-box ul {
    margin-left: 1.5rem;
    color: #475569;
    line-height: 1.8;
}

.main-content h2 {
    color: #1e3a8a;
    font-size: 2rem;
    margin: 2.5rem 0 1.5rem;
    font-weight: 700;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid #fbbf24;
}

.main-content h3 {
    color: #1e3a8a;
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    font-weight: 700;
}

.main-content p {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.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;
}

.main-content ul,
.main-content ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
    color: #475569;
    line-height: 1.8;
}

.main-content li {
    margin-bottom: 0.8rem;
    padding-left: 0.5rem;
}

.step-card {
    background: white;
    border: 2px solid #e0f2fe;
    border-left: 6px solid #1e3a8a;
    padding: 2rem;
    border-radius: 15px;
    margin: 1.5rem 0;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.step-card:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 25px rgba(30, 58, 138, 0.15);
}

.contact-cta-group {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1e3a8a, #1e40af);
    color: white;
    border-radius: 50%;
    font-weight: 800;
    font-size: 1.6rem;
    margin-right: 1rem;
}

.step-title {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.step-title h4 {
    color: #1e3a8a;
    font-size: 1.3rem;
    font-weight: 700;
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    gap: 1.5rem;
    margin: 2rem auto;
    width: 85%;
}

.type-card {
    background: linear-gradient(to bottom, #f8fafc, #f1f5f9);
    padding: 2rem;
    border-radius: 15px;
    border-top: 4px solid #fbbf24;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.15);
}

.type-card h4 {
    color: #1e3a8a;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.type-card p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.7;
}

.highlight-box {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border-left: 5px solid #fbbf24;
    padding: 1.5rem 2rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.highlight-box strong {
    color: #92400e;
}

.requirements-list {
    background: white;
    border: 2px solid #e0f2fe;
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
}

.requirements-list li {
    padding: 1rem;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.requirements-list li:last-child {
    border-bottom: none;
}

.requirements-list li::before {
    content: '✓';
    color: #10b981;
    font-weight: bold;
    font-size: 1.5rem;
    min-width: 24px;
}

.contact-section {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    color: white;
    padding: 80px 2rem;
    text-align: center;
    
}

.contact-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
    color: white;
}

.contact-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

 .testimonials {
            background: linear-gradient(135deg, #f8fafc, #e0f2fe);;
            padding: 80px 2rem;
            margin: 3rem 0;
            margin-top: 0 !important;
            margin-bottom: 0 !important;
        }

        .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.15);
            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 h3 {
            color: #1e3a8a;
            font-size: 1rem;
            margin-bottom: 0.2rem;
        }

        .author-info p {
            color: #64748b;
            font-size: 0.9rem;
        }

        
        .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;
        }

        .tipos-edictos{
            background: linear-gradient(to bottom, #f8fafc, #f1f5f9);
            padding-top: 5%;
            padding-bottom: 5%;
        }

.footer {
    background: #0f172a;
    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: 968px) {
    .main-content {
        padding: 2rem 1.5rem;
    }

    .contact-cta-group {
        flex-direction: column;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu {
        display: block;
    }

    .hero-judicial h1 {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .cta-inline-section h3,
    .pricing-highlight-section h3 {
        font-size: 1.5rem;
    }

    .pricing-highlight-section .price {
        font-size: 2.5rem;
    }

    .tipos-edictos{
            padding-top: 12%;
            padding-bottom: 7%;
        }
}