  :root {
    --primary-color: #9bc653; 
    --secondary-color: #0adcf7c; 
    --accent-color: #10B981; /* Verde esmeralda */
    --gradient-primary: linear-gradient(135deg, #1E3A8A 0%, #3B82F6 100%); /* Gradiente azul */
    --gradient-accent: linear-gradient(135deg, #059669 0%, #10B981 100%); /* Gradiente verde */
    --light-bg-color: #F1F5F9; /* Gris azulado muy claro */
    --dark-bg-color: #0F172A; /* Azul oscuro casi negro */
    --text-color: #334155; /* Gris pizarra para texto */
    --text-light: #64748B; /* Gris medio para texto secundario */
    --heading-font: 'Poppins', sans-serif;
    --body-font: 'Manrope', sans-serif;
    --border-radius: 16px;
    --border-radius-sm: 8px;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  }

  body {
    font-family: var(--body-font);
    color: var(--text-color);
    line-height: 1.7;
    background-color: #FFFFFF;
  }

  #hero {
    min-height: 60vh;
    position: relative;
    background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
    overflow: hidden;
  }

  #hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(45deg, rgba(40, 167, 69, 0.03) 25%, transparent 25%), 
        linear-gradient(-45deg, rgba(40, 167, 69, 0.03) 25%, transparent 25%), 
        linear-gradient(45deg, transparent 75%, rgba(40, 167, 69, 0.03) 75%), 
        linear-gradient(-45deg, transparent 75%, rgba(40, 167, 69, 0.03) 75%);
    background-size: 60px 60px;
    background-position: 0 0, 0 30px, 30px -30px, -30px 0px;
    animation: codePattern 20s linear infinite;
    opacity: 0.1;
  }

  /* Elementos flotantes de código */
  .code-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
  }

  .code-line {
    position: absolute;
    color: rgba(40, 167, 69, 0.7);
    font-family: 'Courier New', monospace;
    font-size: 18px;
    white-space: nowrap;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(40, 167, 69, 0.5);
    animation: float 15s linear infinite;
  }

  .code-line:nth-child(1) { top: 15%; left: -60%; animation-delay: 0s; }
  .code-line:nth-child(2) { top: 25%; right: -20%; animation-delay: 3s; animation-direction: reverse; }
  .code-line:nth-child(3) { top: 20%; left: -70%; animation-delay: 6s; }
  .code-line:nth-child(4) { top: 60%; right: -0%; animation-delay: 9s; animation-direction: reverse; }
  .code-line:nth-child(5) { top: 80%; left: -30%; animation-delay: 12s; }

  /* Partículas flotantes */
  .particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
  }

  .particle {
    position: absolute;
    background: var(--primary-color);
    border-radius: 50%;
    animation: particleFloat 10s linear infinite;
  }

  .particle:nth-child(1) { width: 4px; height: 4px; left: 10%; animation-delay: 0s; }
  .particle:nth-child(2) { width: 6px; height: 6px; left: 20%; animation-delay: 2s; }
  .particle:nth-child(3) { width: 3px; height: 3px; left: 30%; animation-delay: 4s; }
  .particle:nth-child(4) { width: 5px; height: 5px; left: 70%; animation-delay: 1s; }
  .particle:nth-child(5) { width: 4px; height: 4px; left: 80%; animation-delay: 3s; }
  .particle:nth-child(6) { width: 2px; height: 2px; left: 90%; animation-delay: 5s; }

  /* Contenido principal */
  .hero-content {
    position: relative;
    z-index: 5;
  }

  /* Estilo de los iconos y texto */
  .tp-caption {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 20px;
  }

  .icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: white;
  }

  .hero-title {
    color: var(--primary-color) !important;
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
  }

  /* Animaciones */
  @keyframes codePattern {
    0% { background-position: 0 0, 0 30px, 30px -30px, -30px 0px; }
    100% { background-position: 60px 60px, 60px 90px, 90px 30px, 30px 60px; }
  }

  @keyframes float {
    0% { transform: translateX(-100%); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateX(100vw); opacity: 0; }
  }

  @keyframes particleFloat {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100px) rotate(360deg); opacity: 0; }
  }


  h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.3;
    letter-spacing: -0.02em;
  }

  p {
    margin-bottom: 1.5rem;
  }

  /* Secciones */
  section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
  }

  section::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(30, 58, 138, 0.03);
    z-index: -1;
  }

  .section-bg {
    background-color: var(--light-bg-color);
  }

  .section-title {
    text-align: center;
    margin-bottom: 60px;
  }

  .section-title h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
    display: inline-block;
  }

  .section-title h2::after {
    content: '';
    position: absolute;
    display: block;
    width: 80px;
    height: 4px;
    background: var(--gradient-accent);
    bottom: 0;
    left: calc(50% - 40px);
    border-radius: 2px;
  }

  .section-title p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
  }

  /* Botones */
  .btn-primary, .btn-learn-more {
    background: var(--gradient-primary);
    border: none;
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    color: #fff !important;
    text-decoration: none;
    display: inline-block;
    box-shadow: var(--shadow-sm);
  }

  .btn-primary:hover, .btn-learn-more:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-md);
  }

  .btn-learn-more {
    background: var(--gradient-accent);
  }

  /* Tarjetas y elementos */
  .features .member {
    background: #fff;
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    position: relative;
    z-index: 1;
    overflow: hidden;
  }

  .equal-height-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 0;
  }

  .equal-height-col {
    display: flex;
  }

  .equal-height-card {
    display: flex;
    flex-direction: column;
    flex: 1;
  }

  .features .member::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.05) 0%, rgba(14, 165, 233, 0.05) 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
  }

  .features .member:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
  }

  .features .member:hover::after {
    opacity: 1;
  }

  .features .member .pic {
    margin-bottom: 25px;
    text-align: center;
  }

  .features .member .pic i {
    font-size: 60px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
  }

  .features .member-info h4 {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 22px;
    color: var(--primary-color);
  }

  .features .member-info span {
    display: block;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 1rem;
  }

  .features .member-info p {
    color: var(--text-light);
    margin-bottom: 20px;
  }

  .features .member-info ul {
    padding-left: 0;
    list-style: none;
  }

  .features .member-info ul li {
    padding: 10px 0;
    display: flex;
    align-items: flex-start;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  .features .member-info ul li:last-child {
    border-bottom: none;
  }

  .features .member-info ul li i {
    color: var(--accent-color);
    font-size: 18px;
    margin-right: 10px;
    margin-top: 5px;
  }

  /* Contacto */
  .contact .info {
    width: 100%;
    background: #fff;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
  }

  .contact .info::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.05) 0%, rgba(14, 165, 233, 0.05) 100%);
    border-radius: 0 0 0 100%;
    z-index: 0;
  }

  .contact .info .address,
  .contact .info .email,
  .contact .info .phone {
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
  }

  .contact .info i {
    font-size: 24px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    float: left;
    width: 44px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
    margin-right: 15px;
  }

  .contact .info h4 {
    padding: 0 0 0 60px;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--primary-color);
  }

  .contact .info p {
    padding: 0 0 0 60px;
    margin-bottom: 0;
    font-size: 16px;
    color: var(--text-light);
  }
  
  /* Estilos para la sección About */
  .about .lead {
    font-size: 1.2rem;
    line-height: 1.8;
  }
  
  .about .benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .about .benefits-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
  }
  
  .about .benefits-list .icon-box {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #d5e3cc;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
  }

  .icon-box-text-green {
    background-color: #d5e3cc;
  }
  
  .about .benefits-list .icon-box i {
    font-size: 24px;
    color: var(--secondary-color);
  }
  
  .about .benefits-list h5 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--primary-color);
  }
  
  .about .benefits-list p {
    font-size: 0.95rem;
    margin-bottom: 0;
    color: var(--text-light);
  }
  
  .about-image {
    position: relative;
    padding: 20px;
  }
  
  .about-img-bg {
    position: absolute;
    width: 80%;
    height: 80%;
    background: var(--gradient-primary);
    top: 0;
    right: 0;
    border-radius: var(--border-radius);
    z-index: -1;
  }
  
  .experience-badge {
    position: absolute;
    bottom: 0;
    left: 0;
    background: var(--gradient-accent);
    color: white;
    padding: 15px 20px;
    border-radius: var(--border-radius-sm);
    transform: translateY(30%) translateX(10%);
    box-shadow: var(--shadow-md);
    text-align: center;
  }
  
  .experience-badge .years {
    font-size: 2rem;
    font-weight: 800;
    display: block;
    line-height: 1;
  }
  
  .experience-badge .text {
    font-size: 0.9rem;
    font-weight: 500;
  }
  
  /* Estilos para las tarjetas de características */
  .feature-card {
    background: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    padding: 40px 30px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
  }
  
  .feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0.8;
  }
  
  .feature-card-primary::after {
    background: var(--gradient-accent);
  }
  
  .feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
  }
  
  .feature-icon {
    margin-bottom: 25px;
  }
  
  .feature-icon i {
    font-size: 50px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
  }
  
  .feature-card-primary .feature-icon i {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  .feature-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
  }
  
  .feature-subtitle {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1rem;
  }
  
  .feature-card-primary .feature-subtitle {
    color: var(--accent-color);
  }
  
  .feature-divider {
    width: 50px;
    height: 3px;
    background: var(--gradient-primary);
    margin: 15px 0;
    border-radius: 2px;
  }
  
  .feature-card-primary .feature-divider {
    background: var(--gradient-accent);
  }
  
  .feature-description {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 0.95rem;
  }
  
  .feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .feature-list li {
    display: flex;
    align-items: flex-start;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }
  
  .feature-list li:last-child {
    border-bottom: none;
  }
  
  .feature-list li i {
    color: var(--secondary-color);
    font-size: 18px;
    margin-right: 10px;
    margin-top: 3px;
  }
  
  .feature-card-primary .feature-list li i {
    color: var(--accent-color);
  }
  
  .feature-list li span {
    flex: 1;
    font-size: 0.95rem;
  }
  
  /* Estilos para el formulario de contacto */
  .contact-form-card {
    background: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    padding: 40px;
    height: 100%;
  }
  
  .contact .form-floating {
    margin-bottom: 15px;
  }
  
  .contact .form-control,
  .contact .form-select {
    border-radius: var(--border-radius-sm);
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 0.75rem 1rem;
    height: calc(3.5rem + 2px);
    font-size: 1rem;
    transition: all 0.3s ease;
  }
  
  .contact .form-control:focus,
  .contact .form-select:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.25rem rgba(14, 165, 233, 0.25);
  }
  
  .contact textarea.form-control {
    min-height: 150px;
  }
  
  .contact .form-floating label {
    padding: 0.75rem 1rem;
    color: var(--text-light);
  }
  
  .contact .php-email-form .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px;
    border-radius: var(--border-radius-sm);
  }
  
  .contact .php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid var(--secondary-color);
    border-top-color: #eee;
    animation: animate-loading 1s linear infinite;
  }
  
  .contact .php-email-form .error-message {
    display: none;
    color: #fff;
    background: #ed3c0d;
    text-align: left;
    padding: 15px;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
  }
  
  .contact .php-email-form .sent-message {
    display: none;
    color: #fff;
    background: var(--accent-color);
    text-align: center;
    padding: 15px;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
  }
  
  .social-links {
    display: flex;
    gap: 10px;
  }
  
  .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--light-bg-color);
    color: var(--primary-color);
    transition: all 0.3s ease;
  }
  
  .social-links a:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
  }
  
  i.text-green,
  .text-green {
    color: #90c139 !important;
  }

  .watermark-section {
    position: relative;
    overflow: hidden;
  }

  .watermark-logo {
    position: absolute;
    right: -400px;
    top: 50%;
    transform: translateY(-50%);
    width: 1200px; 
    height: 1200px;
    opacity: 0.1;
    z-index: 1; 
    pointer-events: none; 
  }

  .content-wrapper {
    position: relative;
    z-index: 2; 
  }
  @keyframes animate-loading {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }

  @media (min-width: 992px) {
  .equal-height-row .mt-lg-minus60 {
    margin-top: 0 !important;
  }
  
  .equal-height-row.with-negative-margin {
    margin-top: -60px;
  }
}
