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

        body {
            font-family: 'Montserrat', sans-serif;
            line-height: 1.6;
            color: #333;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }

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

        /* Header */
        header {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 100;
            transition: all 0.3s ease;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }

        .logo {
            display: flex;
            align-items: center;
	    margin-left: 10px;
        }

	.logo img {
  	    height: 75px;
  	    width: auto;
 	    display: block;
	    max-width: 100%;
	}




        .cta-button {
            background: linear-gradient(45deg, #f3872f, #E97513);
            color: white;
            padding: 12px 30px;
            border: none;
            border-radius: 50px;
            font-weight: bold;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            cursor: pointer;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 4px 15px rgba(233, 117, 19, 0.3);
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(233, 117, 19, 0.4);
        }

.nav-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 15px; /* Espacio entre “Español” y el botón */
}

.lang-link {
    text-decoration: none;
    font-weight: 500;
    color: #333;
}

.lang-link:hover {
    text-decoration: underline;
}

        /* Hero Section */
        .hero {
            background: url('https://s3.us-east-2.amazonaws.com/resources.precise/landing/apostille/1_Slide_Completo.webp') no-repeat center center;
            background-size: cover;
            color: white;
            padding: 80px 0;
            text-align: left;
            position: relative;
            overflow: hidden;
        }

        .hero::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 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%" r="50%"><stop offset="0%" style="stop-color:white;stop-opacity:0.1"/><stop offset="100%" style="stop-color:white;stop-opacity:0"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23a)"/><circle cx="800" cy="300" r="150" fill="url(%23a)"/><circle cx="400" cy="700" r="120" fill="url(%23a)"/></svg>');
            opacity: 0.3;
            animation: float 20s infinite linear;
        }

        @keyframes float {
            0% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(180deg); }
            100% { transform: translateY(0px) rotate(360deg); }
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero h1 {
            font-size: 3.5rem;
            font-weight: 700;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
            animation: slideInUp 1s ease-out;
        }

        .hero h2 {
            font-size: 2rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
            animation: slideInUp 1s ease-out;
            margin-bottom: 20px;
        }

        .hero h3 {
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
            animation: slideInUp 1s ease-out;
        }

        .hero hr{
            width: 10%; 
            height: 10px; 
            background-color: #fff; 
            border: none;
            box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
            animation: slideInUp 1s ease-out;
        }

        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero p {
            font-size: 1.3rem;
            margin-bottom: 30px;
            max-width: 600px;
            opacity: 0.9;
            animation: slideInUp 1s ease-out 0.3s both;
        }

        .hero .cta-button {
            font-size: 1.1rem;
            padding: 15px 40px;
            animation: slideInUp 1s ease-out 0.6s both;
        }


	.hero-title-orange {
  	    color: #E97513;
	}



        /* Trust Indicators */
        .trust-indicators {
            background: white;
            padding: 40px 0;
            border-bottom: 1px solid #eee;
        }

        .trust-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            text-align: center;
        }

        .trust-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
        }

        .trust-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #304FFE 0%, #010C90 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: white;
            margin-bottom: 10px;
        }

        .trust-icon-img {
            width: 60px;
            height: 60px;
            object-fit: cover;
            border-radius: 50%;
            margin-bottom: 10px;
        }



        .trust-text {
            font-weight: bold;
            color: #2c3e50;
        }

        .trust-subtext {
            color: #7f8c8d;
            font-size: 0.9rem;
        }

        /* Services Section */
        .services {
            padding: 80px 0;
            background: white;
        }

        .services h2 {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 50px;
            color: #2c3e50;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .service-card {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
            border-color: #667eea;
        }

        .service-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #304FFE 0%, #010C90 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-left: 20px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
            flex-shrink: 0;
        }

        .service-card h3 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: #2c3e50;
        }

        .service-card p {
            color: #7f8c8d;
            margin-bottom: 20px;
        }

        .service-price {
            font-size: 1.5rem;
            font-weight: bold;
            color: #e74c3c;
            margin-bottom: 20px;
        }

        .service-header {
            display: flex;
            align-items: center;
            height: 80px;
            border-radius: 10px 10px 0 0;
            margin: -30px -30px 20px -30px; /* sobresale del padding de la card */
            background: linear-gradient(
                70deg,
                #E97513 0%,
                #E97513 20%,
                #304FFE 20%,
                #304FFE 100%
            );            
            color: white;
        }

        .header-icon {
            width: 25%;
            background: linear-gradient(135deg, #f39c12 0%, #2980b9 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: white;
        }

        .header-title {
            width: 75%;
            display: flex;
            align-items: center;
            padding-left: 20px;
            font-size: 1.2rem;
            font-weight: bold;
            color: white;
        }

        /* Process Section */
        .process {
            padding: 80px 0;
            background: url('https://s3.us-east-2.amazonaws.com/resources.precise/landing/apostille/4_Process_Fondo.webp') no-repeat center center;
            background-size: cover;
        }

        .process h2 {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 50px;
            color: white;
        }

        .process-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
        }

