/*

TemplateMo 570 Chain App Dev

https://templatemo.com/tm-570-chain-app-dev

*/

/* ---------------------------------------------
Table of contents
------------------------------------------------
01. font & reset css
02. reset
03. global styles
04. header
05. banner
06. features
07. testimonials
08. contact
09. footer
10. preloader
11. search
12. portfolio

--------------------------------------------- */
/* 
---------------------------------------------
font & reset css
--------------------------------------------- 
*/
/* 
---------------------------------------------
reset
--------------------------------------------- 
*/


:root {
  --faq-primary:       #0a2540;   /* azul marino oscuro */
  --faq-accent:        #619e02;   /* naranja energético */
  --faq-accent-light:  #80CF02;
  --faq-bg:            #f5f7fa;
  --faq-card:          #ffffff;
  --faq-border:        #e2e8f0;
  --faq-text:          #2d3748;
  --faq-muted:         #718096;
  --faq-badge-bg:      #fff3ec;
  --faq-badge-text:    #c74300;
  --faq-gradient:      linear-gradient(135deg, #0a2540 0%, #163a5f 100%);


  --t-primary:      #0a2540;
    --t-accent:       #619e02;
    --t-accent-light: #80CF02;
    --t-bg:           #ffffff;
    --t-bg-alt:       #f5f7fa;
    --t-border:       #e2e8f0;
    --t-text:         #2d3748;
    --t-muted:        #718096;
    --t-badge-bg:     #fff3ec;
    --t-badge-text:   #c74300;
    --t-gradient:     linear-gradient(135deg, #0a2540 0%, #163a5f 100%);
}
::-webkit-scrollbar {
  width: 10px;            /* ancho vertical */
  height: 10px;           /* alto horizontal */
}

/* Fondo del scroll */
::-webkit-scrollbar-track {
  background: #0f172a;    /* color oscuro elegante */
  border-radius: 10px;
}

/* Barra que se mueve */
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #3b82f6, #06b6d4);
  border-radius: 10px;
  border: 2px solid #0f172a; /* espacio interno */
}

/* Hover (cuando pasas el mouse) */
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #2563eb, #0891b2);
}
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&display=swap');
 
  #faq {
    background-color: var(--faq-bg);
    padding: 96px 0 112px;
    font-family: 'DM Sans', sans-serif;
    position: relative;
    overflow: hidden;
  }
 
  /* Decoración de fondo sutil */
  #faq::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232,82,10,0.06) 0%, transparent 70%);
    pointer-events: none;
  }
  #faq::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(10,37,64,0.06) 0%, transparent 70%);
    pointer-events: none;
  }
 
  /* --- Encabezado de sección --- */
  .faq-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--faq-badge-bg);
    color: var(--faq-badge-text);
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 40px;
    border: 1px solid rgba(232,82,10,0.2);
    margin-bottom: 20px;
  }
  .faq-eyebrow svg { flex-shrink: 0; }
 
  .faq-title {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--faq-primary);
    line-height: 1.15;
    margin-bottom: 16px;
  }
  .faq-title span {
    color: var(--faq-accent);
    position: relative;
    display: inline-block;
  }
  .faq-title span::after {
    content: '';
    position: absolute;
    left: 0; bottom: 2px;
    width: 100%; height: 4px;
    background: var(--faq-accent);
    border-radius: 2px;
    opacity: 0.25;
  }
 
  .faq-subtitle {
    color: var(--faq-muted);
    font-size: 1.05rem;
    max-width: 560px;
    line-height: 1.7;
    margin-bottom: 0;
  }
 
  /* --- Barra de búsqueda FAQ --- */
  .faq-search-wrapper {
    position: relative;
    max-width: 520px;
  }
  .faq-search-wrapper .search-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--faq-muted);
    pointer-events: none;
  }
  #faqSearch {
    width: 100%;
    padding: 14px 20px 14px 48px;
    border: 2px solid var(--faq-border);
    border-radius: 12px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.97rem;
    color: var(--faq-text);
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
  }
  #faqSearch:focus {
    border-color: var(--faq-accent);
    box-shadow: 0 0 0 4px rgba(232,82,10,0.1);
  }
  #faqSearch::placeholder { color: #a0aec0; }
 
  /* --- Filtros de categoría --- */
  .faq-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
  }
  .faq-filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    border: 2px solid var(--faq-border);
    border-radius: 40px;
    background: #fff;
    color: var(--faq-muted);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.88rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
  }
  .faq-filter-btn:hover {
    border-color: var(--faq-accent);
    color: var(--faq-accent);
    background: var(--faq-badge-bg);
  }
  .faq-filter-btn.active {
    background: var(--faq-accent);
    border-color: var(--faq-accent);
    color: #fff;
  }
  .faq-filter-btn .dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: currentColor;
    opacity: 0.7;
  }
 
  /* --- Acordeón FAQ --- */
  .faq-accordion { display: flex; flex-direction: column; gap: 12px; }
 
  .faq-item {
    background: var(--faq-card);
    border: 1.5px solid var(--faq-border);
    border-radius: 14px;
    overflow: hidden;
    transition: border-color 0.25s, box-shadow 0.25s, transform 0.2s;
  }
  .faq-item:hover {
    border-color: rgba(232,82,10,0.35);
    box-shadow: 0 4px 20px rgba(10,37,64,0.07);
    transform: translateY(-1px);
  }
  .faq-item.open {
    border-color: var(--faq-accent);
    box-shadow: 0 6px 32px rgba(232,82,10,0.12);
  }
  .faq-item.hidden { display: none; }
 
  .faq-question {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 22px 26px;
    cursor: pointer;
    user-select: none;
    list-style: none;
  }
  .faq-question::-webkit-details-marker { display: none; }
 
  .faq-q-icon {
    flex-shrink: 0;
    width: 40px; height: 40px;
    border-radius: 10px;
    background: var(--faq-badge-bg);
    display: flex; align-items: center; justify-content: center;
    color: var(--faq-accent);
    transition: background 0.2s, color 0.2s;
  }
  .faq-item.open .faq-q-icon {
    background: var(--faq-accent);
    color: #fff;
  }
 
  .faq-q-text {
    flex: 1;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 1.02rem;
    color: var(--faq-text);
    line-height: 1.45;
    transition: color 0.2s;
  }
  .faq-item.open .faq-q-text { color: var(--faq-primary); }
 
  .faq-q-badge {
    flex-shrink: 0;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 20px;
    background: var(--faq-bg);
    color: var(--faq-muted);
    border: 1px solid var(--faq-border);
    display: none;
  }
  @media (min-width: 768px) { .faq-q-badge { display: inline-block; } }
 
  .faq-chevron {
    flex-shrink: 0;
    width: 32px; height: 32px;
    border-radius: 8px;
    background: var(--faq-bg);
    display: flex; align-items: center; justify-content: center;
    color: var(--faq-muted);
    transition: background 0.2s, color 0.2s, transform 0.3s;
  }
  .faq-item.open .faq-chevron {
    transform: rotate(180deg);
    background: rgba(232,82,10,0.1);
    color: var(--faq-accent);
  }
 
  /* Panel de respuesta */
  .faq-answer-wrapper {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.42s cubic-bezier(0.4,0,0.2,1);
  }
  .faq-item.open .faq-answer-wrapper {
    max-height: 800px;
  }
  .faq-answer {
    padding: 0 26px 24px 82px;
    color: var(--faq-muted);
    font-size: 0.97rem;
    line-height: 1.75;
    border-top: 1px solid var(--faq-border);
    padding-top: 18px;
    margin-top: 0;
  }
  @media (max-width: 575px) {
    .faq-answer { padding: 16px 20px 22px; }
  }
 
  /* Highlight de búsqueda */
  .faq-highlight {
    background: rgba(232,82,10,0.18);
    color: var(--faq-accent);
    font-weight: 600;
    border-radius: 3px;
    padding: 0 2px;
  }
 
  /* --- Contador de resultados --- */
  #faqCount {
    font-size: 0.88rem;
    color: var(--faq-muted);
    font-style: italic;
    margin-bottom: 20px;
    min-height: 22px;
    transition: opacity 0.2s;
  }
 
  /* --- Mensaje sin resultados --- */
  #faqNoResults {
    display: none;
    text-align: center;
    padding: 64px 24px;
  }
  #faqNoResults .no-results-icon {
    width: 72px; height: 72px;
    background: var(--faq-badge-bg);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
    color: var(--faq-accent);
  }
  #faqNoResults h4 {
    font-family: 'Syne', sans-serif;
    font-size: 1.2rem;
    color: var(--faq-primary);
    margin-bottom: 8px;
  }
  #faqNoResults p { color: var(--faq-muted); font-size: 0.95rem; }
 
  /* --- CTA lateral / Panel de contacto --- */
  .faq-cta-card {
    background: var(--faq-gradient);
    border-radius: 20px;
    padding: 40px 32px;
    color: #fff;
    position: sticky;
    top: 24px;
  }
  .faq-cta-card .cta-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    background: rgba(255,255,255,0.12);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 22px;
    color: #fff;
  }
  .faq-cta-card h3 {
    font-family: 'Syne', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
  }
  .faq-cta-card p {
    font-size: 0.92rem;
    opacity: 0.8;
    line-height: 1.65;
    margin-bottom: 28px;
  }
  .faq-cta-phone {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 14px 18px;
    margin-bottom: 14px;
    text-decoration: none;
    color: #fff;
    transition: background 0.2s;
    border: 1px solid rgba(255,255,255,0.15);
  }
  .faq-cta-phone:hover { background: rgba(255,255,255,0.18); color: #fff; }
  .faq-cta-phone .phone-label { font-size: 0.75rem; opacity: 0.7; display: block; }
  .faq-cta-phone .phone-number {
    font-family: 'Syne', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    display: block;
    line-height: 1.1;
  }
  .faq-cta-btn {
    display: block;
    width: 100%;
    padding: 14px;
    background: var(--faq-accent);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.97rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    margin-top: 8px;
  }
  .faq-cta-btn:hover {
    background: var(--faq-accent-light);
    color: #fff;
    transform: translateY(-1px);
  }
 
  .faq-cta-features {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.12);
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
  }
  .faq-cta-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.87rem;
    opacity: 0.85;
    margin-bottom: 10px;
  }
  .faq-cta-features li:last-child { margin-bottom: 0; }
  .faq-cta-features li svg { flex-shrink: 0; color: #ffb347; }
 
  /* --- Stats rápidos --- */
  .faq-stats {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 1px;
    background: var(--faq-border);
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 40px;
    border: 1.5px solid var(--faq-border);
  }
  .faq-stat {
    background: #fff;
    padding: 20px 16px;
    text-align: center;
  }
  .faq-stat-number {
    font-family: 'Syne', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--faq-accent);
    line-height: 1;
    display: block;
    margin-bottom: 4px;
  }
  .faq-stat-label {
    font-size: 0.78rem;
    color: var(--faq-muted);
    font-weight: 500;
    line-height: 1.3;
    display: block;
  }
 
  /* --- Animación de entrada --- */
  @keyframes faqFadeUp {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .faq-item { animation: faqFadeUp 0.4s ease both; }
  .faq-item:nth-child(1)  { animation-delay: 0.05s; }
  .faq-item:nth-child(2)  { animation-delay: 0.10s; }
  .faq-item:nth-child(3)  { animation-delay: 0.15s; }
  .faq-item:nth-child(4)  { animation-delay: 0.20s; }
  .faq-item:nth-child(5)  { animation-delay: 0.25s; }
  .faq-item:nth-child(6)  { animation-delay: 0.30s; }
  .faq-item:nth-child(7)  { animation-delay: 0.35s; }
  .faq-item:nth-child(8)  { animation-delay: 0.40s; }
  .faq-item:nth-child(9)  { animation-delay: 0.45s; }
  .faq-item:nth-child(10) { animation-delay: 0.50s; }
  .faq-item:nth-child(11) { animation-delay: 0.55s; }
  .faq-item:nth-child(12) { animation-delay: 0.60s; }
 
  /* responsive: quitar sticky en móvil */
  @media (max-width: 991px) {
    .faq-cta-card { position: relative; top: auto; margin-top: 40px; }
  }










  #equipo {
    background: var(--t-bg);
    padding: 100px 0 112px;
    font-family: 'DM Sans', sans-serif;
    position: relative;
    overflow: hidden;
  }

  /* Decoración geométrica de fondo */
  #equipo .bg-deco {
    position: absolute;
    pointer-events: none;
    z-index: 0;
  }
  #equipo .bg-deco-1 {
    top: -60px; left: -60px;
    width: 340px; height: 340px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(10,37,64,0.05) 0%, transparent 70%);
  }
  #equipo .bg-deco-2 {
    bottom: -80px; right: -80px;
    width: 440px; height: 440px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232,82,10,0.06) 0%, transparent 70%);
  }
  #equipo .bg-deco-3 {
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    width: 900px; height: 900px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232,82,10,0.025) 0%, transparent 60%);
  }

  #equipo > .container { position: relative; z-index: 1; }

  /* ── Eyebrow / Título ── */
  .team-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--t-badge-bg);
    color: var(--t-badge-text);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 40px;
    border: 1px solid rgba(232,82,10,0.2);
    margin-bottom: 18px;
  }

  .team-title {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--t-primary);
    line-height: 1.15;
    margin-bottom: 18px;
  }
  .team-title span {
    color: var(--t-accent);
    position: relative;
    display: inline-block;
  }
  .team-title span::after {
    content: '';
    position: absolute;
    left: 0; bottom: 2px;
    width: 100%; height: 4px;
    background: var(--t-accent);
    border-radius: 2px;
    opacity: 0.22;
  }

  .team-subtitle {
    color: var(--t-muted);
    font-size: 1.05rem;
    max-width: 580px;
    line-height: 1.72;
    margin-bottom: 0;
  }

  /* ── Franja de valores corporativos (banner horizontal) ── */
  .team-values-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    background: var(--t-gradient);
    border-radius: 18px;
    overflow: hidden;
    margin: 56px 0 64px;
  }
  .team-value-item {
    flex: 1 1 200px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 26px 28px;
    border-right: 1px solid rgba(255,255,255,0.1);
    transition: background 0.25s;
  }
  .team-value-item:last-child { border-right: none; }
  .team-value-item:hover { background: rgba(255,255,255,0.06); }
  .team-value-icon {
    flex-shrink: 0;
    width: 44px; height: 44px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: #ffb347;
  }
  .team-value-text strong {
    display: block;
    font-family: 'Syne', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2px;
  }
  .team-value-text span {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.3;
  }

  /* ── Tarjeta de miembro ── */
  .team-card {
    background: #fff;
    border: 1.5px solid var(--t-border);
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    transition: border-color 0.28s, box-shadow 0.28s, transform 0.25s;
    animation: teamFadeUp 0.5s ease both;
    position: relative;
  }
  .team-card:hover {
    border-color: rgba(232,82,10,0.4);
    box-shadow: 0 12px 40px rgba(10,37,64,0.1);
    transform: translateY(-5px);
  }

  /* Número de orden decorativo */
  .team-card-number {
    position: absolute;
    top: 16px; right: 20px;
    font-family: 'Syne', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: rgba(10,37,64,0.05);
    line-height: 1;
    user-select: none;
    pointer-events: none;
    z-index: 0;
  }

  /* Zona foto */
  .team-photo-wrap {
    position: relative;
    padding: 32px 32px 0;
    z-index: 1;
  }
  .team-photo-bg {
    width: 88px; height: 88px;
    border-radius: 20px;
    background: var(--t-bg-alt);
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
    border: 2px solid var(--t-border);
    transition: border-color 0.25s;
    flex-shrink: 0;
  }
  .team-card:hover .team-photo-bg { border-color: rgba(232,82,10,0.4); }

  .team-photo-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
    border-radius: 18px;
  }

  /* Icono fallback cuando no hay foto */
  .team-photo-icon {
    color: var(--t-muted);
    opacity: 0.5;
  }

  .team-card-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    position: relative;
    z-index: 1;
  }
  .team-card-meta { flex: 1; min-width: 0; }
  .team-card-name {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--t-primary);
    margin-bottom: 4px;
    line-height: 1.25;
  }
  .team-card-role {
    font-size: 0.83rem;
    font-weight: 600;
    color: var(--t-accent);
    letter-spacing: 0.04em;
    margin-bottom: 0;
    line-height: 1.35;
  }

  /* Experiencia badge */
  .team-exp-badge {
    flex-shrink: 0;
    background: var(--t-badge-bg);
    color: var(--t-badge-text);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 5px 11px;
    border-radius: 20px;
    border: 1px solid rgba(232,82,10,0.18);
    white-space: nowrap;
  }

  /* Cuerpo */
  .team-card-body {
    padding: 20px 32px 28px;
    position: relative; z-index: 1;
  }

  .team-divider {
    height: 1.5px;
    background: var(--t-border);
    border: none;
    margin: 16px 0 18px;
  }

  .team-bio {
    color: var(--t-muted);
    font-size: 0.93rem;
    line-height: 1.72;
    margin-bottom: 20px;
  }

  /* Especialidades */
  .team-specs-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--t-primary);
    opacity: 0.55;
    margin-bottom: 10px;
    display: block;
  }
  .team-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 22px;
  }
  .team-spec-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--t-bg-alt);
    color: var(--t-text);
    font-size: 0.8rem;
    font-weight: 500;
    padding: 5px 12px;
    border-radius: 20px;
    border: 1px solid var(--t-border);
    transition: background 0.2s, border-color 0.2s, color 0.2s;
  }
  .team-card:hover .team-spec-tag {
    background: var(--t-badge-bg);
    border-color: rgba(232,82,10,0.2);
    color: var(--t-badge-text);
  }
  .team-spec-tag svg { opacity: 0.6; }

  /* Stats de la tarjeta */
  .team-card-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--t-border);
    border-radius: 12px;
    overflow: hidden;
    border: 1.5px solid var(--t-border);
  }
  .team-card-stat {
    background: var(--t-bg-alt);
    padding: 12px 8px;
    text-align: center;
    transition: background 0.2s;
  }
  .team-card:hover .team-card-stat { background: var(--t-badge-bg); }
  .team-card-stat-val {
    display: block;
    font-family: 'Syne', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--t-accent);
    line-height: 1;
    margin-bottom: 3px;
  }
  .team-card-stat-lbl {
    display: block;
    font-size: 0.7rem;
    color: var(--t-muted);
    font-weight: 500;
    line-height: 1.3;
  }

  /* ── Tarjeta del fundador / destacada ── */
  .team-card.featured {
    border-color: var(--t-accent);
    background: linear-gradient(160deg, #fff 0%, #fff8f5 100%);
    box-shadow: 0 8px 32px rgba(232,82,10,0.1);
  }
  .team-card.featured .team-photo-bg {
    width: 100px; height: 100px;
    border-color: rgba(232,82,10,0.3);
  }
  .team-card.featured .team-card-name { font-size: 1.2rem; }
  .team-featured-ribbon {
    position: absolute;
    top: 20px; right: -1px;
    background: var(--t-accent);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 5px 14px 5px 12px;
    border-radius: 4px 0 0 4px;
    z-index: 2;
  }
  .team-featured-ribbon::after {
    content: '';
    position: absolute;
    right: 0; bottom: -7px;
    border-left: 7px solid #b73d00;
    border-bottom: 7px solid transparent;
  }

  /* ── Bloque de certificaciones ── */
  .team-certs {
    background: var(--t-bg-alt);
    border: 1.5px solid var(--t-border);
    border-radius: 20px;
    padding: 36px 40px;
  }
  .team-certs-title {
    font-family: 'Syne', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--t-primary);
    margin-bottom: 24px;
  }
  .cert-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--t-border);
  }
  .cert-item:last-child { border-bottom: none; padding-bottom: 0; }
  .cert-icon {
    flex-shrink: 0;
    width: 40px; height: 40px;
    background: #fff;
    border: 1.5px solid var(--t-border);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--t-accent);
  }
  .cert-info strong {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--t-text);
    margin-bottom: 2px;
  }
  .cert-info span {
    font-size: 0.78rem;
    color: var(--t-muted);
  }
  .cert-year {
    margin-left: auto;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--t-accent);
    background: var(--t-badge-bg);
    padding: 3px 10px;
    border-radius: 20px;
    border: 1px solid rgba(232,82,10,0.15);
    white-space: nowrap;
    flex-shrink: 0;
  }

  /* ── Bloque "Únete al equipo" ── */
  .team-join-card {
    background: var(--t-gradient);
    border-radius: 20px;
    padding: 40px;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
  }
  .team-join-card .join-icon {
    width: 52px; height: 52px;
    background: rgba(255,255,255,0.12);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .team-join-card h3 {
    font-family: 'Syne', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0;
    line-height: 1.3;
  }
  .team-join-card p {
    font-size: 0.92rem;
    opacity: 0.8;
    line-height: 1.65;
    margin-bottom: 0;
    flex: 1;
  }
  .team-join-perks {
    list-style: none;
    padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: 10px;
  }
  .team-join-perks li {
    display: flex; align-items: center; gap: 10px;
    font-size: 0.87rem;
    opacity: 0.85;
  }
  .team-join-perks li svg { color: #ffb347; flex-shrink: 0; }
  .team-join-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 24px;
    background: var(--t-accent);
    color: #fff;
    border-radius: 12px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
    align-self: flex-start;
    border: none;
    cursor: pointer;
  }
  .team-join-btn:hover {
    background: var(--t-accent-light);
    color: #fff;
    transform: translateY(-1px);
  }

  /* ── Contador animado de empresa ── */
  .team-company-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--t-border);
    border-radius: 16px;
    overflow: hidden;
    border: 1.5px solid var(--t-border);
    margin-bottom: 60px;
  }
  @media (max-width: 767px) {
    .team-company-stats { grid-template-columns: repeat(2,1fr); }
  }
  .company-stat {
    background: #fff;
    padding: 28px 20px;
    text-align: center;
    transition: background 0.2s;
  }
  .company-stat:hover { background: var(--t-badge-bg); }
  .company-stat-num {
    display: block;
    font-family: 'Syne', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--t-primary);
    line-height: 1;
    margin-bottom: 6px;
  }
  .company-stat-num em {
    font-style: normal;
    color: var(--t-accent);
  }
  .company-stat-label {
    display: block;
    font-size: 0.82rem;
    color: var(--t-muted);
    font-weight: 500;
    line-height: 1.35;
  }

  /* ── Línea de separación con texto ── */
  .team-section-divider {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 36px;
  }
  .team-section-divider::before,
  .team-section-divider::after {
    content: '';
    flex: 1;
    height: 1.5px;
    background: var(--t-border);
  }
  .team-section-divider span {
    font-family: 'Syne', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--t-primary);
    opacity: 0.45;
    white-space: nowrap;
  }

  /* ── Animaciones ── */
  @keyframes teamFadeUp {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .team-card:nth-child(1) { animation-delay: 0.05s; }
  .team-card:nth-child(2) { animation-delay: 0.12s; }
  .team-card:nth-child(3) { animation-delay: 0.19s; }
  .team-card:nth-child(4) { animation-delay: 0.26s; }

  @keyframes teamSlideIn {
    from { opacity: 0; transform: translateX(-16px); }
    to   { opacity: 1; transform: translateX(0); }
  }
  .team-values-bar { animation: teamSlideIn 0.6s ease both 0.1s; }
  .team-company-stats { animation: teamFadeUp 0.5s ease both 0.05s; }

  /* ── Responsive ── */
  @media (max-width: 575px) {
    .team-card-body { padding: 18px 22px 22px; }
    .team-photo-wrap { padding: 22px 22px 0; }
    .team-value-item { padding: 18px 20px; }
    .team-certs { padding: 24px 22px; }
    .team-join-card { padding: 28px 24px; }
    .team-company-stats { margin-bottom: 40px; }
  }



html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, div
pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q,
s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li,
figure, header, nav, section, article, aside, footer, figcaption {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
}

/* clear fix */
.grid:after {
  content: '';
  display: block;
  clear: both;
}

/* ---- .grid-item ---- */

.grid-sizer,
.grid-item {
  width: 50%;
}

.grid-item {
  float: left;
}

.grid-item img {
  display: block;
  max-width: 100%;
}

.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.clearfix {
  display: inline-block;
}

html[xmlns] .clearfix {
  display: block;
}

* html .clearfix {
  height: 1%;
}

ul, li {
  padding: 0;
  margin: 0;
  list-style: none;
}

header, nav, section, article, aside, footer, hgroup {
  display: block;
}

* {
  box-sizing: border-box;
}

html, body {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  background-color: #fff;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none !important;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0px;
  margin-bottom: 0px;
}
p {
  font-size: 15px;
  line-height: 30px;
  font-weight: 300;
  color: #afafaf;
}
.main-banner h1 {
  color: #ffffff; /* texto principal blanco */
  
  /* sombra múltiple para contorno y legibilidad en cualquier fondo */
  text-shadow:
    2px 2px 2px rgba(0, 0, 0, 0.7),
    -2px 2px 2px rgba(0, 0, 0, 0.7),
    2px -2px 2px rgba(0, 0, 0, 0.7),
    -2px -2px 2px rgba(0, 0, 0, 0.7),
    0px 0px 4px rgba(0, 0, 0, 0.5);
  
  /* Ajustes opcionales para mejor suavidad */
  font-family: "Ceviche One", system-ui;
  font-weight: 400;
  font-style: normal;
}
.main-banner p {
  color: #ffffff; /* texto principal blanco */
  
  /* sombra múltiple para contorno y legibilidad en cualquier fondo */
  text-shadow:
    2px 2px 2px rgba(0, 0, 0, 0.7),
    -2px 2px 2px rgba(0, 0, 0, 0.7),
    2px -2px 2px rgba(0, 0, 0, 0.7),
    -2px -2px 2px rgba(0, 0, 0, 0.7),
    0px 0px 4px rgba(0, 0, 0, 0.5);
  
  /* Ajustes opcionales para mejor suavidad */
  font-family: "Ceviche One", system-ui;
  font-weight: 400;
  font-style: normal;
}
ul {
  margin-bottom: 0px;
}


img {
  width: 100%;
  overflow: hidden;
}

/* 
---------------------------------------------
global styles
--------------------------------------------- 
*/
html,
body {
  background: #fff;
  font-family: 'Roboto', sans-serif;
}

::selection {
  background: #619e02;
  color: #fff !important;
}

::-moz-selection {
  background: #619e02;
  color: #fff !important;
}

@media (max-width: 991px) {
  html, body {
    overflow-x: hidden;
  }
  .mobile-top-fix {
    margin-top: 30px;
    margin-bottom: 0px;
  }
  .mobile-bottom-fix {
    margin-bottom: 30px;
  }
  .mobile-bottom-fix-big {
    margin-bottom: 60px;
  }
}

.section-heading {
  position: relative;
  z-index: 2;
}


.section-heading h2 {
  color: #2a2a2a;
  font-size: 38px;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 10px;
}

.section-heading h2 em {
  font-style: normal;
  color: #619e02;
}

.section-heading h3 {
  color: #2a2a2a;
  font-size: 34px;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 10px;
}

.section-heading h3 em {
  font-style: normal;
  color: #619e02;
}

.section-heading h4 {
  color: #2a2a2a;
  font-size: 30px;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 10px;
}

.section-heading h4 em {
  font-style: normal;
  color: #619e02;
}

.section-heading img {
  width: 45px;
  height: 2px;
}

.section-heading p {
  margin-top: 10px;
}

.show-up {
  position: relative;
  z-index: 2;
}

.white-button a {
  display: inline-block !important;
  padding: 10px 20px !important;
  color: #619e02 !important;
  text-transform: capitalize;
  font-size: 15px;
  background-color: #fff;
  border-radius: 23px;
  font-weight: 500 !important;
  letter-spacing: 0.3px !important;
  transition: all .5s;
}

.white-button a i {
  margin-left: 5px;
  font-size: 18px;
}

.white-button a:hover {
  background-color: #619e02;
  color: #fff !important;
}

.text-button a {
  font-size: 15px;
}

.text-button a i {
  margin-left: 5px;
  font-size: 14px;
  transition: all .3s;
}

.text-button a:hover i {
  margin-left: 8px;
}

.gradient-button a {
  display: inline-block !important;
  padding: 10px 20px !important;
  color: #fff !important;
  text-transform: capitalize;
  font-size: 15px;
  background: rgb(19,175,240);
  background: linear-gradient(105deg, rgba(91,104,235,1) 0%, rgba(40,225,253,1) 100%);
  border-radius: 23px;
  font-weight: 500 !important;
  letter-spacing: 0.3px !important;
  transition: all .5s;
}

.gradient-button a:hover {
  color: #fff !important;
  background: rgb(19,175,240);
  background: linear-gradient(105deg, rgba(91,104,235,1) 0%, rgba(40,225,253,1) 100%);
}

.border-button a {
  display: inline-block !important;
  padding: 10px 20px !important;
  color: #619e02 !important;
  border: 1px solid #619e02;
  text-transform: capitalize;
  font-size: 15px;
  display: inline-block;
  background-color: #fff;
  border-radius: 23px;
  font-weight: 500 !important;
  letter-spacing: 0.3px !important;
  transition: all .5s;
}

.border-button a:hover {
  background-color: #619e02;
  color: #fff !important;
}


/* 
---------------------------------------------
header
--------------------------------------------- 
*/

.background-header {
  background-color: #fff !important;
  height: 80px!important;
  border-bottom: none !important;
  position: fixed!important;
  top: 0px;
  left: 0px;
  right: 0px;
  box-shadow: 0px 5px 8px rgba(0,0,0,0.03);
}

.background-header .logo,
.background-header .main-nav .nav li a {
  color: #fff;
}

.background-header .main-nav .nav li:hover a {
  color: #619e02;
}

.background-header .nav li a.active {
  position: relative;
  color: #fff;
}

.background-header .nav li a.active:after {
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #619e02;
  content: '';
  left: 50%;
  bottom: -20px;
  transform: translateX(-50%);
}

.background-header .nav li:last-child a.active:after {
  background-color: transparent;
}

.header-area {
  background-color: transparent;
  border-bottom: 1px solid rgba(42,42,42,0.2);
  position: absolute;
  left: 0px;
  right: 0px;
  z-index: 100;
  height: 100px;
  -webkit-transition: all .5s ease 0s;
  -moz-transition: all .5s ease 0s;
  -o-transition: all .5s ease 0s;
  transition: all .5s ease 0s;
}

.header-area .main-nav {
  min-height: 80px;
  background: transparent;
}

.header-area .main-nav .logo {
  float: left;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.header-area .main-nav .logo {
    line-height: 100px;
    float: left;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.background-header .main-nav .logo {
  line-height: 80px;
}

.background-header .main-nav .nav {
  margin-top: 20px !important;
}

.header-area .main-nav .nav {
  float: right;
  margin-top: 30px;
  margin-right: 0px;
  background-color: transparent;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  position: relative;
  z-index: 999;
}

.header-area .main-nav .nav li {
  padding-left: 20px;
  padding-right: 20px;
}

.header-area .main-nav .nav li:nth-child(6) {
  padding-right: 0px;
  padding-left: 40px;
}

.header-area .main-nav .nav li:last-child a ,
.background-header .main-nav .nav li:last-child a,
.header-area .main-nav .nav li:nth-child(6) a ,
.background-header .main-nav .nav li:nth-child(6) a {
  padding: 0px 20px !important;
  font-weight: 400;
}

.header-area .main-nav .nav li:last-child a:hover ,
.background-header .main-nav .nav li:last-child a:hover,
.header-area .main-nav .nav li:nth-child(6) a:hover ,
.background-header .main-nav .nav li:nth-child(6) a:hover {
  color: #fff !important;
}

.header-area .main-nav .nav li a {
  display: block;
  font-weight: 500;
  font-size: 15px;
  color: #2a2a2a;
  text-transform: capitalize;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  height: 40px;
  line-height: 40px;
  border: transparent;
  letter-spacing: 1px;

  /* Sombra para mejorar legibilidad en cualquier fondo */
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.header-area .main-nav .nav li:hover a,
.header-area .main-nav .nav li a.active {
  color: #619e02!important;
}

.header-area .main-nav .nav li:last-child a.active {
  color: #fff !important;
}

.background-header .main-nav .nav li:hover a,
.background-header .main-nav .nav li a.active {
  color: #619e02!important;
  opacity: 1;
}

.header-area .main-nav .nav li.submenu {
  position: relative;
  padding-right: 30px;
}

.header-area .main-nav .nav li.submenu:after {
  font-family: FontAwesome;
  content: "\f107";
  font-size: 12px;
  color: #2a2a2a;
  position: absolute;
  right: 18px;
  top: 12px;
}

.background-header .main-nav .nav li.submenu:after {
  color: #2a2a2a;
}

.header-area .main-nav .nav li.submenu ul {
  position: absolute;
  width: 200px;
  box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.06);
  overflow: hidden;
  top: 50px;
  opacity: 0;
  transform: translateY(+2em);
  visibility: hidden;
  z-index: -1;
  transition: all 0.3s ease-in-out 0s, visibility 0s linear 0.3s, z-index 0s linear 0.01s;
}

.header-area .main-nav .nav li.submenu ul li {
  margin-left: 0px;
  padding-left: 0px;
  padding-right: 0px;
}

.header-area .main-nav .nav li.submenu ul li a {
  opacity: 1;
  display: block;
  background: #f7f7f7;
  color: #2a2a2a!important;
  padding-left: 20px;
  height: 40px;
  line-height: 40px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  position: relative;
  font-size: 13px;
  font-weight: 400;
  border-bottom: 1px solid #eee;
}

.header-area .main-nav .nav li.submenu ul li a:hover {
  background: #fff;
  color: #619e02!important;
  padding-left: 25px;
}

.header-area .main-nav .nav li.submenu ul li a:hover:before {
  width: 3px;
}

.header-area .main-nav .nav li.submenu:hover ul {
  visibility: visible;
  opacity: 1;
  z-index: 1;
  transform: translateY(0%);
  transition-delay: 0s, 0s, 0.3s;
}

.header-area .main-nav .menu-trigger {
  cursor: pointer;
  display: block;
  position: absolute;
  top: 33px;
  width: 32px;
  height: 40px;
  text-indent: -9999em;
  z-index: 99;
  right: 40px;
  display: none;
}

.background-header .main-nav .menu-trigger {
  top: 23px;
}

.header-area .main-nav .menu-trigger span,
.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background-color: #2a2a2a;
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 0;
}

.background-header .main-nav .menu-trigger span,
.background-header .main-nav .menu-trigger span:before,
.background-header .main-nav .menu-trigger span:after {
  background-color: #2a2a2a;
}

.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background-color: #2a2a2a;
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 0;
  width: 75%;
}

.background-header .main-nav .menu-trigger span:before,
.background-header .main-nav .menu-trigger span:after {
  background-color: #2a2a2a;
}

.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
  content: "";
}

