/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Reverted to previous soft pink gradient color scheme */
body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  color: #2d2d2d;
  overflow-x: hidden;
  background: #fef9fa;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Navigation */
/* Updated navigation with new color scheme */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #fff;
  z-index: 1000;
  padding: 20px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid #fce4ec;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 600;
  font-family: "Playfair Display", serif;
  color: #f06292;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 35px;
}

/* Updated link colors to soft pink tones */
.nav-menu a {
  text-decoration: none;
  color: #2d2d2d;
  font-weight: 500;
  font-size: 15px;
  transition: color 0.3s;
}

/* Reverted link hover color to previous pink */
.nav-menu a:hover {
  color: #f06292;
}

.social-icons {
  display: flex;
  gap: 15px;
}

/* Reverted social icons to previous pink colors */
.social-icons a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fce4ec;
  color: #f06292;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.3s, background 0.3s;
  font-size: 16px;
}

.social-icons a:hover {
  transform: scale(1.1);
  background: #f06292;
  color: #fff;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: #f06292;
  transition: all 0.3s;
  border-radius: 2px;
}

/* Hero Section */
/* Updated hero with elegant overlay and image placeholder */
.hero {
  height: 500px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 0 20px;
  margin-top: 76px;
  overflow: hidden;
  background: linear-gradient(135deg, #f8bbd0, #f06292);
}

.hero-content {
  max-width: 900px;
  position: relative;
  z-index: 2;
}

.hero-subtitle {
  font-size: 14px;
  letter-spacing: 3px;
  margin-bottom: 30px;
  opacity: 0.95;
  font-weight: 500;
}

.hero-title {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.3;
  text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.3);
  font-family: "Playfair Display", serif;
}

/* About Section */
/* Improved text readability for all devices */
.about-section {
  padding: 100px 0;
  background: #fff;
  position: relative;
}

.profile-image {
  max-width: 300px;
  margin: 0 auto 50px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(240, 98, 146, 0.3);
  border: 5px solid #fce4ec;
}

.profile-image img {
  width: 100%;
  height: auto;
  display: block;
}

.about-content {
  max-width: 900px;
  margin: 0 auto;
}

/* Increased heading sizes and improved line height for better readability */
.about-content h2 {
  font-size: 56px;
  margin-bottom: 40px;
  color: #f06292;
  font-weight: 600;
  font-family: "Playfair Display", serif;
  text-align: center;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.about-content h3 {
  font-size: 42px;
  margin: 50px 0 35px;
  color: #f06292;
  font-weight: 600;
  font-family: "Playfair Display", serif;
  line-height: 1.3;
  letter-spacing: -0.3px;
}

/* Increased paragraph font size and line height for optimal readability */
.about-content p {
  margin-bottom: 30px;
  font-size: 20px;
  line-height: 2;
  color: #2d2d2d;
  font-weight: 400;
  max-width: 100%;
}

.intro {
  font-size: 22px;
  line-height: 2;
  text-align: center;
  font-weight: 400;
}

.separator {
  text-align: center;
  font-size: 24px;
  color: #fce4ec;
  margin: 50px 0;
}

.simple-list {
  list-style: none;
  margin: 35px 0;
  padding: 0;
}

/* Increased list item font size and spacing for better readability */
.simple-list li {
  margin-bottom: 25px;
  font-size: 20px;
  line-height: 2;
  padding-left: 0;
  font-weight: 400;
}

.closing,
.cta-text,
.final-cta {
  font-size: 21px;
  line-height: 2;
  margin-bottom: 30px;
  text-align: center;
  font-weight: 400;
}

.final-cta {
  font-weight: 600;
  font-size: 24px;
  color: #f06292;
}

/* Added styling for CTA buttons in about section */
.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap;
}

.btn-cta {
  display: inline-block;
  padding: 18px 40px;
  background: linear-gradient(135deg, #f8bbd0, #f06292);
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  text-align: center;
  box-shadow: 0 4px 15px rgba(240, 98, 146, 0.4);
  position: relative;
  overflow: hidden;
}

.btn-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f06292, #e91e63);
  transition: left 0.3s ease;
  z-index: -1;
}

.btn-cta:hover::before {
  left: 0;
}

.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(240, 98, 146, 0.5);
}

/* Ensure text stays visible on hover for all buttons */
.btn-cta,
.btn-primary {
  position: relative;
}

.btn-cta > *,
.btn-primary > * {
  position: relative;
  z-index: 1;
}

/* Make sure button text content has higher z-index than overlay */
.btn-cta::after,
.btn-primary::after {
  content: attr(data-text);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
}

/* Alternative approach: ensure all text content is above overlay */
.btn-primary,
.btn-cta {
  z-index: 1;
}

.btn-primary *,
.btn-cta * {
  position: relative;
  z-index: 2;
}

