/* 
* aiclothesremoverES.pw - Estilo Español
* Diseño inspirado en elementos culturales y estéticos de España
*/

:root {
  --primary-color: #C60B1E; /* Rojo bandera española */
  --secondary-color: #FFC400; /* Amarillo bandera española */
  --light-color: #FFFFFF;
  --dark-color: #333333;
  --accent-color: #0B6121; /* Verde oliva, color complementario */
  --gradient-bg: linear-gradient(135deg, var(--primary-color), #8A0000);
  --shadow-color: rgba(198, 11, 30, 0.2);
  --tile-color: #F5D7B2; /* Color inspirado en azulejos españoles */
  --wine-color: #5E0035; /* Color inspirado en vino tinto español */
  --border-radius: 4px;
  --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

/* Estilos básicos */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lora', 'Garamond', serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark-color);
  background-color: #FCFCFC;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: var(--transition);
}

a:hover {
  color: var(--secondary-color);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

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

/* Tipografía */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1.2rem;
  font-family: 'Playfair Display', 'Georgia', serif;
}

h1 {
  font-size: 3rem;
  color: var(--light-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
  position: relative;
  padding-bottom: 15px;
}

h2::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 3px;
  background-color: var(--secondary-color);
  bottom: 0;
  left: 0;
}

.text-center h2::before {
  left: 50%;
  transform: translateX(-50%);
}

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

p {
  margin-bottom: 1.2rem;
}

.text-center {
  text-align: center;
}

/* Botones */
.btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--primary-color);
  color: var(--light-color);
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 10px var(--shadow-color);
  transition: var(--transition);
  border: 2px solid var(--primary-color);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn:hover {
  background-color: transparent;
  color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px var(--shadow-color);
}

.btn-alt {
  background-color: transparent;
  color: var(--light-color);
  border: 2px solid var(--light-color);
}

.btn-alt:hover {
  background-color: var(--light-color);
  color: var(--primary-color);
}

.btn-secondary {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  color: var(--dark-color);
}

.btn-secondary:hover {
  color: var(--secondary-color);
}

/* Header - Inspirado en arquitectura española */
header {
  background-color: var(--light-color);
  box-shadow: var(--box-shadow);
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  border-bottom: 3px solid var(--primary-color);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo {
  display: flex;
  align-items: center;
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--primary-color);
  font-family: 'Playfair Display', 'Georgia', serif;
}

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

.logo span {
  color: var(--secondary-color);
}

/* Navegación */
.nav-menu {
  display: flex;
  gap: 2rem;
}

.nav-menu li a {
  color: var(--dark-color);
  font-weight: 600;
  position: relative;
  padding: 5px 0;
  font-size: 1.1rem;
}

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

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

.hamburger {
  display: none;
  cursor: pointer;
  font-size: 1.8rem;
  color: var(--primary-color);
}

/* Hero Section - Inspirado en el arte español */
.hero {
  background: var(--gradient-bg);
  padding: 180px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 100' preserveAspectRatio='none'%3E%3Cpath d='M0,100 C400,0 800,100 1200,0 L1200,100 L0,100 Z' style='fill:%23ffffff;'/%3E%3C/svg%3E");
  background-size: cover;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cpath d='M20 20H40V40H20V20ZM60 20H80V40H60V20ZM20 60H40V80H20V60ZM60 60H80V80H60V60Z' fill='%23FFFFFF' opacity='0.03'/%3E%3C/svg%3E");
}

.hero-content {
  max-width: 650px;
  position: relative;
  z-index: 1;
  color: var(--light-color);
}

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

.hero-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.hero-image {
  flex-basis: 45%;
  position: relative;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

/* Características - Inspirado en los azulejos españoles */
.features {
  padding: 100px 0;
  background-color: var(--light-color);
  position: relative;
}

.features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Crect width='40' height='40' fill='%23F5D7B2' opacity='0.1'/%3E%3Crect x='40' y='40' width='40' height='40' fill='%23F5D7B2' opacity='0.1'/%3E%3C/svg%3E");
  opacity: 0.2;
}

.section-title {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 1;
}

.feature-box {
  padding: 40px 30px;
  background-color: var(--light-color);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
  border-bottom: 3px solid var(--primary-color);
}

.feature-box:hover {
  transform: translateY(-10px);
}

.feature-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--secondary-color);
  transition: var(--transition);
}

.feature-box:hover::before {
  height: 6px;
}

.feature-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

/* Cómo funciona - Inspirado en el flamenco */
.how-it-works {
  padding: 100px 0;
  background-color: #F7F7F7;
  position: relative;
  overflow: hidden;
}

.how-it-works::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(198, 11, 30, 0.05) 0%, rgba(198, 11, 30, 0) 70%);
}