.header-area .main-nav .menu-trigger span {
  top: 16px;
}

.header-area .main-nav .menu-trigger span:before {
  -moz-transform-origin: 33% 100%;
  -ms-transform-origin: 33% 100%;
  -webkit-transform-origin: 33% 100%;
  transform-origin: 33% 100%;
  top: -10px;
  z-index: 10;
}

.header-area .main-nav .menu-trigger span:after {
  -moz-transform-origin: 33% 0;
  -ms-transform-origin: 33% 0;
  -webkit-transform-origin: 33% 0;
  transform-origin: 33% 0;
  top: 10px;
}

.header-area .main-nav .menu-trigger.active span,
.header-area .main-nav .menu-trigger.active span:before,
.header-area .main-nav .menu-trigger.active span:after {
  background-color: transparent;
  width: 100%;
}

.header-area .main-nav .menu-trigger.active span:before {
  -moz-transform: translateY(6px) translateX(1px) rotate(45deg);
  -ms-transform: translateY(6px) translateX(1px) rotate(45deg);
  -webkit-transform: translateY(6px) translateX(1px) rotate(45deg);
  transform: translateY(6px) translateX(1px) rotate(45deg);
  background-color: #2a2a2a;
}

.background-header .main-nav .menu-trigger.active span:before {
  background-color: #2a2a2a;
}

