/* =========================================
   1. RESET BÁSICO Y ESTILOS GENERALES
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif; /* Cambiamos Arial por Montserrat */
}

/* Definamos los colores de Crono Cargo para no estar adivinando */
:root {
    --azul-crono: #003366;
    --rojo-crono: #d32f2f;
    --gris-fondo: #f4f4f4;
    --blanco: #ffffff;
}

body {
    background-color: #f4f4f4;
    color: #333;
}

/* =========================================
   2. ENCABEZADO (HEADER)
   ========================================= */
header {
    background-color: #ffffff;
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    max-height: 60px;
    width: auto;
    display: block;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav a {
    text-decoration: none;
    color: #555;
    font-weight: 600;
    transition: color 0.3s;
}

nav a:hover {
    color: #003366;
}

.user-actions {
    display: flex;
    gap: 15px;
}

.btn-login {
    text-decoration: none;
    color: #003366;
    font-weight: bold;
    padding: 8px 15px;
    border: 2px solid #003366;
    border-radius: 5px;
}

.btn-register {
    text-decoration: none;
    background-color: #003366;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
}

/* Botón Hamburguesa Oculto en PC */
.menu-toggle {
    display: none; 
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: #003366;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* =========================================
   3. SECCIÓN HERO (PRINCIPAL)
   ========================================= */
.hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

/* Dale más fuerza a los títulos del Hero */
.hero-content h2 {
    font-size: 3.5rem;
    font-weight: 800; /* Extra negrita */
    text-transform: uppercase;
    letter-spacing: -1px;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.tracking-box {
    background: white;
    padding: 20px;
    border-radius: 8px;
    display: inline-block;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.tracking-box h3 {
    color: #333;
    margin-bottom: 10px;
}

.tracking-box input {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 250px;
}

.tracking-box button {
    padding: 10px 20px;
    background-color: #d32f2f;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}

.cta-buttons {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Botones universales */
.btn-primary {
    background-color: #003366;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-primary:hover {
    background-color: #004a99;
    transform: translateY(-3px);
}

.btn-secondary {
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: transparent;
    color: white;
    border: 2px solid white;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-secondary:hover {
    background-color: white;
    color: #003366;
}

/* =========================================
   4. SECCIÓN NOSOTROS (RESUMEN EN HOME)
   ========================================= */
.about-summary {
    padding: 80px 5%;
    background-color: #ffffff;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    color: #003366;
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.about-text p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* =========================================
   5. SECCIÓN DE SERVICIOS
   ========================================= */
.services {
    padding: 60px 5%;
    background-color: #f4f4f4;
    text-align: center;
}

.section-title {
    color: #003366;
    font-size: 2.2rem;
    margin-bottom: 40px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: #ffffff;
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.service-card .icon {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #d32f2f;
}

.service-card h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.service-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

.btn-read-more {
    display: inline-block;
    color: #d32f2f;
    text-decoration: none;
    font-weight: bold;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.btn-read-more:hover {
    border-bottom: 2px solid #d32f2f;
}

/* =========================================
   6. PIE DE PÁGINA (FOOTER)
   ========================================= */
footer {
    background-color: #003366;
    color: #ffffff;
    padding: 60px 5% 20px;
    margin-top: 50px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background-color: #d32f2f;
}

.footer-col p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #cccccc;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #ffffff;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-links a i {
    font-size: 1.5rem;
    color: #cccccc;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-links a i:hover {
    color: #ffffff;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
    color: #999999;
}

/* =========================================
   ESTILOS PARA LA PÁGINA "NOSOTROS"
   ========================================= */

/* Banner corto superior */
.page-header {
    background: linear-gradient(rgba(0,51,102,0.8), rgba(0,51,102,0.8)), url('https://images.unsplash.com/photo-1574615875231-645341db71bd?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    height: 40vh; /* La mitad del tamaño del banner principal */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

/* Contenedor principal de Nosotros */
.about-page-content {
    padding: 60px 5%;
    max-width: 1000px;
    margin: 0 auto;
}

.history-section {
    text-align: center;
    margin-bottom: 50px;
}

.history-section h2 {
    color: #003366;
    font-size: 2rem;
    margin-bottom: 20px;
}

.history-section p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

/* Tarjetas de Misión y Visión */
.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.mv-card {
    background-color: #ffffff;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
    border-top: 5px solid #d32f2f; /* Una línea roja arriba para decorar */
}

.mv-card .icon-mv {
    font-size: 3rem;
    color: #003366;
    margin-bottom: 20px;
}

.mv-card h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.mv-card p {
    color: #666;
    line-height: 1.6;
}

/* =========================================
   ESTILOS PARA LA PÁGINA "SERVICIOS"
   ========================================= */

/* Imagen de fondo diferente para el banner de Servicios */
.header-servicios {
    background: linear-gradient(rgba(0,51,102,0.8), rgba(0,51,102,0.8)), url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
}

.services-detail-page {
    padding: 60px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Diseño de cada fila (Zig-Zag) */
.service-row {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 80px; /* Separación entre cada servicio */
}

/* Invertir el orden para la clase .reverse (Imagen a la izquierda) */
.service-row.reverse {
    flex-direction: row-reverse;
}

.service-text {
    flex: 1;
}

.icon-service-large {
    font-size: 3.5rem;
    color: #d32f2f;
    margin-bottom: 15px;
}

.service-text h2 {
    color: #003366;
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.service-text p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-text ul {
    list-style: none;
}

.service-text ul li {
    font-size: 1.05rem;
    margin-bottom: 10px;
    color: #444;
}

.text-red {
    color: #d32f2f;
    margin-right: 10px;
}

.service-image {
    flex: 1;
}

.service-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* =========================================
   ESTILOS PARA LA PÁGINA "FRANQUICIAS"
   ========================================= */

.header-franquicias {
    background: linear-gradient(rgba(0,51,102,0.85), rgba(0,51,102,0.85)), url('https://images.unsplash.com/photo-1556761175-5973dc0f32b7?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
}

.franchise-section {
    padding: 80px 5%;
    background-color: #f9f9f9;
}

.franchise-container {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: flex-start;
}

.franchise-info {
    flex: 1;
}

.franchise-info h2 {
    color: #003366;
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.franchise-info p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.benefit-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.benefit-item i {
    font-size: 2rem;
    color: #d32f2f;
    margin-top: 5px;
}

.benefit-item h4 {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.benefit-item p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Diseño del Formulario */
.franchise-form-container {
    flex: 1;
    background: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.franchise-form-container h3 {
    color: #003366;
    margin-bottom: 25px;
    font-size: 1.5rem;
    text-align: center;
}

.input-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.input-group label {
    font-weight: bold;
    color: #444;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.input-group input, .input-group textarea {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: 'Arial', sans-serif;
    transition: border-color 0.3s;
}

.input-group input:focus, .input-group textarea:focus {
    outline: none;
    border-color: #003366;
}

/* =========================================
   7. ANIMACIONES AL HACER SCROLL
   ========================================= */
.animar-arriba {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animar-arriba.mostrar {
    opacity: 1;
    transform: translateY(0);
}
/* =========================================
   ESTILOS PÁGINA LEGAL
   ========================================= */
.legal-page {
    background-color: #f8f9fa;
    padding: 60px 5%;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.main-title {
    color: var(--azul-crono);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 10px;
}

.last-update {
    text-align: center;
    color: #888;
    margin-bottom: 50px;
    font-size: 0.9rem;
}

.legal-block {
    background: white;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border-left: 5px solid var(--azul-crono);
}

.legal-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.legal-header i {
    font-size: 1.8rem;
    color: var(--rojo-crono);
}

.legal-header h2 {
    color: var(--azul-crono);
    margin: 0;
}

.legal-body h3 {
    margin: 20px 0 10px;
    color: #333;
}

/* Grilla de Incoterms */
.incoterm-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.incoterm-item {
    background: #f1f4f8;
    padding: 20px;
    border-radius: 8px;
    transition: transform 0.3s;
}

.incoterm-item:hover { transform: translateY(-5px); }

.badge {
    background: var(--rojo-crono);
    color: white;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: bold;
}

/* Mercancías Prohibidas */
.prohibited-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
    background: #fff5f5;
    padding: 20px;
    border-radius: 8px;
    margin-top: 15px;
}

.prohibited-grid span {
    color: #c0392b;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Lista de verificación */
.check-list {
    list-style: none;
    padding: 0;
}

.check-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.check-list i { color: #27ae60; }

/* Caja con Scroll para términos largos */
.scroll-box {
    max-height: 400px;
    overflow-y: auto;
    padding-right: 15px;
    border: 1px solid #eee;
    padding: 20px;
    border-radius: 8px;
}

/* Ajustes para la página de servicios específicos */
.service-detail-hero {
    padding: 100px 5% 60px; /* Más espacio arriba para el menú */
    background: linear-gradient(rgba(0,51,102,0.8), rgba(0,51,102,0.8)), url('https://images.unsplash.com/photo-1569154941061-e231b4725ef1?auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    text-align: center;
    color: white;
}

.hero-text-container h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 800;
}

.service-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    padding: 80px 8%;
    max-width: 1300px;
    margin: 0 auto;
}

.service-main-content h2 {
    color: var(--azul-crono);
    margin-bottom: 25px;
}

/* Sidebar Cards */
.sidebar-card {
    background: #fdfdfd;
    padding: 35px;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #eee;
}

.quote-card {
    background: var(--azul-crono);
    color: white;
    border: none;
}

.quote-card h3 { margin-bottom: 15px; }

.btn-primary-sidebar {
    display: block;
    background: var(--rojo-crono);
    color: white;
    padding: 15px;
    text-align: center;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 20px;
}

/* Mini Tracking Form */
.mini-tracking-form {
    display: flex;
    margin-top: 15px;
}

.mini-tracking-form input {
    flex: 1;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px 0 0 5px;
}

.mini-tracking-form button {
    background: var(--azul-crono);
    color: white;
    border: none;
    padding: 0 20px;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
}

/* Quitar estilos de link a los títulos */
.service-title-link {
    text-decoration: none;
    color: inherit;
}

.service-title-link:hover h2 {
    color: var(--rojo-crono);
    transition: 0.3s ease;
}

/* Estilo para el botón de Saber más */
.read-more-btn {
    display: inline-block;
    margin-top: 15px;
    color: var(--rojo-crono);
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
    border-bottom: 2px solid transparent;
    transition: 0.3s;
}

.read-more-btn:hover {
    border-bottom: 2px solid var(--rojo-crono);
    padding-left: 5px;
}

/* Zoom suave en las imágenes al pasar el mouse */
.service-image img {
    transition: transform 0.5s ease;
}

.service-image:hover img {
    transform: scale(1.05);
}

/* =========================================
   DISEÑO: ¿CÓMO FUNCIONA? (PASOS)
   ========================================= */
.como-funciona {
    padding: 80px 5%;
    background-color: #ffffff;
}

.container-pasos {
    max-width: 1200px;
    margin: 0 auto;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.step-card {
    position: relative;
    padding: 40px 20px 20px;
    border-radius: 12px;
    background: #f8f9fa;
    text-align: center;
    border: 1px solid #eee;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--rojo-crono);
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(211, 47, 47, 0.3);
}

.step-card i {
    font-size: 3rem;
    color: var(--azul-crono);
    margin-bottom: 20px;
}

.step-card h3 {
    color: var(--azul-crono);
    margin-bottom: 10px;
}

.step-card p {
    color: #666;
    font-size: 0.95rem;
}

/* =========================================
   DISEÑO: CALCULADORA DE ENVÍOS
   ========================================= */
.calculadora-section {
    padding: 60px 5%;
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
}

.calculator-box {
    background: var(--azul-crono);
    color: white;
    padding: 40px;
    border-radius: 15px;
    max-width: 500px;
    width: 100%;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,51,102,0.2);
}

.calculator-box h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.calculator-box p {
    font-size: 0.95rem;
    color: #cbd5e1;
    margin-bottom: 25px;
}

.calc-input {
    margin-bottom: 25px;
    text-align: left;
}

.calc-input label {
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.calc-input input {
    width: 100%;
    padding: 15px;
    border-radius: 8px;
    border: none;
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
    outline: none;
}

.calc-result {
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.2);
    margin-bottom: 15px;
}

.calc-result p {
    margin-bottom: 5px;
    font-size: 1.1rem;
    color: white;
}

.calc-result span {
    font-size: 2.5rem;
    font-weight: 800;
    color: #4ade80; /* Verde brillante que resalta en fondo azul */
    display: block;
}

.calculator-box small {
    color: #94a3b8;
    font-size: 0.8rem;
}

/* =========================================
   DISEÑO: TIENDAS SUGERIDAS
   ========================================= */
.tiendas-sugeridas {
    padding: 60px 5%;
    background-color: #ffffff; /* Fondo blanco limpio */
    text-align: center;
    border-top: 1px solid #eee;
}

.container-tiendas {
    max-width: 1000px;
    margin: 0 auto;
}

.tiendas-sugeridas p {
    color: #666;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.logos-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.logo-box {
    background: #fdfdfd;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.5rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
    border: 1px solid #eaeaea;
    cursor: default;
}

.logo-box:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* Colores y fuentes de las marcas para darles realismo */
.amazon { color: #FF9900; }
.amazon i { color: #232F3E; }
.shein { font-family: sans-serif; letter-spacing: 2px; color: #000; }
.ebay { font-size: 2.2rem; } /* El icono de eBay ya tiene la palabra completa */
.walmart { color: #0071CE; font-family: sans-serif; letter-spacing: -1px; }
.walmart i { color: #FFC220; font-size: 1rem; }
.zara { font-family: 'Times New Roman', serif; letter-spacing: 3px; color: black; font-weight: normal; }
.aliexpress { color: #FF4747; font-family: sans-serif; letter-spacing: -1px;}
.alibaba { color: #FF6A00; font-family: sans-serif; font-weight: bold; letter-spacing: -0.5px; }

/* =========================================
   DISEÑO: PREGUNTAS FRECUENTES (FAQ)
   ========================================= */
.faq-section {
    padding: 80px 5%;
    background-color: #f9fbfd; /* Un azul MUY clarito para separar secciones */
}

.container-faq {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #ffffff;
    border: 1px solid #eee;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    overflow: hidden; /* Importante para el efecto de acordeón */
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 20px 25px;
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--azul-crono);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--rojo-crono);
    background-color: #fcfcfc;
}

/* Efecto de giro para la flechita */
.faq-question i {
    transition: transform 0.4s ease;
    color: #ccc;
}

.faq-question.active {
    color: var(--rojo-crono);
    border-bottom: 1px solid #eee;
}

.faq-question.active i {
    transform: rotate(180deg);
    color: var(--rojo-crono);
}

/* Estado oculto de la respuesta */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    background-color: #ffffff;
}

.faq-answer p {
    padding: 20px 25px;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* =========================================
   MEJORAS VISUALES: PÁGINAS DE SERVICIO
   ========================================= */

.lead-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 30px;
}

/* Imagen rompe-hielo a mitad del texto */
.service-mid-image {
    width: 100%;
    height: 350px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-mid-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-subtitle {
    color: var(--azul-crono);
    font-size: 1.8rem;
    margin-bottom: 25px;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}

/* Tarjetas de Beneficios (Más modernas) */
.highlight-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 1px solid #e9ecef;
    border-left: 4px solid var(--rojo-crono);
    padding: 30px 20px;
    border-radius: 10px;
    transition: transform 0.3s;
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}

.highlight-card i {
    font-size: 2.5rem;
    color: var(--azul-crono);
    margin-bottom: 15px;
}

.highlight-card h4 {
    margin-bottom: 10px;
    color: var(--azul-crono);
}

/* =========================================
   LÍNEA DE TIEMPO (TIMELINE VERTICAL)
   ========================================= */
.service-timeline {
    position: relative;
    padding-left: 30px;
    margin-bottom: 40px;
}

/* La línea vertical que conecta los puntos */
.service-timeline::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e2e8f0;
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

/* El círculo con el número */
.timeline-dot {
    position: absolute;
    left: -40px;
    top: 0;
    width: 24px;
    height: 24px;
    background: var(--rojo-crono);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
    box-shadow: 0 0 0 4px white, 0 2px 5px rgba(0,0,0,0.2);
}

.timeline-content h4 {
    color: var(--azul-crono);
    margin: 0 0 5px 0;
    font-size: 1.2rem;
}

.timeline-content p {
    color: #666;
    margin: 0;
    font-size: 0.95rem;
}

/* =========================================
   8. DISEÑO RESPONSIVE (MÓVILES Y TABLETS)
   ========================================= */
@media (max-width: 768px) {
    
    header {
        flex-wrap: wrap;
    }

    .logo-container {
        margin-bottom: 0;
    }

    .menu-toggle {
        display: flex;
        margin-top: 0;
    }

    #nav-menu {
        display: none;
        width: 100%;
        margin-top: 20px;
    }

    #nav-menu.active {
        display: block;
    }

    #nav-menu ul {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding-bottom: 20px;
    }

    .user-actions {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        padding-bottom: 10px;
    }

    .user-actions.active {
        display: flex;
    }

    .user-actions a {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }

    .hero-content h2 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .tracking-box input {
        width: 100%;
        margin-bottom: 10px;
    }

    .cta-buttons {
        flex-direction: column; 
        align-items: center;
        gap: 15px;
    }

    .cta-buttons button, .btn-primary {
        width: 80%;
        max-width: 300px;
        font-size: 0.95rem;
    }

    .about-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .services {
        padding: 40px 5%;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .footer-container {
        gap: 30px;
    }
/* Ajustes Página Servicios (Zig-Zag a Columna) */
    .service-row, .service-row.reverse {
        flex-direction: column; /* Pone imagen debajo de texto siempre */
        text-align: center;
        gap: 30px;
        margin-bottom: 50px;
    }
/* Ajustes Página Franquicias */
    .franchise-container {
        flex-direction: column;
        gap: 40px;
    }

    .franchise-form-container {
        padding: 25px;
        width: 100%;
    }
}