.how-it-works::after {
  content: '';
  position: absolute;
  bottom: -200px;
  left: -200px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 196, 0, 0.05) 0%, rgba(255, 196, 0, 0) 70%);
}

.steps-container {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.step-box {
  flex-basis: 30%;
  background-color: var(--light-color);
  border-radius: var(--border-radius);
  padding: 40px 30px;
  box-shadow: var(--box-shadow);
  text-align: center;
  position: relative;
  transition: var(--transition);
}

.step-box:hover {
  transform: translateY(-5px);
}

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

.step-icon {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin: 20px 0;
}

.step-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--primary-color);
}

/* Acerca de - Inspirado en pinturas españolas */
.about {
  padding: 100px 0;
  background-color: var(--light-color);
  position: relative;
}

.about::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Ccircle cx='50' cy='50' r='40' stroke='%23FFC400' stroke-width='1' fill='none' opacity='0.1'/%3E%3C/svg%3E");
  background-size: 300px 300px;
  opacity: 0.3;
}

.about-row {
  display: flex;
  align-items: center;
  gap: 50px;
}

.about-content {
  flex-basis: 55%;
}

.about-image {
  flex-basis: 45%;
  position: relative;
}

.about-content ul {
  margin: 25px 0;
}

.about-content ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
}

.about-content ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary-color);
  font-weight: bold;
}

/* CTA - Inspirado en festivales españoles */
.cta {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--secondary-color), #E09900);
  color: var(--dark-color);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cpath d='M25 25L50 50L75 25M25 75L50 50L75 75' stroke='%23FFFFFF' stroke-width='1' fill='none' opacity='0.1'/%3E%3C/svg%3E");
}

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

.cta h2 {
  color: var(--dark-color);
}

.cta h2::before {
  background: var(--primary-color);
}

.cta p {
  max-width: 700px;
  margin: 0 auto 30px;
  font-size: 1.2rem;
  color: var(--dark-color);
}

.cta .btn {
  background-color: var(--primary-color);
  color: var(--light-color);
  border-color: var(--primary-color);
}

.cta .btn:hover {
  background-color: transparent;
  color: var(--dark-color);
}

/* Footer - Inspirado en la arquitectura española */
footer {
  padding: 80px 0 20px;
  background-color: var(--dark-color);
  color: var(--light-color);
  position: relative;
}

.footer-top {
  margin-bottom: 50px;
}

.footer-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-column h3 {
  color: var(--secondary-color);
  margin-bottom: 25px;
  font-size: 1.4rem;
  position: relative;
  padding-bottom: 10px;
}

.footer-column h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background-color: var(--primary-color);
}

.footer-column p {
  opacity: 0.8;
  margin-bottom: 20px;
}

.footer-logo {
  display: block;
  margin-bottom: 20px;
}

.footer-logo svg {
  width: 80px;
  height: 80px;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  position: relative;
  padding-left: 0;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--secondary-color);
  padding-left: 5px;
}

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

/* Decoraciones inspiradas en la arquitectura española */
.spanish-decor {
  position: absolute;
  width: 100%;
  height: 30px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='10' viewBox='0 0 40 10'%3E%3Cpath d='M0 0L10 0L20 10L30 0L40 0' fill='none' stroke='%23C60B1E' stroke-width='1'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  top: -15px;
  left: 0;
  z-index: 2;
}

.spanish-decor.bottom {
  top: auto;
  bottom: -15px;
  transform: rotate(180deg);
}

/* Responsive */
@media (max-width: 992px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2.2rem;
  }
  
  .hero {
    padding: 150px 0 80px;
  }
  
  .hero-row {
    flex-direction: column;
  }
  
  .hero-image {
    margin-top: 30px;
    text-align: center;
  }
  
  .steps-container {
    flex-direction: column;
    gap: 30px;
  }
  
  .step-box {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
  }
  
  .about-row {
    flex-direction: column;
  }
  
  .about-image {
    order: -1;
    margin-bottom: 30px;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: 71px;
    right: -100%;
    width: 100%;
    height: calc(100vh - 71px);
    background-color: var(--light-color);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 40px 0;
    transition: var(--transition);
    box-shadow: var(--box-shadow);
    z-index: 999;
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .nav-menu li {
    margin: 15px 0;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .hero-buttons .btn {
    width: 100%;
    text-align: center;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin: 0 auto;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
  
  .section-title {
    margin-bottom: 2.5rem;
  }
  
  .feature-box {
    padding: 30px 20px;
  }
  
  .footer-row {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-column h3::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-logo {
    margin: 0 auto 20px;
  }
}

/* Animaciones */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.8s ease-out forwards;
}