.header-area .main-nav .menu-trigger.active span:after {
  -moz-transform: translateY(-6px) translateX(1px) rotate(-45deg);
  -ms-transform: translateY(-6px) translateX(1px) rotate(-45deg);
  -webkit-transform: translateY(-6px) translateX(1px) rotate(-45deg);
  transform: translateY(-6px) translateX(1px) rotate(-45deg);
  background-color: #2a2a2a;
}

.background-header .main-nav .menu-trigger.active span:after {
  background-color: #2a2a2a;
}

.header-area.header-sticky {
  min-height: 80px;
}

.header-area .nav {
  margin-top: 30px;
}

.header-area.header-sticky .nav li a.active {
  color: #619e02;
}

@media (max-width: 1200px) {
  .header-area .main-nav .nav li {
    padding-left: 12px;
    padding-right: 12px;
  }
  .header-area .main-nav:before {
    display: none;
  }
}

@media (max-width: 992px) {
  .header-area .main-nav .nav li:last-child  ,
  .background-header .main-nav .nav li:last-child {
    color: #069;
  }
  .header-area .main-nav .nav li:nth-child(6),
  .background-header .main-nav .nav li:nth-child(6) {
    padding-right: 0px;
  }
  .background-header .nav li a.active:after {
    display: none;
  }
}

