:root {
  --primary-color: #FF8C61;
  --secondary-color: #2C3E50;
  --accent-color: #FFA07A;
  --background-light: #FFF5F2;
  --background-white: #FFFFFF;
  --text-dark: #2C3E50;
  --text-medium: #5D6D7E;
  --text-light: #95A5A6;
  --success-color: #27AE60;
  --border-color: #E8EBED;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.16);
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-xxl: 4rem;
  --border-radius: 12px;
  --transition: all 0.3s ease;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--background-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

#app {
  margin: 0;
  padding: 0;
  max-width: 100%;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  font-weight: 800;
}

h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  margin-bottom: var(--spacing-md);
  letter-spacing: -1.5px;
}

.h1-accent {
  background: linear-gradient(135deg, #FF6A3D 0%, #FF5A2A 50%, #E84A1F 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  display: inline-block !important;
  font-weight: 900 !important;
  color: transparent !important;
  text-shadow: 0 2px 20px rgba(255, 90, 42, .2) !important;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  margin-bottom: var(--spacing-md);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  margin-bottom: var(--spacing-sm);
}

h4 {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  margin-bottom: var(--spacing-sm);
}

p {
  line-height: 1.8;
  margin-bottom: var(--spacing-sm);
  color: var(--text-medium);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 30px 0;
  min-height: auto;
  display: flex;
  align-items: center;
  background: transparent;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-bg .top {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 100%;
  background:
    radial-gradient(ellipse 200px 64px at 18% 90%, rgba(255, 255, 255, .24), transparent 64%),
    radial-gradient(ellipse 240px 80px at 82% 88%, rgba(255, 255, 255, .16), transparent 60%),
    radial-gradient(900px 520px at 18% 8%, rgba(255, 255, 255, .45), transparent 62%),
    radial-gradient(700px 420px at 82% 18%, rgba(255, 255, 255, .22), transparent 60%),
    linear-gradient(120deg, #FFC2A8, #FF8A62);
}


.hero-bg svg {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 200px;
  width: 100%;
  z-index: 1;
}

.hero .container {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(255, 255, 255, .82);
  backdrop-filter: blur(12px);
  box-shadow: 0 14px 36px rgba(31, 41, 51, .10);
  font-weight: 950;
  font-size: 11px;
  letter-spacing: .55px;
  text-transform: uppercase;
  animation: fadeIn 0.6s ease-out 0.3s backwards;
}

.hero .hero-badge i {
  width: 18px;
  height: 18px;
  display: inline-grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(255, 90, 42, .14);
  border: 1px solid rgba(255, 90, 42, .18);
}

.hero .hero-badge i svg {
  width: 10px;
  height: 10px;
  stroke-width: 2.5px;
  stroke: rgba(255, 90, 42, .92);
}

.hero .lead {
  margin: 4px 0 16px;
  color: rgba(31, 41, 51, .88);
  font-size: 16px;
  line-height: 1.5;
  max-width: 56ch;
  font-weight: 700;
  letter-spacing: -0.2px;
}

.contact-hero {
  min-height: auto;
  padding: 4rem 0 5rem;
}

.contact-hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 1.5rem 0;
}

.contact-hero-text h1 {
  margin: 10px 0 6px;
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1.1;
  letter-spacing: -1.8px;
  text-wrap: balance;
  background: none;
  border: 0;
  padding: 0;
  box-shadow: none;
  font-weight: 900;
  color: #1f2937;
}

.contact-hero-text h1 strong {
  font-weight: 1000;
  letter-spacing: -2px;
}


.contact-hero-text .lead {
  margin: 4px 0 16px;
  color: rgba(31, 41, 51, .88);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: -0.2px;
  max-width: 420px;
}

.contact-form-card-wrapper {
  position: relative;
  z-index: 10;
}

.contact-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 1.75rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.5) inset;
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.contact-form-compact {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.form-field label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-dark);
}

.form-field label span {
  color: var(--primary-color);
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 0.625rem 0.875rem;
  border: 1.5px solid #E5E7EB;
  border-radius: 8px;
  font-size: 0.9375rem;
  font-family: inherit;
  transition: all 0.2s ease;
  background: rgba(255, 255, 255, 0.8);
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  background: white;
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #9CA3AF;
}

