.hero-section {
  padding: 1rem 1.5rem;
  text-align: center;
  margin-bottom: 0;
}

.container {
  max-width: 80vw;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #666666;
  max-width: 700px;
  margin: 0 auto 1rem;
  line-height: 1.7;
}

.hero-link {
  color: #404040;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
  border-bottom: 1px dashed #666666;
}

.hero-link:hover {
  color: #333333;
  border-bottom-style: solid;
}

.feature-card {
  cursor: pointer;
  background: white;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  min-height: 320px;
  height: 100%;
  box-sizing: border-box;
  position: relative;
  border: none;
  border: 1px solid #e0e0e0;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-color: #cccccc;
}

.icon-container {
  position: relative;
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f5f5f5;
  border-radius: 12px;
  transform: rotate(45deg);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e0e0e0;
}

.icon {
  position: relative;
  z-index: 2;
  color: #666666;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  transform: rotate(0);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.feature-card:hover .icon-bg {
  transform: rotate(0);
  background-color: #404040;
  border-radius: 8px;
  border-color: #333333;
}

.feature-card:hover .icon {
  color: #ffffff;
  transform: scale(1.1);
}

.feature-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333333;
  margin: 0 0 0.5rem 0;
  width: 100%;
  transition: color 0.2s ease;
}

.feature-description {
  color: #666666;
  line-height: 1.6;
  font-size: 0.95rem;
  margin: 0;
  width: 100%;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
}

.feature-card:hover .feature-title,
.feature-card:hover .feature-description {
  color: #1a1a1a;
}

/* Estilos para la cuadrícula de características */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 1rem auto 2rem;
  max-width: 1400px;
  padding: 0 2rem;
  justify-content: center;
  justify-items: center;
  width: 100%;
  box-sizing: border-box;
}

/* Media Queries */
@media (max-width: 1400px) {
  .features-grid {
    grid-template-columns: repeat(4, minmax(220px, 1fr));
    padding: 0 1.5rem;
  }
}

@media (max-width: 1200px) {
  .features-grid {
    grid-template-columns: repeat(2, minmax(250px, 1fr));
    max-width: 900px;
  }
  
  .feature-card {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: minmax(280px, 500px);
    padding: 0 1rem;
    justify-content: center;
  }
  
  .feature-card {
    min-height: 280px;
    padding: 1.5rem 1rem;
    width: 100%;
    max-width: 100%;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
}

/* Asegurar que el contenedor padre ocupe todo el ancho */
.features-section {
  width: 100%;
  overflow: hidden;
}

/* Ajustar el contenedor principal */
.features-section .container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
  display: flex;
}

.tool-content h3 {
  font-size: 1.1rem;
  color: #111827;
  margin: 0 0 0.5rem 0;
  font-weight: 600;
}

.tool-content p {
  color: #6b7280;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

/* Estilos para la sección de herramientas */
.tools-section {
  padding: 1.5rem 0 4rem;
  opacity: 0;
  transform: translateX(100px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.tools-section.visible {
  opacity: 1;
  transform: translateX(0);
}

.tools-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.25rem;
  color: #666666;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
  line-height: 1.6;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  max-width: 1000px;
  margin: 3rem auto 0;
  position: relative;
  gap: 2rem;
} 

.tools-grid::before {
  content: '';
  position: absolute;
  left: 50%;
  top: auto;
  bottom: 0;
  width: 1px;
  background-color: #e0e0e0;
  transform: translateX(-50%);
  height: 100%;
}

@media (max-width: 768px) {
  .tools-grid {
    gap: 5rem; /* Increased gap between columns on mobile */
  }
  
  .tools-grid::before {
    display: none;
  }
  
  .tools-column {
    padding: 1.5rem;
  }
}

.tools-column {
  background: white;
  border-radius: 8px;
  padding: 2rem 2rem 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.tools-column:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.column-title {
  font-size: 1.5rem;
  color: #333333;
  margin-bottom: 1rem;
  font-weight: 600;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.column-title i {
  font-size: 1.4em;
  color: #666666;
}

.column-subtitle {
  color: #666666;
  margin: 0 auto 2rem;
  font-size: 1rem;
  line-height: 1.6;
  text-align: center;
  max-width: 90%;
}

.tools-list {
  list-style: none;
  padding: 1rem 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.left-align {
  align-items: flex-start;
}

/* Tool Item Styles */
.tool-item {
  display: flex;
  align-items: center;
  padding: 0.75rem 1rem;
  margin: 0.25rem 0;
  color: #666666;
  font-size: 1rem;
  transition: all 0.2s ease;
  width: 100%;
  border-bottom: 1px solid #f0f0f0;
  justify-content: flex-start;
  box-sizing: border-box;
}

.tool-item:last-child {
  border-bottom: none;
}

.tool-item:hover {
  color: #404040;
}

.tool-item i {
  color: #666666;
  margin-right: 0.75rem;
  flex-shrink: 0;
  font-size: 1.1em;
}

.tool-item span {
  text-align: left;
  flex-grow: 1;
}

/* Remove default list styling */
.tools-list,
.tools-list li {
  list-style: none;
  margin: 0;
  border: none;
}

/* Estilos para enlaces */
.tool-link {
  color: #666666;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
  border-bottom: 1px dashed #666666;
  padding-bottom: 1px;
}

.tool-link:hover {
  color: #333333;
  border-bottom-style: solid;
}

/* Estilos para botón CTA */
.tools-list {
  flex-grow: 1;
  padding: 1rem 0;
  margin: 0;
  width: 100%;
}

.cta-container {
  padding: 1.5rem 0;
  margin: 0;
  text-align: center;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: #404040;
  color: #ffffff !important;
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  min-width: 200px;
  box-shadow: 0 2px 8px rgba(64, 64, 64, 0.3);
}

.cta-button::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(-100%) skewX(-15deg);
  transition: transform 0.4s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(64, 64, 64, 0.4);
  background: #333333;
}

.cta-button:hover::after {
  transform: translateX(100%) skewX(-15deg);
}

.cta-button span {
  position: relative;
  z-index: 1;
}

.cta-button i {
  color: #ffffff;
  font-size: 1.1em;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-button:hover i {
  transform: translateX(4px);
}

/* Responsive button adjustments */
@media (max-width: 768px) {
  .cta-button {
    padding: 0.75rem 1.5rem;
    min-width: 180px;
    font-size: 0.95rem;
  }
}

.cta-button i {
  margin: 0;
  font-size: 1.1em;
  color: white !important;
}

.tool-item:last-child {
  border-bottom: none;
}

.tool-item i {
  color: #666666;
  margin-right: 1rem;
  width: 20px;
  text-align: center;
  font-size: 1.1rem;
}

.tool-item:hover {
  color: #333333;
}

.tool-item:hover i {
  color: #333333;
}

/* Media Queries para la sección de herramientas */
@media (max-width: 768px) {
  .tools-grid {
    grid-template-columns: 1fr;
    gap: 5rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .section-subtitle {
    font-size: 1.1rem;
  }
  
  .tools-column {
    padding: 1.5rem;
  }
  
  .cta-button {
    padding: 0.75rem 1.5rem;
    min-width: 180px;
    font-size: 0.95rem;
  }
}