.process-step {
    text-align: center;
}

.process-img {
    width: 100%;
    max-width: 300px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.step-number {
    font-size: 5rem;
    font-weight: 900;
    color: white;
    text-align: center;
    line-height: 1;
    z-index: 3;
    font-family: 'Bebas Neue', sans-serif; /* Puedes cambiarla si gustas */
    margin-bottom: 20px;
}

.circle-accent {
    position: absolute;
    width: 220px;
    height: 220px;
    background: linear-gradient(45deg, #f3872f, #E97513);
    border-radius: 50%;
    top: 80px;
    left: 50%;
    transform: translateX(-60%) translateY(-5%);
    z-index: 1;
}

.step-circle {
    position: relative;
    background: white;
    border-radius: 50%;
    width: 250px;
    height: 250px; /* <- Altura fija */
    margin: 0 auto;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
    z-index: 2;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
}

.step-icon {
    font-size: 2rem;
    color: #304FFE;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.step-description {
    color: #7f8c8d;
    font-size: 0.95rem;
    position: relative;
    z-index: 2;
}

.service-img {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    margin-left: 20px;
    object-fit: cover;
    flex-shrink: 0;
}


        /* Why Choose Us */
        .why-choose {
            padding: 80px 0;
            background: white;
        }

        .why-choose h2 {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 50px;
            color: #2c3e50;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .benefit-card {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            padding: 20px;
            background: #f8f9fa;
            border-radius: 10px;
            transition: all 0.3s ease;
        }

        .benefit-card:hover {
            background: #e9ecef;
            transform: translateX(10px);
        }

        .benefit-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #304FFE 0%, #010C90 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        .benefit-content h3 {
            font-size: 1.1rem;
            margin-bottom: 10px;
            color: #2c3e50;
        }

        .benefit-content p {
            color: #7f8c8d;
            font-size: 0.9rem;
        }

        .benefit-img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            flex-shrink: 0;
        }


        /* FAQ Section */
        .faq {
            padding: 80px 0;
            background: #f8f9fa;
        }

        .faq h2 {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 50px;
            color: #2c3e50;
        }

        .faq-item {
            background: white;
            margin-bottom: 15px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }

        .faq-question {
            padding: 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
	    font-weight: bold;
            color: #2c3e50;
        }

        .faq-question:hover {
            background: #f0f0f0;
        }

/* Cuando la respuesta est� abierta, pintar t�tulo naranja */

	.faq-answer.open + .faq-question,
	.faq-question.active {
            color: #E97513; /* Naranja */
        }

        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease;
        }

        .faq-answer.open {
            padding: 20px;
	    max-height: 2000px;
        }



/* Vi�etas */
	.faq-answer ul {
    	    list-style-type: disc;
            margin-top: 10px;
            padding-left: 40px;
            color: #333;
	}

/* Continente destacado */
	.faq-answer .continent {
            font-weight: bold;
            margin-top: 15px;
            color: #5099CD;
            font-size: 1.1rem;
	}

