/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #374151;
  background-color: #fafafa;
}

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

a {
  text-decoration: none;
  color: inherit;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: white;
  box-shadow: 0 4px 16px rgba(32, 178, 170, 0.15);
  z-index: 50;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  padding-right: 24px;
}

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

.logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
}

.logo-img {
  height: 130px;
  width: auto;
  object-fit: contain;
}

.nav-desktop {
  display: none;
  align-items: center;
}

.nav-link {
  display: flex;
  align-items: center;
  margin-left: 32px;
  transition: color 0.3s;
}

.nav-link:hover {
  color: #14b8a6;
}

.nav-icon {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}

.btn-primary {
  display: inline-block;
  margin-left: 32px;
  padding: 10px 24px;
  background: #14b8a6;
  color: white;
  font-weight: 600;
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s;
}

.btn-primary:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.mobile-menu-btn {
  display: block;
  padding: 8px;
  transition: color 0.3s;
}

.mobile-menu-btn:hover {
  color: #14b8a6;
}

.mobile-menu-icon {
  width: 28px;
  height: 28px;
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }
  
  .mobile-menu-btn {
    display: none;
  }
}

/* Main Content */
.main-content {
  padding-top:0px;
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 1000px;
  width: 100%;
  overflow: hidden;
}

.hero-container {
  position: relative;
  height: 100%;
  width: 100%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  z-index: 10;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  z-index: 20;
}

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

.hero-text {
  max-width: 672px;
}

.hero-title {
  font-size: 36px;
  line-height: 1.25;
  font-weight: 700;
  color: white;
  margin-bottom: 24px;
}

.hero-description {
  font-size: 18px;
  line-height: 1.625;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
}

.btn-hero {
  display: inline-block;
  padding: 16px 32px;
  background: #14b8a6;
  color: white;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.75;
  border-radius: 2px;
  box-shadow: 0 4px 16px rgba(32, 178, 170, 0.15);
  transition: box-shadow 0.3s;
}

.btn-hero:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 60px;
    line-height: 1;
  }
  
  .hero-description {
    font-size: 20px;
    line-height: 1.75;
  }
}

/* Carousel Controls */
.carousel-btn {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 30;
  padding: 0;
  transition: background 0.3s;
}

.carousel-btn:hover {
  background: rgba(255, 255, 255, 0.3);
}

.carousel-btn-prev {
  left: 24px;
}

.carousel-btn-next {
  right: 24px;
}

.carousel-icon {
  width: 24px;
  height: 24px;
  color: white;
}

.carousel-indicators {
  position: absolute;
  display: flex;
  left: 50%;
  bottom: 32px;
  transform: translateX(-50%);
  z-index: 30;
}

.carousel-indicator {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  margin-left: 12px;
  padding: 0;
  transition: background 0.3s;
}

.carousel-indicator:first-child {
  margin-left: 0;
}

.carousel-indicator:hover {
  background: rgba(255, 255, 255, 0.7);
}

.carousel-indicator-active {
  width: 32px;
  background: white;
}

/* Section Styles */
.section {
  padding: 80px 0;
}

.section-light {
  background: #fafafa;
}

.section-white {
  background: white;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

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

.section-title {
  font-size: 30px;
  line-height: 1.2;
  font-weight: 700;
  color: #111827;
  margin-bottom: 16px;
}

.section-divider {
  width: 80px;
  height: 4px;
  background: #14b8a6;
  margin: 0 auto 24px;
}

.section-description {
  font-size: 18px;
  line-height: 1.625;
  max-width: 768px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 36px;
    line-height: 1.25;
  }
}

/* About Section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

.about-subtitle {
  font-size: 24px;
  line-height: 1.33;
  font-weight: 600;
  color: #111827;
  margin-bottom: 24px;
}

.about-list {
  display: flex;
  flex-direction: column;
}

.about-item {
  display: flex;
  align-items: flex-start;
  margin-top: 16px;
}

.about-item:first-child {
  margin-top: 0;
}

.about-icon-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(20, 184, 166, 0.1);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 4px;
}

.about-icon {
  width: 20px;
  height: 20px;
  color: #14b8a6;
}

.about-item-text {
  margin-left: 16px;
  line-height: 1.625;
}

.about-item-text strong {
  font-weight: 700;
  color: #111827;
}

.about-image-container {
  position: relative;
  height: 384px;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: 0 4px 16px rgba(32, 178, 170, 0.15);
}

.about-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Benefits Section */
.benefits-intro {
  margin-bottom: 64px;
}

