/* 
 * undressaiCL.pw - Main Stylesheet
 * Modern and unique design for Chilean audience
 */

:root {
  --primary: #FF4B4B;
  --secondary: #FF8C42;
  --dark: #333333;
  --light: #FFFFFF;
  --gray: #F5F5F5;
  --text: #444444;
}

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

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  background-color: var(--light);
}

.gradient-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: linear-gradient(135deg, rgba(255,75,75,0.05) 0%, rgba(255,140,66,0.05) 100%);
  z-index: -1;
}

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

.highlight {
  color: var(--primary);
  font-weight: 700;
}

/* Header Styles */
header {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 100;
  padding: 15px 0;
}

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

.site-logo {
  width: 40px;
  height: 40px;
  margin-right: 10px;
}

h1 {
  font-size: 1.5rem;
  font-weight: 700;
}

h1 span {
  color: var(--primary);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav {
  display: flex;
  align-items: center;
}

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

.nav-menu li {
  margin-left: 20px;
}

.nav-menu a {
  color: var(--dark);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
  padding: 5px 0;
}

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

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

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

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 25px;
  position: relative;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--dark);
  margin: 5px 0;
  transition: all 0.3s;
  border-radius: 3px;
}

/* Hero Section */
.hero {
  padding-top: 120px;
  padding-bottom: 80px;
}

.hero .container {
  display: flex;
  align-items: center;
  gap: 40px;
}

.hero-text {
  flex: 1;
}

.hero-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-text p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: var(--text);
}

.hero-visual {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-graphic {
  width: 100%;
  max-width: 300px;
  margin-bottom: 20px;
}

.feature-badges {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.feature-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.badge-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
}

.feature-badge span {
  font-size: 0.9rem;
  font-weight: 600;
}

.button-wrap {
  margin-top: 30px;
}

.promo-text {
  font-size: 0.9rem;
  margin-top: 10px;
  opacity: 0.8;
}

/* CTA Button */
.cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 5px 15px rgba(255, 75, 75, 0.3);
  text-align: center;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 75, 75, 0.4);
}

.cta-button.large {
  padding: 18px 40px;
  font-size: 1.1rem;
}

.cta-button.outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
  box-shadow: none;
}

.cta-button.outline:hover {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
}

/* Features Section */
.features {
  padding: 80px 0;
  background-color: var(--gray);
}

.features h2, .process-section h2, .faq-section h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 50px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.feature-item {
  background-color: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s;
}

.feature-item:hover {
  transform: translateY(-5px);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
}

.feature-item h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: var(--dark);
}

/* Process Section */
.process-section {
  padding: 80px 0;
}

.process-steps {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 50px;
}

.process-step {
  flex: 1;
  text-align: center;
  position: relative;
  padding: 0 15px;
}

.step-number {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  margin: 0 auto 20px;
  box-shadow: 0 5px 15px rgba(255, 75, 75, 0.3);
}

.step-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
}

.process-step h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.step-divider {
  flex: 0 0 50px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  margin-top: 60px;
  position: relative;
}

.step-divider:before, .step-divider:after {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--secondary);
  top: 50%;
  transform: translateY(-50%);
}

.step-divider:before {
  left: -5px;
}

.step-divider:after {
  right: -5px;
}

.cta-container {
  text-align: center;
  margin-top: 40px;
}

/* FAQ Section */
.faq-section {
  padding: 80px 0;
  background-color: var(--gray);
}

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

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

.faq-header {
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-header h3 {
  font-size: 1.1rem;
  font-weight: 600;
}

.faq-arrow {
  width: 24px;
  height: 24px;
  transition: transform 0.3s;
}

.faq-item.active .faq-arrow {
  transform: rotate(180deg);
}

.faq-content {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s, padding 0.3s;
}

.faq-item.active .faq-content {
  padding: 0 20px 20px;
  max-height: 300px;
}

/* Call to Action Section */
.call-to-action {
  padding: 80px 0;
  text-align: center;
}

.call-to-action h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.call-to-action p {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 30px;
}

/* Footer */
footer {
  background-color: var(--dark);
  color: var(--light);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-branding {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
}

.footer-tagline {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.footer-tagline span {
  color: var(--primary);
}

.footer-description {
  font-size: 0.9rem;
  opacity: 0.8;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 30px;
}

.footer-links-column h4 {
  margin-bottom: 20px;
  font-size: 1.1rem;
  position: relative;
  padding-bottom: 10px;
}

.footer-links-column h4:after {
  content: '';
  position: absolute;
  width: 30px;
  height: 3px;
  background-color: var(--primary);
  bottom: 0;
  left: 0;
}

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

.footer-links-column li {
  margin-bottom: 12px;
}

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

.footer-links-column a:hover {
  opacity: 1;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  font-size: 0.9rem;
  opacity: 0.7;
}

/* Media Queries */
@media (max-width: 992px) {
  .hero .container {
    flex-direction: column;
  }
  
  .hero-text, .hero-visual {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: white;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    transform: translateY(-150%);
    transition: transform 0.3s;
    z-index: 99;
  }
  
  .nav-menu.active {
    transform: translateY(0);
  }
  
  .nav-menu li {
    margin: 15px 0;
  }
  
  .process-steps {
    flex-direction: column;
  }
  
  .process-step {
    margin-bottom: 40px;
  }
  
  .step-divider {
    width: 2px;
    height: 30px;
    margin: 0 auto;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-branding {
    align-items: center;
    text-align: center;
    margin-bottom: 20px;
  }
  
  h2 {
    font-size: 1.8rem !important;
  }
  
  .hero-text h2 {
    font-size: 2rem !important;
  }
  
  .feature-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .feature-badges {
    flex-direction: column;
    align-items: center;
  }
  
  .feature-badge {
    margin-bottom: 20px;
  }
  
  .cta-button {
    width: 100%;
  }
}

/* Menu Toggle Animation */
.menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* FAQ Animation */
.faq-item.active {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
