/* Estilos para undressherMY.pw */
:root {
  --primary-color: #00A0B0;
  --secondary-color: #CC333F;
  --accent-color: #EDC951;
  --dark-color: #2A2C31;
  --light-color: #FFFFFF;
  --background-color: #F5F5F5;
  --text-color: #333333;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  background-color: var(--background-color);
  color: var(--text-color);
}

.wrapper {
  overflow: hidden;
  position: relative;
}

/* Tipografía */
h1, h2, h3, h4, h5, h6 {
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
}

h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
}

h2:after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background-color: var(--primary-color);
  margin: 1rem auto 0;
}

h3 {
  font-size: 1.5rem;
  color: var(--primary-color);
}

p {
  margin-bottom: 1rem;
}

/* Header y Navegación */
header {
  background-color: var(--light-color);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5%;
}

.logo-container {
  flex: 0 0 auto;
}

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

nav {
  flex: 0 0 auto;
}

nav ul {
  display: flex;
  list-style: none;
}

nav li {
  margin-left: 2rem;
}

nav a {
  color: var(--dark-color);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  padding: 0.5rem 0;
  transition: all 0.3s ease;
}

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

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

nav a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
}

.nav-toggle-label {
  display: none;
  cursor: pointer;
}

/* Sección Hero */
.hero {
  position: relative;
  background: linear-gradient(120deg, var(--primary-color), #037580);
  color: var(--light-color);
  padding: 5rem 5%;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-content {
  max-width: 600px;
  position: relative;
  z-index: 2;
}

.hero h1 {
  margin-bottom: 1.5rem;
}

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

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Formas flotantes */
.floating-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.shape {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.shape-1 {
  width: 150px;
  height: 150px;
  top: 20%;
  right: 10%;
  animation: float 8s ease-in-out infinite;
}

.shape-2 {
  width: 80px;
  height: 80px;
  top: 60%;
  right: 20%;
  animation: float 6s ease-in-out infinite;
}

.shape-3 {
  width: 120px;
  height: 120px;
  bottom: 10%;
  right: 40%;
  animation: float 10s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
  100% {
    transform: translateY(0) rotate(0deg);
  }
}

/* Botones */
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary {
  background-color: var(--secondary-color);
  color: var(--light-color);
  box-shadow: 0 4px 10px rgba(204, 51, 63, 0.3);
}

.btn-primary:hover {
  background-color: #aa2a33;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(204, 51, 63, 0.4);
}

.btn-secondary {
  background-color: rgba(255, 255, 255, 0.2);
  color: var(--light-color);
  border: 2px solid var(--light-color);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
}

/* Animación de pulso para botones */
.pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

/* Sección de Beneficios */
.benefits {
  padding: 5rem 5%;
  background-color: var(--light-color);
}

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

.benefit {
  padding: 2rem;
  background-color: var(--background-color);
  border-radius: 10px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  text-align: center;
}

.benefit:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 1.5rem;
}

/* Sección de Características */
.features {
  padding: 5rem 5%;
  background-color: var(--background-color);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.feature {
  padding: 2rem;
  background-color: var(--light-color);
  border-radius: 10px;
  box-shadow: var(--shadow);
  position: relative;
  transition: all 0.3s ease;
  border-left: 4px solid var(--primary-color);
}

.feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.feature-number {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  opacity: 0.2;
}

/* Sección Cómo Funciona */
.how-it-works {
  padding: 5rem 5%;
  background-color: var(--light-color);
}

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

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

.step-icon {
  flex: 0 0 60px;
  width: 60px;
  height: 60px;
  margin-right: 1.5rem;
  background-color: var(--background-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}

.step-icon svg {
  width: 100%;
  height: 100%;
}

.step-content {
  flex: 1;
}

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

/* Sección FAQ */
.faq {
  padding: 5rem 5%;
  background-color: var(--background-color);
}

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

.faq-item {
  background-color: var(--light-color);
  border-radius: 10px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow);
}

.faq-question {
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.faq-answer {
  padding-top: 1rem;
  display: none;
}

.faq-item.active .faq-question::after {
  content: '-';
}

.faq-item.active .faq-answer {
  display: block;
}

/* Sección Call-to-Action */
.call-to-action {
  padding: 5rem 5%;
  background: linear-gradient(120deg, var(--secondary-color), #aa2a33);
  color: var(--light-color);
  text-align: center;
}

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

.cta-content h2 {
  margin-bottom: 1rem;
}

.cta-content h2:after {
  background-color: var(--light-color);
}

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

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

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 3rem;
}

.footer-logo {
  flex: 0 0 100%;
  margin-bottom: 2rem;
}

.footer-links {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-column {
  flex: 0 0 48%;
  margin-bottom: 1.5rem;
}

.footer-column h3 {
  color: var(--accent-color);
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

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

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

.footer-column a {
  color: var(--light-color);
  text-decoration: none;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.footer-column a:hover {
  opacity: 1;
  color: var(--primary-color);
}

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

.footer-bottom {
  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 screen and (max-width: 992px) {
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .benefit, .feature {
    padding: 1.5rem;
  }
}

@media screen and (max-width: 768px) {
  header {
    padding: 1rem 5%;
  }

  .nav-toggle-label {
    display: block;
    position: relative;
    width: 30px;
    height: 21px;
  }

  .nav-toggle-label span,
  .nav-toggle-label span::before,
  .nav-toggle-label span::after {
    display: block;
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: var(--dark-color);
    transition: all 0.3s ease;
  }

  .nav-toggle-label span {
    top: 9px;
  }

  .nav-toggle-label span::before {
    content: '';
    top: -9px;
  }

  .nav-toggle-label span::after {
    content: '';
    top: 9px;
  }

  nav ul {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: var(--light-color);
    flex-direction: column;
    align-items: center;
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  }

  nav li {
    margin: 1.5rem 0;
  }

  .nav-toggle:checked ~ ul {
    height: 240px;
    padding: 1rem 0;
  }

  .nav-toggle:checked + .nav-toggle-label span {
    background-color: transparent;
  }

  .nav-toggle:checked + .nav-toggle-label span::before {
    transform: rotate(45deg) translate(6px, 6px);
  }

  .nav-toggle:checked + .nav-toggle-label span::after {
    transform: rotate(-45deg) translate(6px, -6px);
  }
  
  .hero {
    padding: 4rem 5%;
    text-align: center;
  }
  
  .hero-content {
    margin: 0 auto;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .step {
    flex-direction: column;
    text-align: center;
  }
  
  .step-icon {
    margin: 0 auto 1.5rem;
  }
  
  .footer-links {
    flex-direction: column;
  }
  
  .footer-column {
    flex: 0 0 100%;
  }
}

@media screen and (max-width: 576px) {
  h1 {
    font-size: 1.8rem;
  }
  
  h2 {
    font-size: 1.6rem;
  }
  
  .btn {
    width: 100%;
    margin-bottom: 1rem;
  }
  
  .benefits-container,
  .features-grid {
    grid-template-columns: 1fr;
  }
}
