/* Estilos generales para undressherVN */
:root {
  --primary-color: #6A0DAD;
  --secondary-color: #FF5722;
  --accent-color: #009688;
  --text-color: #333333;
  --light-bg: #f9f9f9;
  --dark-bg: #222222;
  --light-text: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--light-bg);
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

/* Encabezado */
header {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 1rem 0;
}

.logo-wrapper {
  display: flex;
  align-items: center;
}

.logo {
  height: 50px;
  width: auto;
}

.main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-menu {
  list-style: none;
  display: flex;
}

.nav-menu li {
  margin-left: 2rem;
}

.nav-menu a {
  color: var(--text-color);
  font-weight: 500;
  padding: 0.5rem 0;
  position: relative;
}

.nav-menu a:hover {
  color: var(--primary-color);
}

.nav-menu a:after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  left: 0;
  bottom: 0;
  transition: width 0.3s ease;
}

.nav-menu a:hover:after {
  width: 100%;
}

#menu-toggle {
  display: none;
}

.menu-icon {
  display: none;
  cursor: pointer;
}

.menu-icon span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--text-color);
  margin: 5px 0;
  transition: all 0.3s ease;
}

/* Sección Hero */
.hero-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, #9733EE 100%);
  color: white;
  padding: 5rem 0;
  text-align: center;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero-section h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.hero-section p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.action-button {
  display: inline-block;
  background-color: var(--secondary-color);
  color: white;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.action-button:hover {
  background-color: #e64a19;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

.pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 87, 34, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(255, 87, 34, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 87, 34, 0);
  }
}

.glow {
  animation: glow 2s infinite alternate;
}

@keyframes glow {
  from {
    box-shadow: 0 0 10px -5px var(--secondary-color);
  }
  to {
    box-shadow: 0 0 20px 5px var(--secondary-color);
  }
}

/* Sección de Características */
.features-section {
  padding: 5rem 0;
  background-color: white;
}

.features-section h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 3rem;
  position: relative;
}

.features-section h2:after {
  content: '';
  position: absolute;
  width: 80px;
  height: 4px;
  background: var(--primary-color);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.feature-boxes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-box {
  background-color: #f8f9fa;
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

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

.feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 1.5rem;
}

.feature-box h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

/* Sección de Cómo Funciona */
.how-to-section {
  padding: 5rem 0;
  background-color: #f5f5f5;
}

.how-to-section h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 3rem;
}

.steps-container {
  max-width: 800px;
  margin: 0 auto;
}

.step {
  display: flex;
  margin-bottom: 2.5rem;
  align-items: flex-start;
}

.step-circle {
  background-color: var(--primary-color);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 1.5rem;
  margin-right: 1.5rem;
  flex-shrink: 0;
}

.step-content h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.action-container {
  text-align: center;
  margin-top: 3rem;
}

/* Sección de Beneficios */
.benefits-section {
  padding: 5rem 0;
  background-color: white;
}

.benefits-section h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 3rem;
}

.benefits-list {
  list-style: none;
  max-width: 800px;
  margin: 0 auto;
}

.benefits-list li {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.check-icon {
  width: 24px;
  height: 24px;
  margin-right: 1rem;
  flex-shrink: 0;
}

/* Sección de Preguntas Frecuentes */
.faq-section {
  padding: 5rem 0;
  background-color: #f5f5f5;
}

.faq-section h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 3rem;
}

.accordion {
  max-width: 800px;
  margin: 0 auto;
}

.accordion-item {
  background-color: white;
  border-radius: 5px;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.accordion-header {
  padding: 1.5rem;
  cursor: pointer;
  position: relative;
  font-weight: 600;
  color: var(--primary-color);
}

.accordion-header:after {
  content: '+';
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
}

.accordion-content {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-content {
  padding: 0 1.5rem 1.5rem;
  max-height: 200px;
}

.accordion-item.active .accordion-header:after {
  content: '-';
}

/* Sección de Testimonios */
.testimonial-section {
  padding: 5rem 0;
  background-color: white;
}

.testimonial-section h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 3rem;
}

.testimonial-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.testimonial {
  background-color: #f8f9fa;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  position: relative;
}

.testimonial:before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 5rem;
  color: rgba(106, 13, 173, 0.1);
  font-family: Georgia, serif;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  font-weight: 600;
  color: var(--primary-color);
}

/* Sección CTA Final */
.final-cta {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, #9733EE 100%);
  color: white;
  text-align: center;
}

.final-cta h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.final-cta p {
  margin-bottom: 2rem;
  font-size: 1.2rem;
  opacity: 0.9;
}

/* Footer */
footer {
  background-color: var(--dark-bg);
  color: var(--light-text);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-branding p {
  margin-top: 1rem;
  opacity: 0.8;
}

.footer-logo {
  height: 50px;
  width: auto;
}

.footer-nav h3,
.footer-keywords h3 {
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.footer-nav ul {
  list-style: none;
}

.footer-nav li {
  margin-bottom: 0.8rem;
}

.footer-nav a {
  color: var(--light-text);
  opacity: 0.8;
}

.footer-nav a:hover {
  opacity: 1;
  color: var(--secondary-color);
}

.footer-keywords p {
  opacity: 0.8;
  line-height: 1.8;
}

.copyright {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.9rem;
  opacity: 0.6;
}

/* Responsive */
@media (max-width: 992px) {
  .hero-section h1 {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  header .container {
    flex-direction: column;
  }
  
  .menu-icon {
    display: block;
    position: absolute;
    top: 1.5rem;
    right: 1rem;
  }
  
  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    flex-direction: column;
    background-color: white;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 10px rgba(0,0,0,0.1);
    padding: 2rem 0;
  }
  
  .nav-menu li {
    margin: 1rem 0;
  }
  
  #menu-toggle:checked ~ .nav-menu {
    left: 0;
  }
  
  #menu-toggle:checked ~ .menu-icon span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
  }
  
  #menu-toggle:checked ~ .menu-icon span:nth-child(2) {
    opacity: 0;
  }
  
  #menu-toggle:checked ~ .menu-icon span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
  }
  
  .hero-section h1 {
    font-size: 1.8rem;
  }
  
  .feature-boxes {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .hero-section {
    padding: 3rem 0;
  }
  
  .hero-section h1 {
    font-size: 1.5rem;
  }
  
  .hero-section p {
    font-size: 1rem;
  }
  
  .action-button {
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
  }
  
  .features-section h2,
  .how-to-section h2,
  .benefits-section h2,
  .faq-section h2,
  .testimonial-section h2,
  .final-cta h2 {
    font-size: 1.8rem;
  }
  
  .step {
    flex-direction: column;
    text-align: center;
  }
  
  .step-circle {
    margin: 0 auto 1rem;
  }
  
  .benefits-list li {
    align-items: flex-start;
  }
}