.form-field textarea {
  resize: none;
  min-height: 70px;
}

.contact-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, var(--primary-color) 0%, #FF8C5A 100%);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 0.9375rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
  margin-top: 0.25rem;
}

.contact-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

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

.form-success-compact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, #ECFDF5 0%, #D1FAE5 100%);
  border-radius: 10px;
}

.form-success-compact svg {
  width: 24px;
  height: 24px;
  stroke: #059669;
  flex-shrink: 0;
}

.form-success-compact span {
  font-weight: 600;
  color: #065F46;
  font-size: 0.9375rem;
}

.form-success-modern {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: linear-gradient(135deg, #ECFDF5 0%, #D1FAE5 100%);
  border-radius: 16px;
  border: 2px solid #10B981;
  animation: successFadeIn 0.5s ease-out;
}

@keyframes successFadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.success-icon-wrapper {
  margin-bottom: 1.25rem;
}

.success-checkmark {
  width: 64px;
  height: 64px;
  border-radius: 50%;
}

.checkmark-circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 2;
  stroke: #10B981;
  fill: none;
  animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark-check {
  transform-origin: 50% 50%;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  stroke-width: 3;
  stroke: #10B981;
  animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.4s forwards;
}

@keyframes stroke {
  100% {
    stroke-dashoffset: 0;
  }
}

.success-content {
  max-width: 100%;
}

.success-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #065F46;
  margin: 0 0 0.5rem 0;
  line-height: 1.3;
}

.success-message {
  font-size: 0.9375rem;
  font-weight: 500;
  color: #047857;
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .form-success-modern {
    padding: 2rem 1.25rem;
  }

  .success-checkmark {
    width: 56px;
    height: 56px;
  }

  .success-title {
    font-size: 1.125rem;
  }

  .success-message {
    font-size: 0.875rem;
  }
}

.info-layout-two-col {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

.contact-sidebar-box {
  background: white;
  border: 2px solid #E2E8F0;
  border-radius: 16px;
  padding: 1.5rem;
  position: sticky;
  top: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.contact-info-compact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.contact-info-icon-sm {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--primary-color) 0%, #FF8C5A 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon-sm svg {
  width: 18px;
  height: 18px;
  stroke: white;
}

.contact-info-text-sm h3 {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-medium);
  margin-bottom: 0.125rem;
}

.contact-info-text-sm p {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0;
}

.contact-actions-compact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.social-compact {
  margin-bottom: 1rem;
}

.social-compact h3 {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-medium);
  margin-bottom: 0.625rem;
}

.sidebar-divider {
  height: 1px;
  background: #E2E8F0;
  margin: 1rem 0;
}

.discover-compact {
  text-align: left;
}

.discover-compact .section-label {
  display: inline-block;
  margin-bottom: 0.5rem;
}

.discover-compact h3 {
  font-size: 1rem;
  line-height: 1.3;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
  font-weight: 700;
}

.discover-links-compact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.discover-link-compact {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: #F8FAFC;
  border-radius: 10px;
  text-decoration: none;
  border: 1px solid #E5E7EB;
  transition: all 0.3s ease;
}

.discover-link-compact:hover {
  border-color: var(--primary-color);
  background: white;
  box-shadow: 0 2px 12px rgba(255, 107, 53, 0.1);
}

.discover-link-icon-sm {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--primary-color) 0%, #FF8C5A 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.discover-link-icon-sm svg {
  width: 16px;
  height: 16px;
  stroke: white;
}

.discover-link-text-sm {
  flex: 1;
}

.discover-link-text-sm h4 {
  font-size: 0.8125rem;
  margin-bottom: 0.0625rem;
  color: var(--text-dark);
  font-weight: 700;
}

.discover-link-text-sm p {
  font-size: 0.6875rem;
  color: var(--text-medium);
  line-height: 1.4;
  margin: 0;
}

.contact-info-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: #F8FAFC;
  border-radius: 12px;
  border: 2px solid #E2E8F0;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary-color) 0%, #FF8C5A 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 22px;
  height: 22px;
  stroke: white;
}

.contact-info-text h3 {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-medium);
  margin-bottom: 0.25rem;
}