/* Added gallery section for image placeholders */
.gallery-section {
  padding: 100px 0;
  background: #fef9fa;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

/* Updated grid to show 3 columns for 6 images */
@media (min-width: 641px) and (max-width: 968px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Make CTA buttons stack on tablets */
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-cta {
    width: 100%;
    max-width: 400px;
  }
}

/* Reverted gallery item shadow to previous pink */
.gallery-item {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(240, 98, 146, 0.2);
  transition: transform 0.3s, box-shadow 0.3s;
  background: #fff;
}

.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 35px rgba(240, 98, 146, 0.3);
}

.gallery-item img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}

/* Pricing Section */
/* Updated pricing section with soft pink accents */
.pricing-section {
  padding: 100px 0;
  background: #fff;
}

/* Reverted section title color to previous pink */
.section-title {
  text-align: center;
  font-size: 48px;
  margin-bottom: 20px;
  color: #f06292;
  font-weight: 600;
  font-family: "Playfair Display", serif;
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: #666;
  margin-bottom: 60px;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

/* Reverted pricing card styling to previous pink */
.pricing-card {
  background: #fff;
  border-radius: 25px;
  box-shadow: 0 5px 25px rgba(240, 98, 146, 0.2);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  border: 2px solid #fce4ec;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(240, 98, 146, 0.3);
}

/* Reverted featured card border to previous pink */
.pricing-card.featured {
  border: 3px solid #f06292;
  background: linear-gradient(to bottom, #fff, #fef9fa);
}

/* Reverted badge gradient to previous pink */
.badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #f8bbd0, #f06292);
  color: #fff;
  padding: 10px 22px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 3px 10px rgba(240, 98, 146, 0.4);
}

/* Reverted card header gradient to previous pink */
.card-header {
  background: linear-gradient(135deg, #f8bbd0, #f06292);
  color: #fff;
  padding: 50px 30px;
  text-align: center;
}

.price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
}

.amount {
  font-size: 64px;
  font-weight: 700;
}

.currency {
  font-size: 26px;
  font-weight: 400;
}

.card-body {
  padding: 40px 35px;
}

.features-list {
  list-style: none;
  margin-bottom: 35px;
}

.features-list li {
  padding: 16px 0;
  border-bottom: 1px solid #fce4ec;
  font-size: 16px;
  line-height: 1.6;
}

.features-list li:last-child {
  border-bottom: none;
}

/* Reverted payment info styling to previous pink */
.payment-info {
  background: #fef9fa;
  padding: 28px;
  border-radius: 15px;
  margin-bottom: 30px;
  border: 2px solid #fce4ec;
}

.payment-info h4 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #f06292;
  font-weight: 600;
}

.erip-service {
  font-size: 15px;
  color: #666;
  margin-bottom: 10px;
}

/* Reverted ERIP code color to previous pink */
.erip-code strong {
  color: #f06292;
  font-size: 20px;
  font-weight: 700;
}

.erip-code {
  font-size: 16px;
  margin-bottom: 18px;
}

.payment-systems {
  display: flex;
  gap: 15px;
  align-items: center;
}

.payment-systems span {
  font-size: 13px;
  font-weight: 600;
  color: #666;
  padding: 8px 14px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid #fce4ec;
}

/* Reverted primary button gradient to previous pink */
.btn-primary {
  display: block;
  width: 100%;
  padding: 20px 35px;
  background: linear-gradient(135deg, #f8bbd0, #f06292);
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  text-align: center;
  box-shadow: 0 4px 15px rgba(240, 98, 146, 0.4);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f06292, #e91e63);
  transition: left 0.3s ease;
  z-index: -1;
}

.btn-primary:hover::before {
  left: 0;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(240, 98, 146, 0.5);
}

/* Contact Section */
/* Updated contact section with pink accents */
.contact-section {
  padding: 100px 0;
  background: #fef9fa;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
  margin-top: 50px;
}

/* Reverted social links styling to previous pink */
.social-link {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px 45px;
  background: #fff;
  border-radius: 50px;
  text-decoration: none;
  color: #2d2d2d;
  font-weight: 600;
  font-size: 17px;
  border: 2px solid #fce4ec;
  transition: all 0.3s ease;
  box-shadow: 0 3px 15px rgba(240, 98, 146, 0.15);
}

.social-link:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(240, 98, 146, 0.25);
  border-color: #f06292;
}

.social-link i {
  font-size: 26px;
}

.social-link.instagram i {
  color: #e4405f;
}

.social-link.tiktok i {
  color: #000;
}

.social-link.telegram i {
  color: #0088cc;
}