@media (max-width: 767px) {
  .pre-header ul.info li:last-child,
  .pre-header ul.info li:nth-child(6) {
    display: none!important;
  }
  .background-header .main-nav .nav {
    margin-top: 80px !important;
  }
  .header-area .main-nav .logo {
    color: #1e1e1e;
  }
  .header-area.header-sticky .nav li a:hover,
  .header-area.header-sticky .nav li a.active {
    color: #619e02!important;
    opacity: 1;
  }
  .header-area.header-sticky .nav li.search-icon a {
    width: 100%;
  }
  .header-area {
    background-color: #fff;
    padding: 0px 15px;
    height: 100px;
    box-shadow: none;
    text-align: center;
    box-shadow: 0px 5px 8px rgba(0,0,0,0.03);
  }
  .header-area .container {
    padding: 0px;
  }
  .header-area .logo {
    margin-left: 30px;
  }
  .header-area .menu-trigger {
    display: block !important;
  }
  .header-area .main-nav {
    overflow: hidden;
  }
  .header-area .main-nav .nav {
    float: none;
    width: 100%;
    display: none;
    -webkit-transition: all 0s ease 0s;
    -moz-transition: all 0s ease 0s;
    -o-transition: all 0s ease 0s;
    transition: all 0s ease 0s;
    margin-left: 0px;
  }
  .background-header .nav {
    margin-top: 80px;
  }
  .header-area .main-nav .nav li:first-child {
    border-top: 1px solid #eee;
  }
  .header-area.header-sticky .nav {
    margin-top: 100px;
  }
  .header-area .main-nav .nav li {
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #e7e7e7;
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
  .header-area .main-nav .nav li a {
    height: 50px !important;
    line-height: 50px !important;
    padding: 0px !important;
    border: none !important;
    background: #f7f7f7 !important;
    color: #191a20 !important;
  }
  .header-area .main-nav .nav li a:hover {
    background: #eee !important;
    color: #619e02!important;
  }
  .header-area .main-nav .nav li.submenu ul {
    position: relative;
    visibility: inherit;
    opacity: 1;
    z-index: 1;
    transform: translateY(0%);
    transition-delay: 0s, 0s, 0.3s;
    top: 0px;
    width: 100%;
    box-shadow: none;
    height: 0px;
  }
  .header-area .main-nav .nav li.submenu ul li a {
    font-size: 12px;
    font-weight: 400;
  }
  .header-area .main-nav .nav li.submenu ul li a:hover:before {
    width: 0px;
  }
  .header-area .main-nav .nav li.submenu ul.active {
    height: auto !important;
  }
  .header-area .main-nav .nav li.submenu:after {
    color: #3B566E;
    right: 25px;
    font-size: 14px;
    top: 15px;
  }
  .header-area .main-nav .nav li.submenu:hover ul, .header-area .main-nav .nav li.submenu:focus ul {
    height: 0px;
  }
}

@media (min-width: 767px) {
  .header-area .main-nav .nav {
    display: flex !important;
  }
}

/* 
---------------------------------------------
preloader
--------------------------------------------- 
*/

.js-preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
    z-index: 9999;
    -webkit-transition: opacity 0.25s ease;
    transition: opacity 0.25s ease;
}