.benefits-intro-card {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 2px;
  padding: 32px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.benefits-intro-title {
  font-size: 24px;
  line-height: 1.33;
  font-weight: 600;
  color: #111827;
  margin-bottom: 24px;
}

.benefits-intro-text {
  line-height: 1.625;
  margin-bottom: 16px;
}

.benefits-intro-text:last-child {
  margin-bottom: 0;
}

.benefits-subtitle {
  font-size: 24px;
  line-height: 1.33;
  font-weight: 600;
  color: #111827;
  text-align: center;
  margin-bottom: 32px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.benefit-card {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 2px;
  padding: 24px;
}

.benefit-content {
  display: flex;
  align-items: flex-start;
}

.benefit-icon-wrapper {
  flex-shrink: 0;
}

.benefit-icon-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(20, 184, 166, 0.1);
  border-radius: 6px;
}

.benefit-icon {
  width: 24px;
  height: 24px;
  color: #14b8a6;
}

.benefit-text {
  margin-left: 16px;
}

.benefit-title {
  font-size: 18px;
  line-height: 1.75;
  font-weight: 600;
  color: #111827;
  margin-bottom: 8px;
}

.benefit-description {
  font-size: 14px;
  line-height: 1.625;
}

@media (min-width: 768px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.section-cta {
  text-align: center;
  margin-top: 48px;
}

.btn-secondary {
  display: inline-block;
  padding: 16px 32px;
  background: #14b8a6;
  color: white;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.75;
  border-radius: 2px;
  box-shadow: 0 4px 16px rgba(32, 178, 170, 0.15);
  transition: box-shadow 0.3s;
}

.btn-secondary:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

/* Differentials Section */
.differentials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.differential-card {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 2px;
  padding: 32px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.differential-icon-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: linear-gradient(to right bottom, rgb(32, 178, 170), rgb(72, 209, 204));
  border-radius: 6px;
  margin-bottom: 24px;
}

.differential-icon {
  width: 32px;
  height: 32px;
  color: white;
}

.differential-title {
  font-size: 20px;
  line-height: 1.75;
  font-weight: 600;
  color: #111827;
  margin-bottom: 16px;
}

.differential-description {
  line-height: 1.625;
}

@media (min-width: 768px) {
  .differentials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Instagram Section */
.instagram-link {
  display: inline-flex;
  align-items: center;
  color: #14b8a6;
  margin-top: 16px;
  transition: color 0.3s;
}

.instagram-link:hover {
  color: #0d9488;
}

.instagram-icon {
  width: 20px;
  height: 20px;
}

.instagram-handle {
  font-weight: 600;
  margin-left: 8px;
}

.instagram-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.instagram-card {
  background: white;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s;
}

.instagram-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.instagram-image-container {
  position: relative;
  width: 100%;
  height: 256px;
  overflow: hidden;
}

.instagram-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.instagram-caption {
  padding: 16px;
}

.instagram-text {
  font-size: 14px;
  line-height: 1.25;
  overflow: hidden;
}

@media (min-width: 768px) {
  .instagram-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Contact Section */
.contact-content {
  display: flex;
  flex-direction: column;
}

.contact-form-card {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 2px;
  padding: 32px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  margin-bottom: 32px;
}

.contact-form-title {
  font-size: 24px;
  line-height: 1.33;
  font-weight: 600;
  color: #111827;
  margin-bottom: 24px;
}

.contact-form {
  display: flex;
  flex-direction: column;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

.form-group {
  margin-top: 24px;
}

.form-group:first-child {
  margin-top: 0;
}

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

.form-input,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(250, 250, 250, 0.3);
  border: 1px solid #e5e7eb;
  border-radius: 2px;
  font-family: inherit;
  font-size: 16px;
}

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

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

.btn-form {
  width: 100%;
  padding: 16px 32px;
  margin-top: 24px;
  background: #14b8a6;
  color: white;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.75;
  text-align: center;
  border-radius: 2px;
  box-shadow: 0 4px 16px rgba(32, 178, 170, 0.15);
  transition: box-shadow 0.3s;
}

.btn-form:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.contact-info-card {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 2px;
  padding: 32px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  margin-bottom: 32px;
}

.contact-info-title {
  font-size: 24px;
  line-height: 1.33;
  font-weight: 600;
  color: #111827;
  margin-bottom: 24px;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 768px) {
  .contact-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.contact-info-section {
  display: flex;
  flex-direction: column;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  margin-top: 24px;
}

.contact-info-item:first-child {
  margin-top: 0;
}

.contact-info-icon-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(20, 184, 166, 0.1);
  border-radius: 6px;
  flex-shrink: 0;
}

.contact-info-icon {
  width: 24px;
  height: 24px;
  color: #14b8a6;
}

.contact-info-text {
  margin-left: 16px;
}

.contact-info-label {
  font-weight: 600;
  color: #111827;
  margin-bottom: 4px;
}

.contact-info-value {
  line-height: 1.5;
}

.contact-info-link {
  transition: color 0.3s;
}

.contact-info-link:hover {
  color: #14b8a6;
}

.map-card {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.map-container {
  height: 384px;
}

.map-iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Footer */
.footer {
  background: white;
  border-top: 1px solid #e5e7eb;
  padding: 48px 0;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

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

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-column {
  display: flex;
  flex-direction: column;
}

.footer-logo-container {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.footer-logo {
  height: 130px;
  width: auto;
  object-fit: contain;
}

.footer-description {
  font-size: 14px;
  line-height: 1.625;
}

.footer-title {
  font-weight: 600;
  color: #111827;
  margin-bottom: 16px;
}

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

.footer-list li {
  margin-top: 8px;
}

.footer-list li:first-child {
  margin-top: 0;
}

.footer-link {
  font-size: 14px;
  line-height: 1.25;
  transition: color 0.3s;
}

.footer-link:hover {
  color: #14b8a6;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  margin-top: 8px;
}

.footer-contact-item:first-child {
  margin-top: 0;
}

.footer-contact-icon {
  width: 16px;
  height: 16px;
  color: #14b8a6;
  flex-shrink: 0;
  margin-top: 4px;
}

.footer-contact-text {
  font-size: 14px;
  line-height: 1.25;
  margin-left: 8px;
}

.footer-social {
  display: flex;
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(20, 184, 166, 0.1);
  border-radius: 50%;
  margin-left: 16px;
  transition: background 0.3s, color 0.3s;
}

.footer-social-link:first-child {
  margin-left: 0;
}

.footer-social-link:hover {
  background: #14b8a6;
  color: white;
}

.footer-social-icon {
  width: 20px;
  height: 20px;
}

.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid #e5e7eb;
}

.footer-copyright {
  font-size: 14px;
  line-height: 1.25;
  color: #6b7280;
}