/* Notas */
	.faq-answer .note {
            margin-top: 15px;
            padding: 10px 15px;
            background: #fffbe6;
            border-left: 5px solid #E97513;
            font-style: italic;
            color: #5c3d00;
            border-radius: 5px;
	}





/* ?? Contact Section */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #304FFE 0%, #010C90 100%);
    color: white;
    text-align: center;
}

/* T�tulo */
.contact h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

/* Descripci�n */
.contact p {
    font-size: 1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Informaci�n de contacto */
.contact-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}

.contact-item i {
    font-size: 1.5rem;
}

/* ?? Dividir la secci�n en dos columnas */
.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
}

/* ?? Lado izquierdo: texto original */
.contact-text {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* ?? Lado derecho: formulario */
.contact-form {
    flex: 1;
    min-width: 300px;
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    backdrop-filter: blur(5px);
    color: white;
}

/* ?? Estilo general del formulario */
.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form label {
    font-weight: bold;
    color: #fff;
    display: block;
    margin-bottom: 5px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form input[type="file"],
.contact-form input[type="submit"],
.contact-form textarea {
    width: 100%;
    padding: 10px;
    font-size: 1rem;
    border-radius: 5px;
    border: none;
}

.contact-form textarea {
    resize: vertical;
    font-family: 'Montserrat', sans-serif;
}

/* ?? Campo de archivo */
.contact-form input[type="file"] {
    background: white;
    color: black;
    font-size: 0.95rem;
}

/* ?? Bot�n */
.contact-form .cta-button {
    background: linear-gradient(45deg, #E97513, #d45a00);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.contact-form .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(233, 117, 19, 0.4);
}

/* ?? Responsive */
@media (max-width: 768px) {
    .contact-grid {
        flex-direction: column;
        text-align: center;
    }

    .contact-form,
    .contact-text {
        width: 100%;
    }

    .contact-form form {
        align-items: center;
    }

    .contact-form input,
    .contact-form textarea,
    .contact-form .cta-button {
        width: 100%;
    }
}

.contact-form select {
    width: 100%;
    padding: 10px;
    font-size: 1rem;
    border-radius: 5px;
    border: none;
    background: white;
    color: black;
    appearance: none; /* quita la flecha por defecto (puedes personalizarla después si quieres) */
}

.contact-info a {
    color: white;
}
  






        /* Footer */
        footer {
            background: #2c3e50;
            color: white;
            padding: 40px 0;
            text-align: center;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }

        .footer-section h3 {
            margin-bottom: 20px;
            color: #5099CD;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 10px;
        }

        .footer-section ul li a {
            color: #bdc3c7;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-section ul li a:hover {
            color: #3498db;
        }

        .footer-bottom {
            border-top: 1px solid #34495e;
            padding-top: 20px;
            color: #bdc3c7;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero p {
                font-size: 1.1rem;
            }
            
            .services-grid,
            .process-steps,
            .benefits-grid {
                grid-template-columns: 1fr;
            }
            
            .contact-info {
                flex-direction: column;
                gap: 20px;
            }
        }

        /* Animations */
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }

        .pulse {
            animation: pulse 2s infinite;
        }

        .drop-zone {
            border: 2px dashed #ccc;
            border-radius: 10px;
            padding: 30px;
            text-align: center;
            cursor: pointer;
            transition: background-color 0.3s ease;
            background-color: #f9f9f9;
            color: #333; 
        }

        .drop-zone.dragover {
            background-color: #e0f7fa;
        }


.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.6);
}

.modal-content {
  background-color: #fff;
  margin: 2% auto;
  padding: 20px;
  border-radius: 8px;
  width: 90%;
  max-height: 60%;
  overflow: hidden;
  position: relative;
}

.large-modal {
  max-width: 1200px;
}

.modal-scroll {
  overflow-y: auto;
  max-height: 80vh;
  padding-right: 10px;
}

.close {
  color: #aaa;
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover {
  color: #000;
}
