/* Variables CSS para facilitar cambios de tema */
:root {
    --primary-color: #e74c3c; /* Rojo */
    --secondary-color: #2980b9; /* Azul */
    --dark-color: #2c3e50; /* Azul oscuro */
    --light-color: #ecf0f1; /* Blanco/Gris claro */
    --text-color: #2c3e50;
    --text-light: #ecf0f1;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
  }
  
  /* Estilos base */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: "Montserrat", sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--light-color);
  }
  
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-family: "Playfair Display", serif;
    font-weight: 700;
    margin-bottom: 1rem;
  }
  
  a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
  }
  
  img {
    max-width: 100%;
    height: auto;
  }
  
  .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
  }
  
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
    background: var(--primary-color);
    color: white;
  }
  
  .btn:hover {
    background: #c0392b; /* Rojo más oscuro */
    transform: translateY(-3px);
    box-shadow: var(--shadow);
  }
  
  .btn-secondary {
    background: var(--secondary-color);
  }
  
  .btn-secondary:hover {
    background: #1a5276; /* Azul más oscuro */
  }
  
  .btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
  }
  
  .btn-outline:hover {
    background: var(--primary-color);
    color: white;
  }
  
  .btn-dark {
    background: var(--dark-color);
  }
  
  .btn-dark:hover {
    background: #1a2530; /* Azul oscuro más oscuro */
  }
  
  .text-center {
    text-align: center;
  }
  
  .section {
    padding: 5rem 0;
  }
  
  .section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
    text-align: center;
  }
  
  .section-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
  }
  
  /* Animaciones */
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes float {
    0% {
      transform: translateY(0px);
    }
    50% {
      transform: translateY(-10px);
    }
    100% {
      transform: translateY(0px);
    }
  }
  
  @keyframes pulse {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.05);
    }
    100% {
      transform: scale(1);
    }
  }
  
  /* Header y Navegación */
  .header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow);
    transition: var(--transition);
  }
  
  .header.scrolled {
    padding: 0.5rem 0;
    background-color: rgba(255, 255, 255, 0.98);
  }
  
  .nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
  }
  
  .logo {
    display: flex;
    align-items: center;
  }
  
  .logo img {
    height: 70px; /* Logo más grande */
    transition: var(--transition);
  }
  
  .logo:hover img {
    transform: scale(1.05);
  }
  
  .slogan {
    font-family: "Montserrat", sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--dark-color);
    margin-left: 1rem;
    display: flex;
    flex-direction: column;
  }
  
  .nav-menu {
    display: flex;
    list-style: none;
  }
  
  .nav-item {
    margin-left: 2rem;
  }
  
  .nav-link {
    font-weight: 500;
    position: relative;
    padding-bottom: 5px;
  }
  
  .nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
  }
  
  .nav-link:hover::after {
    width: 100%;
  }
  
  .hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--dark-color);
  }
  
  /* Hero Section */
  .hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--light-color) 0%, #d6dbdf 100%);
  }
  
  .hero-content {
    position: relative;
    z-index: 1;
    animation: fadeIn 1s ease-out;
    max-width: 650px;
  }
  
  .hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--dark-color);
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    line-height: 1.8;
  }
  
  .hero-btns {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
  }
  
  .hero-btns .btn {
    min-width: 180px;
    justify-content: center;
  }
  
  .hero-image {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 50%;
    max-width: 600px;
    animation: float 6s ease-in-out infinite;
  }
  
  .hero-shape {
    position: absolute;
    z-index: 0;
  }
  
  .shape-1 {
    top: 20%;
    left: 5%;
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    opacity: 0.1;
    border-radius: 50%;
    animation: pulse 8s infinite;
  }
  
  .shape-2 {
    bottom: 10%;
    left: 15%;
    width: 150px;
    height: 150px;
    background: var(--secondary-color);
    opacity: 0.1;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: float 10s infinite;
  }
  
  .shape-3 {
    top: 30%;
    right: 10%;
    width: 100px;
    height: 100px;
    background: var(--dark-color);
    opacity: 0.1;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: float 12s infinite;
  }
  
  /* Sobre Nosotros */
  .about {
    background-color: white;
  }
  
  .about-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
  }
  
  .about-content {
    animation: fadeIn 1s ease-out;
  }
  
  .about-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
  }
  
  .about-text {
    margin-bottom: 1.5rem;
  }
  
  .about-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    animation: float 6s ease-in-out infinite;
  }
  
  /* Equipo */
  .team {
    background-color: var(--light-color);
  }
  
  .team-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
  }
  
  .team-member {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    animation: fadeIn 1s ease-out;
    position: relative;
    transform-style: preserve-3d;
    perspective: 1000px;
  }
  
  .team-member:hover {
    transform: translateY(-10px) rotateY(5deg);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  }
  
  .member-image {
    height: 300px;
    overflow: hidden;
    position: relative;
  }
  
  .member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
  }
  
  .team-member:hover .member-image img {
    transform: scale(1.05);
  }
  
  .member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(44, 62, 80, 0.1), rgba(44, 62, 80, 0.7));
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .team-member:hover .member-overlay {
    opacity: 1;
  }
  
  .overlay-content {
    text-align: center;
    color: white;
    transform: translateY(20px);
    transition: var(--transition);
  }
  
  .team-member:hover .overlay-content {
    transform: translateY(0);
  }
  
  .overlay-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  
  .overlay-subtitle {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
  
  .overlay-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    background: var(--primary-color);
    color: white;
    font-weight: 500;
    transition: var(--transition);
  }
  
  .overlay-btn:hover {
    background: #c0392b;
    transform: scale(1.05);
  }
  
  .member-info {
    padding: 1.5rem;
  }
  
  .member-name {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  
  .member-role {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 1rem;
  }
  
  .member-bio {
    margin-bottom: 1.5rem;
  }
  
  /* Servicios */
  .services {
    background-color: white;
  }
  
  .services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
  }
  
  .service-card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    z-index: 1;
    overflow: hidden;
    animation: fadeIn 1s ease-out;
  }
  
  .service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    opacity: 0.1;
    z-index: -1;
    transition: var(--transition);
  }
  
  .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }
  
  .service-card:hover::before {
    height: 100%;
  }
  
  .service-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
  }
  
  .service-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .service-description {
    margin-bottom: 1.5rem;
  }
  
  .service-features {
    list-style: none;
    margin-bottom: 1.5rem;
  }
  
  .service-feature {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: flex-start;
  }
  
  .service-feature i {
    color: var(--secondary-color);
    margin-right: 0.5rem;
    margin-top: 5px;
  }
  
  /* Proyectos */
  .projects {
    background-color: var(--light-color);
  }
  
  .projects-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
  }
  
  .project-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    animation: fadeIn 1s ease-out;
  }
  
  .project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }
  
  .project-image {
    height: 200px;
    overflow: hidden;
  }
  
  .project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
  }
  
  .project-card:hover .project-image img {
    transform: scale(1.05);
  }
  
  .project-info {
    padding: 1.5rem;
  }
  
  .project-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  
  .project-category {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 1rem;
  }
  
  .project-description {
    margin-bottom: 1.5rem;
  }
  
  /* Proceso */
  .process {
    background-color: white;
  }
  
  .process-container {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  
  .process-step {
    display: flex;
    gap: 2rem;
    animation: fadeIn 1s ease-out;
  }
  
  .step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
  }
  
  .step-content {
    flex-grow: 1;
  }
  
  .step-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  
  .step-description {
    color: #666;
  }
  
  /* Contacto */
  .contact {
    background: linear-gradient(135deg, var(--light-color) 0%, #d6dbdf 100%);
  }
  
  .contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
  }
  
  .contact-info {
    animation: fadeIn 1s ease-out;
  }
  
  .contact-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
  
  .contact-text {
    margin-bottom: 2rem;
  }
  
  .contact-details {
    list-style: none;
    margin-bottom: 2rem;
  }
  
  .contact-detail {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
  }
  
  .contact-detail i {
    color: var(--primary-color);
    margin-right: 1rem;
    font-size: 1.2rem;
    margin-top: 5px;
  }
  
  .contact-form {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    animation: fadeIn 1s ease-out;
  }
  
  .form-group {
    margin-bottom: 1.5rem;
  }
  
  .form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
  }
  
  .form-control {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
  }
  
  .form-control:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
  }
  
  textarea.form-control {
    resize: vertical;
    min-height: 120px;
  }
  
  /* Footer */
  .footer {
    background: var(--dark-color);
    color: var(--text-light);
    padding: 4rem 0 2rem;
  }
  
  .footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
  }
  
  .footer-logo {
    margin-bottom: 1rem;
  }
  
  .footer-logo img {
    height: 60px;
    /* Eliminamos el filtro que estaba causando problemas */
  }
  
  .footer-slogan {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    color: #bbb;
  }
  
  .footer-about {
    margin-bottom: 1.5rem;
  }
  
  .footer-title {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
  }
  
  .footer-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--primary-color);
  }
  
  .footer-links {
    list-style: none;
  }
  
  .footer-link {
    margin-bottom: 0.8rem;
  }
  
  .footer-link a {
    color: #bbb;
    transition: var(--transition);
  }
  
  .footer-link a:hover {
    color: white;
    padding-left: 5px;
  }
  
  .footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
  }
  
  .footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transition: var(--transition);
  }
  
  .footer-social-link:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
  }
  
  .footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  /* WhatsApp Flotante */
  .whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
  }
  
  .whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25d366;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
  }
  
  .whatsapp-btn:hover {
    transform: scale(1.1);
  }
  
  /* Animación de carga */
  .loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s, visibility 0.5s;
  }
  
  .loader.hidden {
    opacity: 0;
    visibility: hidden;
  }
  
  .loader-content {
    text-align: center;
  }
  
  .loader-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
  }
  
  @keyframes spin {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  
  /* Nuevo Slogan Banner - Efecto moderno y minimalista */
  .slogan-banner {
    background: var(--dark-color);
    color: white;
    padding: 2.5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  
  .slogan-container {
    position: relative;
    z-index: 2;
  }
  
  /* Efecto de revelación para el título */
  @keyframes revealText {
    0% {
      clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
    }
    100% {
      clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
  }
  
  /* Efecto de línea para el subtítulo */
  @keyframes lineWidth {
    0% {
      width: 0;
    }
    100% {
      width: 100%;
    }
  }
  
  /* Efecto de brillo para el título */
  @keyframes shine {
    0% {
      background-position: -100%;
    }
    100% {
      background-position: 200%;
    }
  }
  
  .modern-slogan-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: inline-block;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--primary-color));
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: shine 3s linear infinite;
  }
  
  .modern-slogan-subtitle-container {
    position: relative;
    display: inline-block;
    overflow: hidden;
    padding-bottom: 5px;
  }
  
  .modern-slogan-subtitle {
    font-size: 1.2rem;
    font-weight: 500;
    color: white;
    opacity: 0;
    animation: fadeIn 0.5s forwards 0.5s;
  }
  
  .modern-slogan-subtitle::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    animation: lineWidth 1s forwards 1s;
  }
  
  /* Media Queries */
  p {
    margin-bottom: 1.2rem;
    line-height: 1.7;
    text-align: justify;
  }
  
  /* También aplicar justificación a elementos específicos que contienen texto */
  .hero-subtitle,
  .about-text,
  .member-bio,
  .service-description,
  .project-description,
  .step-description,
  .benefit-description,
  .contact-text,
  .footer-about,
  .accordion-body p {
    text-align: justify;
  }
  
  @media (max-width: 992px) {
    .hero-title {
      font-size: 2.8rem;
    }
  
    .hero-image {
      width: 45%;
    }
  }
  
  @media (max-width: 768px) {
    .nav-menu {
      position: fixed;
      top: 70px;
      left: -100%;
      width: 100%;
      height: calc(100vh - 70px);
      background: white;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 2rem;
      transition: var(--transition);
      z-index: 999;
    }
  
    .nav-menu.active {
      left: 0;
    }
  
    .nav-item {
      margin-left: 0;
    }
  
    .hamburger {
      display: block;
    }
  
    .hero {
      height: auto;
      padding: 120px 0 80px;
    }
  
    .hero-content {
      text-align: center;
      margin: 0 auto 3rem;
    }
  
    .hero-title {
      font-size: 2.5rem;
      margin-bottom: 1.2rem;
    }
  
    .hero-subtitle {
      font-size: 1.1rem;
      margin: 0 auto 2rem;
      line-height: 1.6;
    }
  
    .hero-btns {
      justify-content: center;
      gap: 0.8rem;
    }
  
    .hero-btns .btn {
      min-width: 160px;
    }
  
    .hero-image {
      position: relative;
      width: 80%;
      margin: 0 auto;
    }
  
    .about-container,
    .services-container,
    .projects-container,
    .contact-container {
      grid-template-columns: 1fr;
    }
  
    .process-step {
      flex-direction: column;
      gap: 1rem;
      align-items: center;
      text-align: center;
    }
  
    .slogan {
      display: none;
    }
  }
  
  @media (max-width: 576px) {
    .section {
      padding: 3rem 0;
    }
  
    .section-title {
      font-size: 2rem;
    }
  
    .hero-title {
      font-size: 2rem;
    }
  
    .hero-subtitle {
      font-size: 1rem;
    }
  
    .hero-btns {
      flex-direction: column;
      align-items: center;
      width: 100%;
      max-width: 280px;
      margin: 2rem auto 0;
    }
  
    .hero-btns .btn {
      width: 100%;
      min-width: unset;
    }
  
    .hero-btns {
      flex-direction: column;
      gap: 1rem;
    }
  
    .btn {
      width: 100%;
    }
  
    .modern-slogan-title {
      font-size: 1.8rem;
    }
  
    .modern-slogan-subtitle {
      font-size: 1rem;
    }
  }
  
  /* Estilos para el carrusel */
  .carousel {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: var(--shadow);
  }
  
  .carousel-inner {
    display: flex;
    transition: transform 0.5s ease;
  }
  
  .carousel-item {
    min-width: 100%;
    position: relative;
  }
  
  .carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: white;
  }
  
  .carousel-caption h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
  }
  
  .carousel-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 1rem;
  }
  
  .carousel-control {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
  }
  
  .carousel-control:hover {
    background: rgba(255, 255, 255, 0.8);
  }
  
  .carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
  }
  
  .carousel-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
  }
  
  .carousel-indicator.active {
    background: white;
  }
  
  /* Estilos para las tarjetas de beneficios */
  .benefits {
    background: linear-gradient(135deg, var(--light-color) 0%, #d6dbdf 100%);
    padding: 5rem 0;
  }
  
  .benefits-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
  }
  
  .benefit-card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    animation: fadeIn 1s ease-out;
  }
  
  .benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }
  
  .benefit-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
  }
  
  .benefit-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .benefit-description {
    color: #666;
  }
  
  /* Estilos para la sección de preguntas frecuentes */
  .faq {
    background-color: var(--light-color);
  }
  
  .faq-container {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .accordion {
    list-style: none;
  }
  
  .accordion-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: var(--shadow);
    overflow: hidden;
    animation: fadeIn 1s ease-out;
  }
  
  .accordion-header {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    transition: var(--transition);
  }
  
  .accordion-header:hover {
    background: rgba(231, 76, 60, 0.05);
  }
  
  .accordion-header i {
    transition: var(--transition);
  }
  
  .accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  
  .accordion-body {
    padding: 0 1.5rem 1.5rem;
    color: #666;
  }
  
  .accordion-item.active .accordion-header {
    color: var(--primary-color);
  }
  
  .accordion-item.active .accordion-header i {
    transform: rotate(180deg);
  }
  
  .accordion-item.active .accordion-content {
    max-height: 1000px;
  }
  
  /* Estilos para la sección de estadísticas */
  .stats {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 5rem 0;
  }
  
  .stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
  }
  
  .stat-item {
    animation: fadeIn 1s ease-out;
  }
  
  .stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
  }
  
  .stat-title {
    font-size: 1.2rem;
    opacity: 0.9;
  }
  
  /* Estilos para la sección de llamada a la acción */
  .cta {
    background: url("https://images.unsplash.com/photo-1497215842964-222b430dc094?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80")
      center / cover no-repeat;
    position: relative;
    padding: 6rem 0;
    text-align: center;
    color: white;
  }
  
  .cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 62, 80, 0.8);
  }
  
  .cta-container {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeIn 1s ease-out;
  }
  
  .cta-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }
  
  .cta-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
  }
  
  .cta-btns {
    display: flex;
    justify-content: center;
    gap: 1rem;
  }
  
  @media (max-width: 576px) {
    .cta-btns {
      flex-direction: column;
      gap: 1rem;
    }
  }
  
  /* Estilos para la imagen de Quienes Somos */
  .about-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: var(--shadow);
  }
  
  .about-image-container img {
    width: 100%;
    height: auto;
    display: block;
  }
  
  /* Logo del footer con fondo blanco */
  .footer-logo-container {
    background: white;
    padding: 10px;
    border-radius: 8px;
    display: inline-block;
  }
  