.js-preloader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

@-webkit-keyframes dot {
    50% {
        -webkit-transform: translateX(96px);
        transform: translateX(96px);
    }
}

@keyframes dot {
    50% {
        -webkit-transform: translateX(96px);
        transform: translateX(96px);
    }
}

@-webkit-keyframes dots {
    50% {
        -webkit-transform: translateX(-31px);
        transform: translateX(-31px);
    }
}

@keyframes dots {
    50% {
        -webkit-transform: translateX(-31px);
        transform: translateX(-31px);
    }
}

.preloader-inner {
    position: relative;
    width: 142px;
    height: 40px;
    background: #fff;
}

.preloader-inner .dot {
    position: absolute;
    width: 16px;
    height: 16px;
    top: 12px;
    left: 15px;
    background: #619e02;
    border-radius: 50%;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-animation: dot 2.8s infinite;
    animation: dot 2.8s infinite;
}

.preloader-inner .dots {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    margin-top: 12px;
    margin-left: 31px;
    -webkit-animation: dots 2.8s infinite;
    animation: dots 2.8s infinite;
}

.preloader-inner .dots span {
    display: block;
    float: left;
    width: 16px;
    height: 16px;
    margin-left: 16px;
    background: #619e02;
    border-radius: 50%;
}



/* 
---------------------------------------------
Banner Style
--------------------------------------------- 
*/

.main-banner {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 250px 120px 150px 120px;
  position: relative;
  overflow: hidden;
}

