
/* Base Styles */
:root {
    --brand-blue: #0EA5E9;
    --brand-blue-light: #e0f2fe;
    --brand-dark: #0c2340;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --white: #ffffff;
    --green-100: #dcfce7;
    --green-600: #16a34a;
    --blue-100: #dbeafe;
    --blue-600: #2563eb;
    --purple-100: #f3e8ff;
    --purple-600: #9333ea;
    --yellow-400: #facc15;
    --red-500: #ef4444;
    /*------------COLORES AGREGADOS-------------*/
    --verde-azulado-oscuro : #007e61;
    --verde-azulado-medio : #22968d;
    --verde-lima : #87ae15;
    --verde-oliva : #5d7c14;
    --gris-claro : #abaaaf;
    --verde-suave : #7ce7deb4 ;
    --verde-fondo : #a4e7e3c0;
    /*-----------------------------------------*/
    --radius: 0.5rem;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
    font-size: 16px;
  }
  
  body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.5;
    color: var(--gray-700);
    background-color: var(--verde-fondo);
    
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  
  a {
    color: inherit;
    text-decoration: none;
  }
  
  ul {
    list-style: none;
  }
  
  img {
    max-width: 100%;
    height: auto;
  }
  
  /* Container & Layout */
  .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
  }
  
  @media (min-width: 640px) {
    .container {
      padding: 0 1.5rem;
    }
  }
  
  @media (min-width: 1024px) {
    .container {
      padding: 0 2rem;
    }
  }
  
  /* Typography */
  h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--gray-900);
    margin-bottom: 1rem;
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
  
  p {
    margin-bottom: 1rem;
  }
  
  .text-brand-blue {
    color: var(--verde-azulado-oscuro);
  }
  
  .badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    margin-bottom: 1rem;
    /*background-color: rgba(14, 165, 233, 0.1);*/
    background-color: #1dbdaf ;
    color: var(--gray-900);
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 9999px;
  }
  
  /* Buttons */
  .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    border-radius: var(--radius);
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
  }
  
  .button svg {
    margin-left: 0.5rem;
  }
  
  .primary-button {
    background-color: var(--verde-azulado-medio);
    color: var(--white);
  }
  
  .primary-button:hover {
    background-color: var(--verde-suave);
    color: var(--gray-900);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
  }
  
  .secondary-button {
    background-color: rgba(255, 255, 255, 0.8);
    color: var(--gray-800);
    border: 1px solid var(--gray-200);
  }
  
  .secondary-button:hover {
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
  }
  
  .blue-outline {
    background-color: rgba(14, 165, 233, 0.1);
    color: var(--brand-blue);
  }
  
  .blue-outline:hover {
    background-color: rgba(14, 165, 233, 0.2);
  }
  
  .green-outline {
    background-color: rgba(22, 163, 74, 0.1);
    color: var(--green-600);
  }
  
  .green-outline:hover {
    background-color: rgba(22, 163, 74, 0.2);
  }
  
  .full-width {
    width: 100%;
  }
  
  /* Header */
  .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    transition: all 0.3s ease;
    background-color: transparent;
  }
  
  .header.scrolled {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    box-shadow: var(--shadow-sm);
  }
  
  .header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
  }
  
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
  }
  
  .desktop-nav {
    display: none;
  }
  
  .desktop-nav a {
    margin-left: 2rem;
    font-weight: 500;
    color: var(--gray-700);
    transition: color 0.2s;
  }
  
  .desktop-nav a:hover {
    color: var(--brand-blue);
  }
  
  .menu-button {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: var(--gray-700);
    cursor: pointer;
  }
  
  .mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 300px;
    background-color: var(--white);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 100;
    box-shadow: var(--shadow-xl);
  }
  
  .mobile-nav.active {
    transform: translateX(0);
  }
  
  .mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid var(--gray-100);
  }
  
  .close-button {
    background: none;
    border: none;
    color: var(--gray-700);
    cursor: pointer;
  }
  
  .mobile-nav-content {
    padding: 1rem;
  }
  
  .mobile-nav-link {
    display: block;
    padding: 1rem 0;
    border-bottom: 1px solid var(--gray-100);
    font-weight: 500;
    transition: color 0.2s;
  }
  
  .mobile-nav-link:hover {
    color: var(--brand-blue);
  }
  
  @media (min-width: 768px) {
    .desktop-nav {
      display: flex;
    }
    
    .menu-button {
      display: none;
    }
  }
  
  /* Hero Section */
  .hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 5rem;
    padding-bottom: 4rem;
    position: relative;
    background: linear-gradient(to bottom, rgba(224, 242, 254, 0.8), rgba(186, 230, 253, 0.4));
    background-color:var(--verde-suave) ;
    overflow: hidden;
  }
  
  .hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
  }
  
  .hero-text {
    max-width: 600px;
  }
  
  .hero-text h1 {
    margin-bottom: 1.5rem;
  }
  
  .hero-text p {
    font-size: 1.125rem;
    color: var(--gray-700);
    margin-bottom: 2rem;
  }
  
  .hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
  }
  
  .hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
  }
  
  .feature {
    display: flex;
    align-items: center;
  }
  
  .feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 9999px;
    margin-right: 0.75rem;
  }
  
  .feature-icon.green {
    background-color: var(--green-100);
    color: var(--green-600);
  }
  
  .feature-icon.blue {
    background-color: var(--blue-100);
    color: var(--blue-600);
  }
  
  .feature-icon.purple {
    background-color: var(--purple-100);
    color: var(--purple-600);
  }
  
  .hero-image {
    display: none;
    position: relative;
  }
  
  .hero-image::before {
    content: '';
    position: absolute;
    inset: -20px;
    border-radius: 1rem;
    background: linear-gradient(to bottom right, rgba(14, 165, 233, 0.2), rgba(14, 165, 233, 0.05));
    transform: rotate(-6deg);
    z-index: -1;
    filter: blur(40px);
  }
  
  .hero-image img {
    border-radius: 1rem;
    box-shadow: var(--shadow-xl);
    object-fit: cover;
    width: 100%;
    height: 500px;
    transition: transform 0.7s;
  }
  
  .hero-image:hover img {
    transform: scale(1.05);
  }
  
  .wave-separator {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
  }
  
  @media (min-width: 640px) {
    .hero-buttons {
      flex-direction: row;
    }
  }
  
  @media (min-width: 1024px) {
    .hero-content {
      grid-template-columns: 1fr 1fr;
    }
    
    .hero-image {
      display: block;
    }
  }
  
  /* Services Section */
  .services-section {
    padding: 5rem 0;
    background-color: var(--white);
  }
  
  .section-header {
    text-align: center;
    max-width: 768px;
    margin: 0 auto 4rem;
  }
  
  .section-header h2 {
    margin-bottom: 1rem;
  }
  
  .section-header p {
    font-size: 1.125rem;
    color: var(--gray-600);
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .service-img {

    width: 100%;
    height: 100%;
    object-fit: cover; /* Asegura que la imagen cubra todo el espacio */
    filter: blur(4px); /* Ajusta el nivel de difuminado (8px es moderado) */
    opacity: 0.6; /* Reduce la opacidad para suavizar más el efecto */
    
  }
  
  .service-card {
    background-color: rgba(255, 255, 255, 0.9);
    
    backdrop-filter: blur(4px);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius);
    padding: 1.5rem;
    transition: all 0.3s;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
  }

  /* Contenedor de la imagen de fondo */