.contact-info-text p {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 0.875rem 1.25rem;
  border-radius: 10px;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.contact-action-btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

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

.contact-action-btn.whatsapp:hover {
  background: #1FB855;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}

.contact-action-btn.email {
  background: white;
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.contact-action-btn.email:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 107, 53, 0.25);
}

.social-links h3 {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-medium);
  margin-bottom: 1rem;
  text-align: center;
}

.social-icons {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
}

.social-icons a {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F8FAFC;
  border-radius: 10px;
  border: 2px solid #E2E8F0;
  transition: all 0.3s ease;
  color: var(--text-medium);
}

.social-icons a:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.25);
}

.social-icons svg {
  width: 20px;
  height: 20px;
}

.info-section {
  padding: 5rem 0;
  background: #FFFFFF;
}

.info-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary-color);
  margin-bottom: 0.75rem;
}

.about-content h2,
.discover-content h2 {
  font-size: 1.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.intro-text {
  font-size: 1.0625rem;
  color: var(--text-dark);
  font-weight: 500;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.about-content p {
  font-size: 0.9375rem;
  color: var(--text-medium);
  line-height: 1.7;
  margin-bottom: 0.875rem;
}

.about-content-full {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-content-full h2 {
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.about-content-full p {
  font-size: 0.9375rem;
  color: var(--text-medium);
  line-height: 1.7;
  margin-bottom: 0.875rem;
  text-align: left;
}

.about-content-full .intro-text {
  font-size: 1.0625rem;
  color: var(--text-dark);
  font-weight: 500;
  margin-bottom: 1rem;
  line-height: 1.6;
  text-align: left;
}

.discover-links {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  margin-top: 1.5rem;
}

.discover-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: white;
  border-radius: 12px;
  text-decoration: none;
  border: 2px solid #E5E7EB;
  transition: all 0.3s ease;
}

.discover-link:hover {
  border-color: var(--primary-color);
  transform: translateX(4px);
  box-shadow: 0 4px 20px rgba(255, 107, 53, 0.1);
}

.discover-link-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary-color) 0%, #FF8C5A 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.discover-link-icon svg {
  width: 20px;
  height: 20px;
  stroke: white;
}

.discover-link-text {
  flex: 1;
}

.discover-link h3 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
  color: var(--text-dark);
  font-weight: 700;
}

.discover-link p {
  font-size: 0.8125rem;
  color: var(--text-medium);
  line-height: 1.5;
  margin: 0;
}

.discover-link-arrow {
  width: 20px;
  height: 20px;
  stroke: var(--primary-color);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.discover-link:hover .discover-link-arrow {
  transform: translateX(4px);
}

.contact-footer {
  padding: 2rem 0;
  background: #1E293B;
  color: white;
  text-align: center;
}

.contact-footer p {
  font-size: 0.875rem;
  opacity: 0.7;
}

@media (max-width: 1024px) {
  .contact-hero-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .contact-hero-text .lead {
    max-width: 100%;
  }

  .contact-hero-text .hero-badge {
    justify-content: center;
  }

  .info-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .info-layout-two-col {
    grid-template-columns: 1fr 350px;
    gap: 2rem;
  }

  .contact-sidebar-box {
    position: relative;
    top: 0;
  }
}

@media (max-width: 768px) {
  .contact-hero {
    padding-bottom: 2rem;
  }

  .contact-hero-layout {
    gap: 1.5rem;
    padding: 1rem 0;
  }

  .contact-hero-text h1 {
    font-size: 2rem;
  }

  .contact-hero-text .lead {
    font-size: 1rem;
  }

  .contact-card {
    padding: 1.25rem;
    border-radius: 16px;
  }

  .form-row-2 {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .info-section {
    padding: 3rem 0;
  }

  .info-layout {
    gap: 2rem;
  }

  .info-layout-two-col {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-sidebar-box {
    position: relative;
    top: 0;
    padding: 1.5rem;
  }

  .about-content h2 {
    font-size: 1.5rem;
  }

  .discover-compact h3 {
    font-size: 1rem;
  }

  .intro-text {
    font-size: 1rem;
  }

  .discover-link {
    padding: 0.875rem 1rem;
  }

  .discover-link h3 {
    font-size: 0.9375rem;
  }

  .discover-link p {
    font-size: 0.75rem;
  }
}