.main-banner:after {
  content: '';
  background-image: url(../images/hero-pro-total.webp);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.main-banner .left-content {
  margin-right: 15px;
}

.main-banner .left-content h2 {
  z-index: 2;
  position: relative;
  font-weight: 700;
  line-height: 70px;
  font-size: 50px;
  margin-bottom: 20px;
}

.main-banner .left-content p {
  margin-bottom: 45px;
  color: #2a2a2a;
  font-weight: 400;
}

.main-banner .left-content .first-button {
  margin-right: 15px;
}

.main-banner .left-content .white-button {
  display: inline-block;
}

.main-banner .right-image {
  text-align: center;
  position: relative;
  z-index: 20;
}

.main-banner .right-image img {
  max-width: 710px;
}

.main-banner .left-content .white-button a {
  background-color: #619e02;
  color: #fff !important;
}

/* 
---------------------------------------------
Services Style
--------------------------------------------- 
*/

.services {
  padding-top: 130px;
  position: relative;
}

.services  .section-heading p {
  margin-top: 10px;
  margin-left: 18%;
  margin-right: 18%;
}

.services .container-fluid {
  padding-left: 65px;
  padding-right: 65px;
}

.services:after {
  content: '';
  background-image: url(../images/fondo-servicios-good.webp);
  background-repeat: no-repeat;
  position: absolute;
  right: 0;
  bottom: 0;
  height: 1200px;
  width: 1400px;
  z-index: 0;
}


.services .section-heading {
  text-align: center;
  margin-bottom: 80px;
}

.services .section-heading .line-dec {
  margin: 0 auto;
}

.service-item {
  position: relative;
  z-index: 1;
  padding: 30px;
  box-shadow: 0px 0px 15px rgba(0,0,0,0.1);
  background-color: #fff;
  border-radius: 10px;
  border-top-right-radius: 50px;
  transition: all .3s;
}

.service-item .icon {
  margin-left: 0px;
  margin-bottom: 30px;
  background-repeat: no-repeat;
  width: 50px;
  height: 50px;
  transition: all .3s;
}
.service-item h2 {
  transition: all .3s;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
}
.service-item h3 {
  transition: all .3s;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}
.service-item h4 {
  transition: all .3s;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
}

.service-item p {
  transition: all .3s;
  font-size: 15px;
  margin-bottom: 20px;
}
.service-item:hover h2,
.service-item:hover h3,
.service-item:hover h4,
.service-item:hover p,
.service-item:hover .text-button a {
  color: #fff;
}

.first-service .icon {
  background-image: url(../images/service-icon-01.png);
}

.first-service:hover .icon {
  background-image: url(../images/service-icon-hover-01.png);
}

.second-service .icon {
  background-image: url(../images/service-icon-02.png);
}

.second-service:hover .icon {
  background-image: url(../images/service-icon-hover-02.png);
}


.third-service .icon {
  background-image: url(../images/service-icon-03.png);
}

.third-service:hover .icon {
  background-image: url(../images/service-icon-hover-03.png);
}

.fourth-service .icon {
  background-image: url(../images/service-icon-04.png);
}

.fourth-service:hover .icon {
  background-image: url(../images/service-icon-hover-04.png);
}

.service-item:hover {
  background-image: url(../images/service-bg.jpg);
  background-position: right top;
  background-repeat: no-repeat;
  background-size: cover;
}



/*
---------------------------------------------
About Us
---------------------------------------------
*/

.about-us {
  padding-top: 130px;
  position: relative;
}

.about-us .section-heading {
  margin-bottom: 45px;
}

.about-us .section-heading,
.about-us .box-item,
.about-us p,
.about-us .box-item .gradient-button,
.about-us .box-item span {
  position: relative;
  z-index: 1;
}

.about-us .box-item {
  box-shadow: 0px 0px 15px rgba(0,0,0,0.07);
  padding: 10px 30px;
  background-color: #fff;
  border-radius: 40px;
  margin-bottom: 30px;
}
.about-us .box-item h2 a {
  font-size: 28px;
  font-weight: 700;
  margin-top: 8px;
  color: #2a2a2a;
  transition: all .3s;
}
.about-us .box-item h3 a {
  font-size: 24px;
  font-weight: 700;
  margin-top: 8px;
  color: #2a2a2a;
  transition: all .3s;
}
.about-us .box-item h4 a {
  font-size: 20px;
  font-weight: 700;
  margin-top: 8px;
  color: #2a2a2a;
  transition: all .3s;
}

.about-us .box-item p {
  margin-bottom: 0px;
}
.about-us .box-item:hover h2 a {
  color: #619e02;
}
.about-us .box-item:hover h3 a {
  color: #619e02;
}
.about-us .box-item:hover h4 a {
  color: #619e02;
}

.about-us .gradient-button {
  margin-top: 30px;
  margin-bottom: 10px;
}

.about-us span {
  font-size: 14px;
  color: #7a7a7a;
}

.about-us .right-image {
  position: relative;
  z-index: 1;
}

.about-us:after {
  background-image: url(../images/7fe13faf-3501-46d4-a43e-d6d3419d158a.webp);
  width: 777px;
  height: 1132px;
  content: '';
  position: absolute;
  background-repeat: no-repeat;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 0;
}



/* 
---------------------------------------------
The Clients
---------------------------------------------
*/

.the-clients {
  margin-top: 130px;
}

.the-clients  .section-heading {
  text-align: center;
  margin-bottom: 80px;
}

.the-clients  .section-heading p {
  margin-top: 10px;
  margin-left: 18%;
  margin-right: 18%;
}

.the-clients .naccs {
  position: relative;
}
.menu .thumb h2 {
  margin-bottom: 0px;
  font-size: 28px;
  color: #2a2a2a;
}
.menu .thumb h4 {
  margin-bottom: 0px;
  font-size: 24px;
  color: #2a2a2a;
}
.menu .thumb h3 {
  margin-bottom: 0px;
  font-size: 20px;
  color: #2a2a2a;
}

.menu .thumb span.date {
  display: inline-block;
  margin-top: 0px;
  color: #afafaf;
}
.blog-news span.date {
  display: block;
  margin-top: 0px;
  color: #afafaf;
  text-align: right;
}
.the-clients span.titulo {
  display: block;
  color: black;
  text-align: right;
  font-weight: bold;
}
.the-clients span.subtitulo {
  display: block;
  color: #afafaf;
  text-align: right;
}
.the-clients span.date {
  display: block;
  color: black;
  text-align: right;
}
.menu .thumb span.category,
.menu .thumb span.rating {
  font-weight: 700;
  color: #afafaf;
}

.menu .thumb i {
  color: #afafaf;
}

.the-clients .naccs .menu div {
  color: #fff;
  font-size: 15px;
  margin-bottom: 15px;
  margin-top: 15px;
  text-align: left;
  padding: 0px 15px;
  cursor: pointer;
  position: relative;
  transition: 1s all cubic-bezier(0.075, 0.82, 0.165, 1);
}

.the-clients .naccs .menu div.active h2,
.the-clients .naccs .menu div.active h3,
.the-clients .naccs .menu div.active h4,
.the-clients .naccs .menu div.active i,
.the-clients .naccs .menu div.active span.rating,
.the-clients .naccs .menu div.active .thumb {
  color: #619e02;
}

.the-clients ul.nacc {
  position: relative;
  min-height: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
  transition: 0.5s all cubic-bezier(0.075, 0.82, 0.165, 1);
}

.the-clients ul.nacc li {
  opacity: 0;
  transform: translateX(-50px);
  position: absolute;
  list-style: none;
  transition: 1s all cubic-bezier(0.075, 0.82, 0.165, 1);
}

.the-clients ul.nacc li.active {
  transition-delay: 0.3s;
  position: relative;
  z-index: 2;
  opacity: 1;
  transform: translateX(0px);
}

.the-clients ul.nacc li {
  width: 100%;
}

.the-clients .nacc .thumb .client-content img {
  width: 76px;
  height: 62px;
}

.the-clients .nacc .thumb .client-content {
  padding: 60px 30px;
  background-image: url(../images/client-bg.png);
  background-size: cover;
  border-radius: 50px;
  width: 100%;
  height: auto;
  background-repeat: no-repeat;
}

.the-clients .nacc .thumb .client-content p {
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  font-style: italic;
  margin-top: 30px;
}

.the-clients .nacc .thumb .down-content {
  margin-top: 30px;
}

.the-clients .nacc .thumb .down-content img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: inline;
}

.the-clients .nacc .thumb .down-content .right-content {
  display: inline-block;
  margin-left: 20px;
}
.the-clients .nacc .thumb .down-content .right-content h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
}
.the-clients .nacc .thumb .down-content .right-content h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}
.the-clients .nacc .thumb .down-content .right-content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
}

.the-clients .nacc .thumb .down-content .right-content span {
  color: #2a2a2a;
}


/* 
---------------------------------------------
The Clients
---------------------------------------------
*/

.pricing-tables {
  padding-top: 130px;
}

.pricing-tables  .section-heading {
  text-align: center;
  margin-bottom: 80px;
}

.pricing-tables  .section-heading p {
  margin-top: 10px;
  margin-left: 18%;
  margin-right: 18%;
}

.pricing-item-regular {
  margin-top: 30px;
  box-shadow: 0px 0px 15px rgba(0,0,0,0.07);
  border-radius: 50px;
  padding: 90px 30px;
  text-align: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.pricing-item-regular:before {
  position: absolute;
  top: 0;
  left: 0;
  background-image: url(../images/regular-table-top.png);
  z-index: 0;
  content: '';
  width: 274px;
  height: 221px;
}

.pricing-item-regular:after {
  position: absolute;
  bottom: 0;
  right: 0;
  background-image: url(../images/regular-table-bottom.png);
  z-index: 0;
  content: '';
  width: 370px;
  height: 171px;
}

.pricing-item-regular span.price {
  font-size: 40px;
  color: #fff;
  position: absolute;
  font-weight: 700;
  z-index: 1;
  left: 30px;
  top: 30px;
}
.pricing-item-regular h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
}
.pricing-item-regular h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 30px;
}
.pricing-item-regular h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 30px;
}

.pricing-item-regular .icon img {
  width: 120px;
  height: 106px;
  margin-bottom: 30px;
}

.pricing-item-regular ul li {
  color: #619e02;
  font-size: 15px;
  margin-bottom: 15px;
}

.pricing-item-regular ul li:last-child {
  margin-bottom: 0px;
}

.pricing-item-regular ul li.non-function {
  color: #afafaf;
  text-decoration: line-through;
}

.pricing-item-regular .border-button {
  position: relative;
  z-index: 1;
  margin-top: 40px;
}

.pricing-item-pro {
  box-shadow: 0px 0px 15px rgba(0,0,0,0.07);
  border-radius: 50px;
  padding: 120px 30px;
  text-align: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.pricing-item-pro:before {
  position: absolute;
  top: 0;
  left: 0;
  background-image: url(../images/pro-table-top.png);
  z-index: 0;
  content: '';
  width: 281px;
  height: 251px;
}

.pricing-item-pro:after {
  position: absolute;
  bottom: 0;
  right: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../images/pro-table-bottom.png);
  z-index: 0;
  content: '';
  width: 100%;
  height: 201px;
}

.pricing-item-pro span.price {
  font-size: 40px;
  color: #fff;
  position: absolute;
  font-weight: 700;
  z-index: 1;
  left: 30px;
  top: 30px;
}
.pricing-item-pro h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
}
.pricing-item-pro h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 30px;
}
.pricing-item-pro h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 30px;
}

.pricing-item-pro .icon img {
  width: 120px;
  height: 106px;
  margin-bottom: 30px;
}

.pricing-item-pro ul li {
  color: #619e02;
  font-size: 15px;
  margin-bottom: 15px;
}

.pricing-item-pro ul li:last-child {
  margin-bottom: 0px;
}

.pricing-item-pro ul li.non-function {
  color: #afafaf;
  text-decoration: line-through;
}

.pricing-item-pro .border-button {
  position: relative;
  z-index: 1;
  margin-top: 40px;
}




/* 
---------------------------------------------
Free Quote
--------------------------------------------- 
*/