/* Footer */
/* Reverted footer gradient to previous pink */
.footer {
  background: linear-gradient(135deg, #f8bbd0, #f06292);
  color: #fff;
  padding: 40px 0;
  text-align: center;
}

.footer p {
  margin: 8px 0;
  font-size: 15px;
  font-weight: 400;
}

/* Responsive Design */
@media (max-width: 968px) {
  .container {
    padding: 0 20px;
  }

  .nav-container {
    padding: 0 20px;
  }

  /* Reverted nav menu shadow to previous pink */
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 76px;
    flex-direction: column;
    background: #fff;
    width: 100%;
    text-align: center;
    transition: left 0.3s;
    box-shadow: 0 10px 27px rgba(240, 98, 146, 0.2);
    padding: 20px 0;
    border-top: 1px solid #fce4ec;
  }

  .nav-menu.active {
    left: 0;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .hero {
    height: 500px;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 12px;
  }

  .pricing-cards {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .social-links {
    flex-direction: column;
    align-items: center;
  }

  .social-link {
    width: 100%;
    max-width: 350px;
    justify-content: center;
  }

  /* Adjusted heading sizes for tablets while maintaining readability */
  .about-content h2 {
    font-size: 44px;
    margin-bottom: 35px;
  }

  .about-content h3 {
    font-size: 34px;
    margin: 40px 0 30px;
  }

  .about-content p {
    font-size: 19px;
    line-height: 1.9;
  }

  .intro {
    font-size: 20px;
  }

  .simple-list li {
    font-size: 19px;
    line-height: 1.9;
  }

  .closing,
  .cta-text {
    font-size: 20px;
  }

  .final-cta {
    font-size: 22px;
  }

  .gallery-item img {
    height: 350px;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 15px;
  }

  .nav-container {
    padding: 0 15px;
  }

  .about-section,
  .pricing-section,
  .contact-section,
  .gallery-section {
    padding: 60px 0;
  }

  .hero {
    height: 500px;
  }

  .hero-title {
    font-size: 28px;
  }

  .hero-subtitle {
    font-size: 11px;
  }

  .section-title {
    font-size: 36px;
  }

  /* Optimized heading sizes for mobile while keeping text clear and readable */
  .about-content h2 {
    font-size: 36px;
    margin-bottom: 30px;
    line-height: 1.3;
  }

  .about-content h3 {
    font-size: 28px;
    margin: 35px 0 25px;
    line-height: 1.4;
  }

  /* Maintained good font size on mobile for comfortable reading */
  .about-content p {
    font-size: 18px;
    line-height: 1.9;
    margin-bottom: 25px;
  }

  .intro {
    font-size: 19px;
    line-height: 1.9;
  }

  .simple-list li {
    font-size: 18px;
    line-height: 1.9;
    margin-bottom: 20px;
  }

  .closing,
  .cta-text {
    font-size: 19px;
    line-height: 1.9;
  }

  .final-cta {
    font-size: 21px;
  }

  .profile-image {
    max-width: 220px;
  }

  /* Adjust CTA button sizing for mobile */
  .btn-cta {
    padding: 16px 30px;
    font-size: 15px;
  }

  .gallery-item img {
    height: 320px;
  }
}

/* Public Offer Page Styles */
.oferta-page {
  padding: 120px 0 80px;
  background: #fff;
  min-height: 100vh;
}

.oferta-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 40px;
}

.oferta-header {
  text-align: center;
  margin-bottom: 60px;
  padding-bottom: 40px;
  border-bottom: 3px solid #fce4ec;
}

.oferta-title {
  font-size: 42px;
  color: #f06292;
  font-weight: 700;
  font-family: "Playfair Display", serif;
  margin-bottom: 20px;
  line-height: 1.3;
}

.oferta-subtitle {
  font-size: 18px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 10px;
}

.oferta-date {
  font-size: 16px;
  color: #999;
  font-style: italic;
}

.oferta-content {
  line-height: 1.9;
  color: #2d2d2d;
}

.oferta-content h2 {
  font-size: 28px;
  color: #f06292;
  font-weight: 600;
  font-family: "Playfair Display", serif;
  margin: 50px 0 25px;
  padding-top: 30px;
  border-top: 2px solid #fce4ec;
}

.oferta-content h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.oferta-content h3 {
  font-size: 22px;
  color: #2d2d2d;
  font-weight: 600;
  margin: 35px 0 20px;
}

.oferta-content p {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.9;
  text-align: justify;
}

.oferta-content ul,
.oferta-content ol {
  margin: 20px 0 20px 30px;
  padding-left: 20px;
}

.oferta-content li {
  margin-bottom: 15px;
  font-size: 16px;
  line-height: 1.8;
}

.oferta-content strong {
  color: #f06292;
  font-weight: 600;
}

.oferta-section {
  margin-bottom: 40px;
}

.oferta-company-info {
  background: #fef9fa;
  padding: 30px;
  border-radius: 15px;
  border: 2px solid #fce4ec;
  margin-top: 50px;
}

.oferta-company-info h3 {
  color: #f06292;
  font-size: 24px;
  margin-bottom: 20px;
  font-family: "Playfair Display", serif;
}

.oferta-company-info p {
  margin-bottom: 10px;
  font-size: 16px;
}

.back-to-home {
  display: inline-block;
  margin-top: 50px;
  padding: 16px 40px;
  background: linear-gradient(135deg, #f8bbd0, #f06292);
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(240, 98, 146, 0.4);
}

.back-to-home:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(240, 98, 146, 0.5);
}