.service-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1; /* Detrás del contenido */
}

/* Estilo de la imagen */
.service-bg img,video {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Cubre todo el espacio sin deformarse */
  filter: blur(1px) brightness(1); /* Difuminado + oscurecimiento opcional */
  opacity: 0.65; /* Ajusta la transparencia */
}

  
  .service-card:hover {
    box-shadow: var(--shadow-md);
    background-color: var(--white);
    border-color: rgba(14, 165, 233, 0.2);
    transform: translateY(-5px);
  }
  
  .service-card:hover .service-icon {
    transform: scale(1.1);
  }
  
  .service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, transparent, var(--brand-blue), transparent);
    opacity: 0;
    transition: opacity 0.3s;
  }
  
  .service-card:hover::after {
    opacity: 1;
  }
  
  .service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    background-color: var(--verde-suave);
    color: var(--verde-azulado-oscuro);
    border-radius: 0.75rem;
    margin-bottom: 1rem;
    transition: transform 0.3s;
  }
  
  .service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    transition: color 0.3s;
  }
  
  .service-card:hover h3 {
    color: var(--verde-azulado-oscuro);
  }
  
  .service-card p {
    color: black;
    margin-bottom: 1.25rem;
  }
  
  .service-link {
    display: inline-flex;
    align-items: center;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--verde-azulado-oscuro);
    transition: all 0.2s;
  }
  
  .service-link svg {
    margin-left: 0.25rem;
    transition: transform 0.2s;
  }
  
  .service-card:hover .service-link svg {
    transform: translateX(3px);
  }
  
  @media (min-width: 640px) {
    .services-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (min-width: 1024px) {
    .services-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  
  /* About Section */
  .about-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom, var(--white), rgba(224, 242, 254, 0.5));
    position: relative;
  }
  
  .about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .about-image {
    position: relative;
  }
  
  .image-container {
    position: relative;
  }
  
  .image-container::before {
    content: '';
    position: absolute;
    inset: -20px;
    border-radius: 1rem;
    background: linear-gradient(to bottom right, rgba(14, 165, 233, 0.2), rgba(14, 165, 233, 0.05));
    transform: rotate(-6deg);
    z-index: -1;
    filter: blur(40px);
  }

  
  .image-container img {
    width: 600px;
    height: 400px;
    border-radius: 1rem;
    box-shadow: var(--shadow-xl);
    object-fit: cover;
    transition: transform 0.7s;
  }

  .image-container:hover img {
    transform: scale(1.05);
  }
  
  .testimonial-card {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    background-color: var(--white);
    padding: 1rem;
    border-radius: 0.75rem;
    box-shadow: var(--shadow-lg);
    max-width: 200px;
  }
  
  .rating {
    display: flex;
    margin-bottom: 0.5rem;
  }
  
  .star {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--yellow-400);
  }
  
  .testimonial-card p {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
  }
  
  .testimonial-card span {
    font-size: 0.75rem;
    color: var(--gray-500);
  }
  
  .about-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
  
  .about-content p {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
  }
  
  .features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
  }
  
  .feature-item {
    display: flex;
    align-items: start;
  }
  
  .feature-item .feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.25rem;
    height: 1.25rem;
    background-color: rgba(14, 165, 233, 0.2);
    color: var(--brand-blue);
    border-radius: 50%;
    margin-right: 0.75rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
  }
  
  .feature-item p {
    margin-bottom: 0;
    font-size: 0.875rem;
    color: var(--gray-600);
  }
  
  @media (min-width: 1024px) {
    .about-grid {
      grid-template-columns: 1fr 1fr;
      align-items: center;
    }
    
    .about-image {
      order: 1;
    }
    
    .about-content {
      order: 2;
    }
  }
  
  /* Contact Section */
  .contact-section {
    padding: 5rem 0;
    background-color: var(--white);
    position: relative;
  }
  
  .contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 10rem;
    background: linear-gradient(to bottom, rgba(224, 242, 254, 0.5), rgba(255, 255, 255, 0));
    z-index: 0;
  }
  
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    position: relative;
    z-index: 1;
  }
  
  .glass-card {
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-md);
    border-radius: 1rem;
    padding: 2rem;
  }
  
  .contact-form-container {
    width: 100%;
  }
  
  .contact-form h3 {
    margin-bottom: 1.5rem;
  }
  
  .form-group {
    margin-bottom: 1.5rem;
  }
  
  .form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 0.25rem;
  }
  
  .form-group input,
  .form-group textarea {
    display: block;
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--gray-700);
    background-color: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    transition: all 0.2s;
  }
  
  .form-group input:focus,
  .form-group textarea:focus {
    border-color: var(--brand-blue);
    outline: none;
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.2);
  }
  
  .form-group textarea {
    resize: none;
  }
  
  .form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .contact-info {
    margin-bottom: 1.5rem;
  }
  
  .contact-info h3,
  .service-card h3 {
    margin-bottom: 1.5rem;
  }
  
  .info-item {
    display: flex;
    margin-bottom: 1.5rem;
  }
  
  .info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background-color: rgba(14, 165, 233, 0.1);
    color: var(--brand-blue);
    border-radius: 50%;
    margin-right: 1rem;
    flex-shrink: 0;
  }
  
  .info-content h4 {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
  }
  
  .info-content p {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-bottom: 0.25rem;
  }
  
  .cta-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  
  @media (min-width: 640px) {
    .form-row {
      grid-template-columns: 1fr 1fr;
    }
  }
  
  @media (min-width: 1024px) {
    .contact-grid {
      grid-template-columns: 1fr 1fr;
    }
  }
  
  /* Footer */
  .footer {
    background-color: var(--gray-50);
    padding-top: 4rem;
    padding-bottom: 2rem;
    position: relative;
    z-index: 1;
  }
  
  .footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
  }
  
  .footer-info {
    max-width: 350px;
  }
  
  .footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
  }
  
  .footer-info p {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
  }
  
  .social-links {
    display: flex;
    gap: 1rem;
  }
  
  .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    background-color: var(--white);
    border: 1px solid var(--gray-200);
    color: var(--gray-600);
    transition: all 0.2s;
  }
  
  .social-links a:hover {
    background-color: var(--brand-blue);
    color: var(--white);
    border-color: var(--brand-blue);
    transform: translateY(-3px);
  }
  
  .footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
  }
  
  .footer-links-column h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--gray-900);
  }
  
  .footer-links-column ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .footer-links-column a {
    color: var(--gray-600);
    transition: color 0.2s;
  }
  
  .footer-links-column a:hover {
    color: var(--brand-blue);
  }
  
  .newsletter-section {
    border-top: 1px solid var(--gray-200);
    padding-top: 2rem;
    text-align: center;
    margin-bottom: 2rem;
  }
  
  .newsletter-section h3 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
  }
  
  .newsletter-section p {
    color: var(--gray-600);
    max-width: 500px;
    margin: 0 auto 1.5rem;
  }
  
  .newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .newsletter-form input {
    flex-grow: 1;
    padding: 0.75rem 1rem;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    font-size: 1rem;
  }
  
  .newsletter-form input:focus {
    border-color: var(--brand-blue);
    outline: none;
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.2);
  }
  
  .footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-200);
    font-size: 0.875rem;
    color: var(--gray-600);
  }
  
  .scroll-to-top {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background-color: var(--gray-100);
    color: var(--gray-700);
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s;
  }
  
  .scroll-to-top:hover {
    background-color: var(--gray-200);
  }
  
  @media (min-width: 768px) {
    .footer-content {
      grid-template-columns: 1fr 2fr;
    }
    
    .newsletter-form {
      flex-direction: row;
    }
    
    .footer-bottom {
      flex-direction: row;
    }
  }
  
  @media (min-width: 1024px) {
    .footer-content {
      grid-template-columns: 350px 1fr;
    }
  }
  
  /* Animations */
  .appear-animation {
    opacity: 0;
    transform: translateY(20px);
  }
  
  .appear-animation.animated {
    animation: fadeIn 0.7s forwards;
  }
  
  .fade-in-right {
    transform: translateX(-20px);
  }
  
  .fade-in-left {
    transform: translateX(20px);
  }
  
  @keyframes fadeIn {
    0% {
      opacity: 0;
      transform: translateY(20px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes fadeInRight {
    0% {
      opacity: 0;
      transform: translateX(-20px);
    }
    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  @keyframes fadeInLeft {
    0% {
      opacity: 0;
      transform: translateX(20px);
    }
    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  /* Toast Notification */
  .toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 1rem;
    width: 300px;
    max-width: 90vw;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.3s ease;
    z-index: 1000;
    pointer-events: none;
  }
  
  .toast.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  
  .toast-content {
    display: flex;
    align-items: center;
  }
  
  .toast-icon {
    flex-shrink: 0;
    width: 1.5rem;
    height: 1.5rem;
    color: var(--green-600);
    margin-right: 0.75rem;
  }
  
  .toast-message {
    font-size: 0.875rem;
    color: var(--gray-700);
  }
  
  .toast-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background-color: var(--brand-blue);
    width: 100%;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 5s linear;
  }
  
  .toast.show .toast-progress {
    transform: scaleX(1);
  }
  
  /* Media Queries */
  @media (min-width: 640px) {
    h1 {
      font-size: 3.5rem;
    }
    
    h2 {
      font-size: 2.5rem;
    }
    
    h3 {
      font-size: 1.75rem;
    }
  }
  
  /* Custom Scrollbar */
  ::-webkit-scrollbar {
    width: 8px;
    height: 8px;
  }
  
  ::-webkit-scrollbar-track {
    background: rgba(224, 242, 254, 0.5);
  }
  
  ::-webkit-scrollbar-thumb {
    background-color: rgba(14, 165, 233, 0.7);
    border-radius: 9999px;
    transition: all 0.3s ease;
  }
  
  ::-webkit-scrollbar-thumb:hover {
    background-color: var(--brand-blue);
  }

  /** ------------------CAPTCHAS-----------------------/
  /* Oculta reCAPTCHAs no activos */
  
  
  /* Utility Classes */
  .delay-100 { animation-delay: 100ms; }
  .delay-200 { animation-delay: 200ms; }
  .delay-300 { animation-delay: 300ms; }
  .delay-400 { animation-delay: 400ms; }
  .delay-500 { animation-delay: 500ms; }