.free-quote {
  background-image: url(../images/quote-bg.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 120px 0px;
  text-align: center;
  position: relative;
  z-index: 2;
  margin-top: 130px;
}

.free-quote .section-heading {
  margin-bottom: 60px;
}

.free-quote .section-heading h6,
.free-quote .section-heading h4,
.free-quote .section-heading h3,
.free-quote .section-heading h2 {
  color: #fff;
}

.free-quote .section-heading .line-dec {
  margin: 0 auto;
  background-color: #fff;
}

.free-quote form {
  background-color: #fff;
  display: inline-block;
  width: 100%;
  min-height: 80px;
  border-radius: 40px;
  position: relative;
  z-index: 1;
}

.free-quote form input {
  width: 100%;
  margin-top: 20px;
  margin-left: 30px;
  color: #afafaf;
  font-weight: 400;
  font-size: 15px;
  height: 40px;
  background-color: transparent;
  border-bottom: 1px solid #eee;
  border-top: none;
  border-left: none;
  border-right: none;
  position: relative;
  z-index: 2;
  outline: none;
}

.free-quote form button {
  width: 100%;
  height: 80px;
  border-top-right-radius: 40px;
  border-bottom-right-radius: 40px;
  outline: none;
  border: none;
  margin-left: 30px;
  background-color: #726ae3;
  font-size: 15px;
  color: #fff;
}


/* 
---------------------------------------------
Footer Style
--------------------------------------------- 
*/

footer {
  background-image: url(../images/footer-bg-em.png);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: 130px;
  padding-top: 300px;
  padding-bottom: 60px;
}

footer .section-heading {
  margin-bottom: 45px;
}
footer .section-heading h2 {
  line-height: 45px;
  color: #fff;
  margin-left: 13%;
  margin-right: 13%;
  text-align: center;
}
footer .section-heading h3 {
  line-height: 45px;
  color: #fff;
  margin-left: 13%;
  margin-right: 13%;
  text-align: center;
}
footer .section-heading h4 {
  line-height: 45px;
  color: #fff;
  margin-left: 13%;
  margin-right: 13%;
  text-align: center;
}

footer #search {
  margin-bottom: 80px;
}

footer #search input::placeholder {
  color: #fff;
}

footer #search input {
  font-size: 15px;
  color: #fff;
  outline: none;
  height: 46px;
  border: none;
  background-color: transparent;
  border-bottom: 1px solid #fff;
  width: 100%;
}

footer #search button {
  height: 46px;
  border-radius: 23px;
  border: 1px solid #fff;
  background-color: transparent;
  color: #fff;
  width: 100%;
  transition: all .5s;
}

footer #search button:hover {
  background-color: #fff;
  color: #619e02;
}

.footer-widget .logo img {
  max-width: 96px;
  margin-bottom: 30px;
}
.footer-widget h2 {
  font-size: 28px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 30px;
}
.footer-widget h3 {
  font-size: 24px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 30px;
}
.footer-widget h4 {
  font-size: 20px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 30px;
}

.footer-widget p {
  margin-bottom: 15px;
}

.footer-widget p,
.footer-widget p a {
  color: #fff;
}

.footer-widget ul {
  display: inline;
  max-width: 40%;
  float: left;
  margin-right: 10%;
}

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

.footer-widget ul li:last-child {
  margin-bottom: 0px;
}

.footer-widget ul li a {
  font-size: 15px;
  color: #fff;
  transition: all .3s;;
}

.footer-widget a:hover {
  opacity: 0.75;
}

footer .copyright-text p {
  text-align: center;
  margin-top: 50px;
  margin-bottom: 0px;
  color: #fff;
}

footer p a {
  color: #fff;
  transition: all .5s;
}

footer p a:hover {
  opacity: 0.75;
  color: #fff;
}


/*
---------------------------------------------
PopUp
---------------------------------------------
*/

#lean_overlay {
  position: fixed;
  z-index: 100;
  top: 0px;
  left: 0px;
  height: 100%;
  width: 100%;
  background: #000;
  display: none;
}

.popupContainer {
  position: absolute;
  width: 400px;
  height: auto;
  left: 45%;
  top: 60px;
  background: #FFF;
}

.btn {
  padding: 10px 20px;
  background: #619e02;
  color: #fff;
  transition: all .3s;
}

.btn_red {
  background: #619e02;
  color: #FFF;
}

.btn:hover {
  background: #E4E4E2;
}

.btn_red:hover {
  color: #2a2a2a;
  background: #E4E4E2;
}

a.btn {
  color: #fff;
  text-align: center;
  text-decoration: none;
}

a.btn_red {
  color: #FFF;
}

.one_half {
  width: 50%;
  display: block;
  float: left;
}

.one_half.last {
  width: 45%;
  margin-left: 5%;
}
/* Popup Styles*/

.popupHeader {
  font-size: 16px;
  text-transform: uppercase;
}

.popupHeader {
  background: #F4F4F2;
  position: relative;
  padding: 10px 20px;
  border-bottom: 1px solid #DDD;
  font-weight: bold;
}

.popupHeader .modal_close {
  position: absolute;
  right: 0;
  top: 0;
  padding: 10px 15px;
  background: #619e02;
  cursor: pointer;
  color: #fff;
  font-size: 16px;
}

.popupBody {
  padding: 20px;
}

.social_login .social_box {
  display: block;
  clear: both;
  padding: 10px;
  margin-bottom: 10px;
  background: #F4F4F2;
  overflow: hidden;
}

.social_login .icon {
  display: inline-block;
  
  padding: 5px 10px;
  margin-right: 10px;
  float: left;
  color: #FFF;
  font-size: 16px;
  text-align: center;
}

.social_login .fb .icon {
  background: #3B5998;
}

.social_login .google .icon {
  background: #DD4B39;
}

.social_login .icon_title {
  display: block;
  padding: 5px 0;
  float: left;
  font-weight: bold;
  font-size: 16px;
  color: #777;
}

.social_login .social_box:hover {
  background: #E4E4E2;
}

.centeredText {
  color: #afafaf;
  text-align: center;
  margin: 20px 0;
  clear: both;
  overflow: hidden;
  text-transform: capitalize;
}

.user_login label {
  color: #afafaf;
}

.action_btns {
  clear: both;
  overflow: hidden;
}

.action_btns a {
  display: block;
}
/* User Login Form */

.user_login {
  display: none;
}

.user_login label {
  display: block;
  margin-bottom: 5px;
}

.user_login input[type="text"],
.user_login input[type="email"],
.user_login input[type="password"] {
  display: block;
  width: 90%;
  padding: 10px;
  border: 1px solid #DDD;
  color: #666;
}

.user_login input[type="checkbox"] {
  float: left;
  margin-right: 10px;
  width: 22px;
  height: 22px;
}

.user_login input[type="checkbox"]+label {
  float: left;
}

.user_login .checkbox {
  margin-bottom: 10px;
  clear: both;
  overflow: hidden;
}

.forgot_password {
  display: block;
  margin: 20px 0 10px;
  clear: both;
  overflow: hidden;
  text-decoration: none;
  color: #619e02;
  transition: all .3s;
}
/* User Register Form */

.user_register {
  display: none;
}

.user_register label {
  color: #afafaf;
  display: block;
  margin-bottom: 5px;
}

.user_register input[type="text"],
.user_register input[type="email"],
.user_register input[type="password"] {
  display: block;
  width: 100%;
  padding: 10px;
  border: 1px solid #DDD;
  color: #666;
}

.user_register input[type="checkbox"] {
  width: 22px;
  height: 22px;
  float: left;
  margin-right: 8px;
}

.user_register input[type="checkbox"]+label {
  float: left;
  color: #afafaf;
}

.user_register .checkbox {
  margin-bottom: 10px;
  clear: both;
  overflow: hidden;
}



/* 
---------------------------------------------
responsive
--------------------------------------------- 
*/



@media (max-width: 1200px) {
  .header-area .main-nav .logo h2 {
    font-size: 32px;
  }
  .header-area .main-nav .logo h2 img {
    max-width: 25px;
    margin-left: 0px;
  }
  .header-area .main-nav .logo h3 {
    font-size: 28px;
  }
  .header-area .main-nav .logo h3 img {
    max-width: 25px;
    margin-left: 0px;
  }
  .header-area .main-nav .logo h4 {
    font-size: 24px;
  }
  .header-area .main-nav .logo h4 img {
    max-width: 25px;
    margin-left: 0px;
  }
  .header-area .main-nav .nav li:last-child {
    padding-left: 20px;
  }
  
  .main-banner .left-content h2 {
    z-index: 2;
    position: relative;
    font-weight: 700;
    line-height: 70px;
    font-size: 50px;
    margin-bottom: 20px;
  }

  .main-banner .left-content p {
    margin-bottom: 45px;
  }
}


