@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  background: #faf8f6;
  color: #333;
  line-height: 1.6;
}

.lang-switch {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  display: flex;
  gap: 8px;
  background: rgba(255,255,255,0.95);
  padding: 8px 16px;
  border-radius: 30px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  backdrop-filter: blur(10px);
}

.lang-switch a {
  text-decoration: none;
  color: #666;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 4px 12px;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.lang-switch a:hover {
  background: #a52a2a;
  color: white;
}

.lang-switch a.active {
  background: #a52a2a;
  color: white;
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #a52a2a 0%, #8b2222 50%, #d4af37 100%);
  display: flex;
  align-items: center;
  padding: 80px 5%;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 200%;
  background: radial-gradient(circle, rgba(212,175,55,0.3) 0%, transparent 70%);
  pointer-events: none;
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 30px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.3);
  animation: float 6s ease-in-out infinite;
}

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

.hero-content {
  color: white;
}

.hero-content h1 {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.1;
}

.hero-content .highlight {
  color: #d4af37;
}

.hero-content p {
  font-size: 1.3rem;
  opacity: 0.95;
  margin-bottom: 30px;
  max-width: 500px;
}

.cta-group {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: white;
  color: #a52a2a;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.cta-secondary {
  background: transparent;
  border: 2px solid white;
  color: white;
}

.cta-secondary:hover {
  background: white;
  color: #a52a2a;
}

section {
  padding: 100px 5%;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.8rem;
  color: #a52a2a;
  margin-bottom: 15px;
  font-weight: 700;
}

.section-header p {
  font-size: 1.2rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.meet-nico {
  background: white;
}

.meet-nico-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 80px;
  align-items: center;
}

.nico-portrait {
  position: relative;
}

.nico-portrait img {
  width: 100%;
  border-radius: 30px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.nico-portrait::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #a52a2a, #d4af37);
  border-radius: 30px;
  z-index: -1;
  opacity: 0.3;
}

.nico-info h3 {
  font-size: 2.2rem;
  color: #a52a2a;
  margin-bottom: 20px;
}

.nico-info p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 15px;
}

.nico-traits {
  display: flex;
  gap: 30px;
  margin-top: 30px;
}

.trait {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: #a52a2a;
}

.trait-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #a52a2a, #d4af37);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.4rem;
}

.roles {
  background: #faf8f6;
}

.roles-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.role-card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
}

.role-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.role-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.role-content {
  padding: 25px;
}

.role-content h3 {
  font-size: 1.4rem;
  color: #a52a2a;
  margin-bottom: 10px;
}

.role-content p {
  color: #666;
  font-size: 0.95rem;
}

