
/* Estilos específicos para la sección marca-groot */
#marca-groot {
  padding: 80px 20px;
  background: linear-gradient(135deg ,rgb(37, 211, 102) 0%, #914dd6 100%);
  position: relative;
  overflow: hidden;
  margin: 20px 0;
}

#marca-groot::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.marca-groot-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.marca-groot-header {
  text-align: center;
  margin-bottom: 60px;
  color: white;
  position: relative;
  margin-top: -50px;
}

.marca-groot-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
  letter-spacing: -1px;
}

.marca-groot-subtitle {
  font-size: 1.3rem;
  opacity: 0.9;
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto;
}

.marca-groot-options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
  margin-bottom: 80px;
}

.marca-groot-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  backdrop-filter: blur(20px);
}

.marca-groot-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 30px 80px rgba(0,0,0,0.3);
}

.marca-groot-card-header {
  padding: 30px;
  text-align: center;
  position: relative;
}

.marca-groot-card-1 .marca-groot-card-header {
  background: linear-gradient(135deg, #ff6b6b, #ee5a52);
}

.marca-groot-card-2 .marca-groot-card-header {
  background: linear-gradient(135deg, #4ecdc4, #44a08d);
}

.marca-groot-card-3 .marca-groot-card-header {
  background: linear-gradient(135deg, #45b7d1, #96c93d);
}

.marca-groot-card-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  backdrop-filter: blur(10px);
}

.marca-groot-card h3 {
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.marca-groot-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(255,255,255,0.3);
  color: white;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

.marca-groot-badge-hot {
  background: linear-gradient(45deg, #ff4757, #ff3838);
  animation: marca-groot-pulse 2s infinite;
}

.marca-groot-badge-local {
  background:  #1e90ff;
}

.marca-groot-card-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.marca-groot-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.marca-groot-card:hover .marca-groot-card-image img {
  transform: scale(1.1);
}

.marca-groot-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  color: rgba(255,255,255,0.8);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.marca-groot-card:hover .marca-groot-overlay {
  opacity: 1;
}

.marca-groot-card-content {
  padding: 30px;
}

.marca-groot-card-content > p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 25px;
  line-height: 1.6;
}

.marca-groot-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 30px;
}

.marca-groot-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: #666;
}

.marca-groot-feature-icon {
  color: #667eea;
  font-size: 1.1rem;
}

.marca-groot-benefits h4 {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #333;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.marca-groot-benefits ul {
  list-style: none;
  padding: 0;
}

.marca-groot-benefits li {
  padding: 8px 0;
  color: #555;
  position: relative;
  padding-left: 25px;
}

.marca-groot-benefits li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #4ecdc4;
  font-weight: bold;
  font-size: 1.1rem;
}

.marca-groot-cta {
  text-align: center;
  color: white;
}

.marca-groot-cta h3 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.marca-groot-cta p {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 30px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.marca-groot-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  background: linear-gradient(135deg, #ff6b6b, #ee5a52);
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
}

.marca-groot-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 107, 107, 0.6);
  background: linear-gradient(135deg, #ee5a52, #ff6b6b);
}

/* Animaciones */
@keyframes marca-groot-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes marca-groot-float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

@keyframes marca-groot-rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.marca-groot-icon-pulse {
  animation: marca-groot-pulse 2s infinite;
}

.marca-groot-icon-float {
  animation: marca-groot-float 3s ease-in-out infinite;
}

.marca-groot-icon-fire {
  animation: marca-groot-pulse 1.5s infinite;
  color: #ff4757;
}

.marca-groot-icon-building {
  animation: marca-groot-float 4s ease-in-out infinite;
}

.marca-groot-crown {
  animation: marca-groot-pulse 2s infinite;
  color: #ffd700;
}

.marca-groot-lightning {
  animation: marca-groot-pulse 1s infinite;
  color: #00d2ff;
}

.marca-groot-handshake {
  color: #2ed573;
}

.marca-groot-star {
  color: #ffd700;
  animation: marca-groot-pulse 2s infinite;
}

/* Responsive */
@media (max-width: 768px) {
  .marca-groot-options-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .marca-groot-title {
    font-size: 2.5rem;
  }
  
  .marca-groot-features {
    grid-template-columns: 1fr;
  }
  
  .marca-groot-card {
    margin: 0 10px;
  }
}

@media (max-width: 480px) {
  #marca-groot {
    padding: 60px 15px;
  }
  
  .marca-groot-title {
    font-size: 2rem;
  }
  
  .marca-groot-card-header {
    padding: 20px;
  }
  
  .marca-groot-card-content {
    padding: 20px;
  }
}