.fondo-titulo_pagina{
  background-image: url("../images/tubo-fondo-contenido-azul.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  width: 100%;
  min-height: 230px; /* altura mínima visible */

  display: flex;
  align-items: center;      /* centra vertical */
  justify-content: center;  /* centra horizontal */

  text-align: center;
  
  padding-left: 10%;
  padding-right: 10%;
  padding-top: 10%;
  padding-bottom: 10%;

}
.fondo-imagen_pagina {
  background-image: url("../images/tubo-fondo-contenido-azul.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  width: 100%;
  min-height: 230px; /* altura mínima visible */

  display: flex;
  align-items: center;      /* centra vertical */
  justify-content: center;  /* centra horizontal */

  text-align: center;
  
  padding-left: 15%;
  padding-right: 15%;
  padding-top: 7%;
  padding-bottom: 7%;
}
.fondo-caracteristica_pagina {
  background-image: url("../images/tubo-fondo-contenido-azul.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  width: auto;
  min-height: 30px; /* altura mínima visible */

  display: flex;
  margin: 0 auto;
  align-items: center;      /* centra vertical */
  justify-content: center;  /* centra horizontal */

  text-align: center;
  
  padding-left: 10%;
  padding-right: 10%;
  padding-top: 4%;
  padding-bottom: 4%;
  z-index: 9;
  color: #ffffff; /* texto principal blanco */
  letter-spacing: 2px;
  
  /* sombra múltiple para contorno y legibilidad en cualquier fondo */
  text-shadow:
    2px 2px 2px rgba(0, 0, 0, 1),
    -2px 2px 2px rgba(0, 0, 0, 1),
    2px -2px 2px rgba(0, 0, 0, 1),
    -2px -2px 2px rgba(0, 0, 0, 1),
    0px 0px 4px rgba(0, 0, 0, 1);
  
  /* Ajustes opcionales para mejor suavidad */
  font-family: "Ceviche One", system-ui;
  font-weight: 400;
  font-style: normal;
}
.fondo-descricion_pagina {
  background-image: url("../images/tubo-fondo-contenido-azul.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  width: 100%;
  min-height: 145px; /* altura mínima visible */
  display: flex;
  align-items: center;      /* centra vertical */
  justify-content: center;  /* centra horizontal */

  text-align: center;
  padding-left: 10%;
  padding-right: 10%;
  padding-top: 10%;
  padding-bottom: 10%;
}


@media (max-width: 992px) {
  .header-area {
    background-color: #fff;
  }
  .main-banner:after {
    display: block;
  } 
  .main-banner .left-content h2 {
    color: #2a2a2a;
    margin-right: 0;
  }
  .main-banner .left-content p {
    color: #afafaf;
    margin-right: 0;
  }
  .main-banner .left-content .white-button a {
    background-color: #619e02;
    color: #fff !important;
  }
  form#contact {
    overflow: hidden;
  }
  .header-area .main-nav .logo h2 {
    font-size: 28px;
  }
  .header-area .main-nav .logo h3 {
    font-size: 24px;
  }
  .header-area .main-nav .logo h4 {
    font-size: 20px;
  }
  .main-banner .left-content {
    margin-right: 0px;
  }
  .main-banner {
    text-align: center;
    padding: 226px 0px 30px 0px;
  }
  .main-banner:before {
    display: none;
  }
  .main-banner .right-image {
    margin: 30px auto 0px auto;
    text-align: center;
  }
  .features-item {
    margin-bottom: 45px;
  }
  .last-features-item,
  .last-skill-item {
    margin-bottom: 0px !important;
  }
  .skill-item {
    margin-bottom: 30px;
  }
  .about-left-image img {
    margin-right: 0px;
    margin-bottom: 45px;;
  }
  .services .naccs .menu div {
    font-size: 15px;
    font-weight: 500;
  }
  .service-item {
    text-align: center;
    margin-bottom: 30px;
  }
  .about-us .box-item {
    text-align: center;
  }
  .about-us:after {
    display: none;
  }
  .about-us .gradient-button,
  .about-us span {
    text-align: center;
    display: block;
  }
  .about-us .right-image {
    margin-top: 30px;
  }
  .service-item .icon {
    margin: 0 auto 30px auto;
  }
  .about-us .section-heading {
    text-align: center;
  }
  .about-us .left-image {
    margin-right: 30px;
    margin-left: 30px;
    margin-bottom: 45px;
  }
  .blog-posts {
    margin-left: 0px;
    margin-top: 30px;
  }
  .post-item {
    margin-bottom: 70px;
  }
  .pricing-item-regular {
    margin-bottom: 30px;
  }
  .our-portfolio .owl-nav {
    display: none !important;
  }
  .contact-info {
    margin-top: 60px;
  }
  form#contact {
    padding: 45px;
  }
}

@media (max-width: 767px) {
  .the-clients .naccs .menu div {
    text-align: center;
  }
  footer .section-heading h2 {
    color: #2a2a2a;
  }
  footer .section-heading h3 {
    color: #2a2a2a;
  }
  footer .section-heading h4 {
    color: #2a2a2a;
  }
  footer #search {
    margin-bottom: 45px;
  }
  footer {
    padding-top: 0px;
    text-align: center;
  }
  .footer-widget ul {
    display: block;
    width: 100%;
    float: none;
    text-align: center;
    margin: 0 auto;
  }
  .footer-widget h2 {
    margin-top: 45px;
    margin-bottom: 20px;
  }
  .footer-widget h3 {
    margin-top: 45px;
    margin-bottom: 20px;
  }
  .footer-widget h4 {
    margin-top: 45px;
    margin-bottom: 20px;
  }
  footer #search input {
    border: 1px solid #eee;
    color: #afafaf;
    background-color: #fff;
    border-radius: 23px;
    margin-bottom: 15px;
    padding: 0px 30px;
  }
  footer #search button {
    background-color: #fff;
    color: #619e02;
  }
  footer #search input::placeholder { 
    color: #2a2a2a;
  }
  .header-area .main-nav .logo h2 {
    font-size: 34px;
  }
  .header-area .main-nav .logo h2 img {
    max-width: 34px;
    margin-left: 5px;
  }
  .header-area .main-nav .logo h3 {
    font-size: 32px;
  }
  .header-area .main-nav .logo h3 img {
    max-width: 32px;
    margin-left: 5px;
  }
  .header-area .main-nav .logo h4 {
    font-size: 30px;
  }
  .header-area .main-nav .logo h4 img {
    max-width: 30px;
    margin-left: 5px;
  }
  .main-banner .info-stat {
    margin-bottom: 15px;
  }
  .menu .thumb span.date {
    margin-bottom: -20px;
    display: block;
  }
  .service-item {
    text-align: center;
    padding: 30px;
  }
  .menu .thumb span.category {
    display: none;
  }
  .about-us .right-image {
    margin-top: 30px;
  }
  .service-item .icon {
    float: none;
    margin-right: 0px;
    margin-bottom: 15px;
  }
  .service-item .right-content {
    display: inline-block;
  }
  .services .naccs .menu div .thumb {
    padding: 5px;
  }
  .services .icon img {
    margin: 0px;
  }
  .the-clients .nacc .thumb .down-content .right-content {
    margin-left: 0px;
    margin-top: 15px;
  }
  .services ul.nacc li.active {
    padding: 45px;
  }
  .services .naccs .menu div  {
    font-size: 0px;
  }
  .the-clients .nacc .thumb .down-content {
    text-align: center;
  }
  .services ul.nacc li .right-image img {
    float: none;
  }
  .our-portfolio .section-heading,
  .about-us .section-heading,
  .about-us .about-item,
  .about-us p,
  .about-us .main-green-button {
    text-align: center;
  }
  .our-portfolio .section-heading .line-dec {
    margin: 0 auto;
  }
  .our-services .section-heading {
    margin-left: 15px;
    margin-right: 15px;
  }
  .free-quote form input {
    margin-left: 0px;
    padding: 0px 30px;
  }
  .free-quote form button {
    margin-left: 0px;
    border-bottom-left-radius: 40px;
    border-top-right-radius: 0px;
  }
  .blog-posts {
    margin-left: 0px;
    margin-top: 30px;
  }
  .post-item {
    margin-bottom: 30px;
  }
  .post-item .thumb img {
    max-width: 140px;
  }
  .post-item .right-content p {
    display: none;
  }
  .about-us .about-item {
    margin-top: 15px;
  }
  form#contact {
    padding: 30px;
  }
}



















.blog-news {
  padding-top: 130px;
}

.blog-news  .section-heading {
  text-align: center;
  margin-bottom: 80px;
}

.blog-news  .section-heading p {
  margin-top: 10px;
  margin-left: 18%;
  margin-right: 18%;
}


.blog-item {
  position: relative;
  z-index: 1;
  padding: 30px;
  box-shadow: 0px 0px 15px rgba(0,0,0,0.1);
  background-color: #fff;
  border-radius: 10px;
  border-top-right-radius: 50px;
  transition: all .3s;
}

.blog-item .icon {
  margin-left: 0px;
  margin-bottom: 30px;
  background-repeat: no-repeat;
  width: 50px;
  height: 50px;
  transition: all .3s;
}

.blog-item h4 {
  transition: all .3s;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
}

.blog-item p {
  transition: all .3s;
  font-size: 15px;
  margin-bottom: 20px;
}

.text_titlo_bladeerr {
  color: black;
  font-size: 1.4rem;

}


.card-blog{
    border: none;
    border-radius: 15px;
    background: linear-gradient(135deg,#1faa59,#28c76f);
    color: white;
    transition: all 0.3s ease;
    overflow: hidden;
}

.card-blog:hover{
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}

.card-blog .card-body{
    padding: 30px;
    text-align: center;
}

.card-blog .card-title{
    font-size: 22px;
    font-weight: 600;
}

.card-blog .btn-blog{
    margin-top:15px;
    border-radius:30px;
    padding:6px 20px;
    background:white;
    color:#1faa59;
    font-weight:500;
    transition:0.3s;
}

.card-blog .btn-blog:hover{
    background:#e8fff1;
    transform:scale(1.05);
}
footer span {
  display: block;

  color: #ffffff;
  font-size: 1.2em;
  font-weight: bold;
}