.how-it-works {
  background: linear-gradient(180deg, white 0%, #faf8f6 100%);
}

.steps-container {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}

.steps-container::before {
  content: '';
  position: absolute;
  top: 60px;
  left: 15%;
  right: 15%;
  height: 3px;
  background: linear-gradient(90deg, #a52a2a, #d4af37);
  z-index: 0;
}

.step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #a52a2a, #8b2222);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 2.5rem;
  font-weight: 800;
  color: white;
  box-shadow: 0 15px 30px rgba(165,42,42,0.3);
}

.step h3 {
  font-size: 1.3rem;
  color: #a52a2a;
  margin-bottom: 10px;
}

.step p {
  color: #666;
  font-size: 0.95rem;
  max-width: 250px;
  margin: 0 auto;
}

.pricing {
  background: white;
}

.prans-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.plan-card {
  background: #faf8f6;
  border-radius: 24px;
  padding: 40px 35px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.plan-card:hover {
  transform: translateY(-5px);
}

.plan-card.featured {
  background: linear-gradient(135deg, #a52a2a, #8b2222);
  color: white;
  transform: scale(1.05);
  box-shadow: 0 25px 60px rgba(165,42,42,0.4);
}

.plan-card.featured:hover {
  transform: scale(1.08);
}

.plan-card.featured::before {
  content: 'Popular';
  position: absolute;
  top: 20px;
  right: -35px;
  background: #d4af37;
  color: #a52a2a;
  padding: 5px 40px;
  font-size: 0.8rem;
  font-weight: 700;
  transform: rotate(45deg);
}

.plan-card h3 {
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.plan-card .price {
  font-size: 2.8rem;
  font-weight: 800;
  margin: 20px 0;
}

.plan-card.featured .price {
  color: #d4af37;
}

.plan-card ul {
  list-style: none;
  text-align: left;
  margin: 25px 0;
}

.plan-card li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  gap: 12px;
}

.plan-card.featured li {
  border-bottom-color: rgba(255,255,255,0.15);
}

.plan-card li::before {
  content: '✓';
  color: #d4af37;
  font-weight: 700;
}

.plan-card .cta {
  width: 100%;
  justify-content: center;
  margin-top: 20px;
}

.plan-card.featured .cta {
  background: white;
  color: #a52a2a;
}

.contact {
  background: linear-gradient(180deg, #faf8f6 0%, white 100%);
}

.contact-container {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info h3 {
  font-size: 1.8rem;
  color: #a52a2a;
  margin-bottom: 20px;
}

.contact-info p {
  color: #666;
  margin-bottom: 30px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-btn {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 18px 25px;
  background: white;
  border-radius: 16px;
  text-decoration: none;
  color: #333;
  font-weight: 600;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.contact-btn:hover {
  transform: translateX(10px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

.contact-btn svg {
  width: 28px;
  height: 28px;
}

.contact-btn.whatsapp {
  background: #25D366;
  color: white;
}

.contact-btn.whatsapp:hover {
  background: #20bd5a;
}

.contact-btn.email {
  background: #a52a2a;
  color: white;
}

.contact-btn.email:hover {
  background: #8b2222;
}

.contact-form {
  background: white;
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.contact-form h3 {
  font-size: 1.5rem;
  color: #a52a2a;
  margin-bottom: 25px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: #555;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #eee;
  border-radius: 12px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #a52a2a;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form .cta {
  width: 100%;
  justify-content: center;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

footer {
  background: #1a1a1a;
  color: #aaa;
  padding: 50px 5% 30px;
}

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

.footer-section h4 {
  color: white;
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.footer-section p {
  line-height: 1.8;
}

.footer-bottom {
  max-width: 1200px;
  margin: 40px auto 0;
  padding-top: 30px;
  border-top: 1px solid #333;
  text-align: center;
  font-size: 0.9rem;
}

.disclaimer {
  font-size: 0.85rem;
  color: #777;
  margin-top: 15px;
  font-style: italic;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content, .hero-image {
  animation: fadeInUp 1s ease forwards;
}

.hero-image {
  animation-delay: 0.2s;
  opacity: 0;
}

@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content p {
    margin: 0 auto 30px;
  }

  .cta-group {
    justify-content: center;
  }

  .hero-image img {
    max-width: 400px;
    margin: 0 auto;
    display: block;
  }

  .meet-nico-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .nico-portrait img {
    max-width: 350px;
    margin: 0 auto;
  }

  .nico-traits {
    justify-content: center;
  }

  .steps-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .steps-container::before {
    display: none;
  }

  .contact-container {
    grid-template-columns: 1fr;
  }

  .plan-card.featured {
    transform: none;
  }

  .plan-card.featured:hover {
    transform: translateY(-5px);
  }
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.8rem;
  }

  section {
    padding: 60px 5%;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .hero {
    padding-top: 100px;
  }

  .lang-switch {
    top: 10px;
    right: 10px;
    padding: 6px 12px;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-image img {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
    display: block;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .meet-nico-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .nico-portrait img {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    display: block;
  }

  .nico-info h3 {
    font-size: 1.8rem;
  }

  .nico-info p {
    font-size: 1rem;
  }

  .nico-traits {
    flex-direction: column;
    gap: 20px;
  }

  .roles-grid {
    grid-template-columns: 1fr;
  }

  .step {
    padding: 0 10px;
  }

  .step-number {
    width: 80px;
    height: 80px;
    font-size: 1.8rem;
  }

  .step p {
    max-width: 100%;
  }

  .pricing .section-header p,
  .section-header p {
    font-size: 1rem;
  }

  .prans-container {
    grid-template-columns: 1fr;
  }

  .contact-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-form {
    padding: 25px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .plan-card.featured {
    transform: none;
  }

  .plan-card.featured:hover {
    transform: translateY(-5px);
  }
}
