﻿/* Hero Section Styles */
.hero-section {
  position: relative;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 10;
}

.hero-image {
  position: relative;
}

.hero-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
}

.hero-corner {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
}

.hero-guarantee {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 1.5rem;
}

.hero-stat-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  padding: 1rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(16, 185, 129, 0.1);
  text-align: center;
}
/* Core Advantages Section Styles */
.core-advantages {
  margin-top: 6rem;
}

.core-advantages-title {
  text-align: center;
  margin-bottom: 3rem;
}

.core-advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.core-advantage-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  padding: 1.25rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(16, 185, 129, 0.1);
  text-align: center;
  transition: all 0.3s ease;
}

.core-advantage-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  border-color: rgba(16, 185, 129, 0.2);
}

.core-advantage-icon {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(to bottom right, #10B981, #059669);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  transition: transform 0.3s ease;
}

.core-advantage-card:hover .core-advantage-icon {
  transform: scale(1.1);
}

.core-advantage-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1F2937;
  margin-bottom: 0.5rem;
}

.core-advantage-description {
  font-size: 0.875rem;
  color: #4B5563;
}
/* Platforms Section Styles */
.platforms-section {
  padding: 2.5rem 0;
  background: linear-gradient(to bottom, white, rgba(241, 245, 249, 0.3), white);
  position: relative;
  overflow: hidden;
}

.platforms-background {
  position: absolute;
  inset: 0;
  opacity: 0.015;
}

.platforms-content {
  position: relative;
  z-index: 10;
}

.platforms-title {
  text-align: center;
  margin-bottom: 2rem;
}

.platforms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}

.platform-card {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(8px);
  padding: 1rem;
  border-radius: 0.75rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(241, 245, 249, 0.6);
  transition: all 0.5s ease;
}

.platform-card:hover {
  box-shadow: 0 8px 30px rgba(16, 185, 129, 0.1);
  border-color: rgba(16, 185, 129, 0.2);
  transform: translateY(-4px);
}

.platform-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.625rem;
}

.platform-logo {
  height: 2.25rem;
}

.platform-badge {
  background: rgba(16, 185, 129, 0.1);
  color: #10B981;
  font-size: 0.75rem;
  padding: 0.125rem 0.5rem;
  border-radius: 9999px;
}

.platform-name {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.375rem;
}

.platform-description {
  font-size: 0.75rem;
  color: #4B5563;
  line-height: 1.5;
  margin-bottom: 0.625rem;
}

.platform-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.platform-price {
  font-size: 0.875rem;
  font-weight: 700;
  color: #10B981;
}

.platform-link {
  font-size: 0.75rem;
  font-weight: 500;
  color: #10B981;
}

.platform-link:hover {
  text-decoration: underline;
}
/* Cases Section Styles */
.cases-section {
  padding: 1.5rem 0;
  background: white;
  position: relative;
  overflow: hidden;
}

.cases-background {
  position: absolute;
  inset: 0;
  opacity: 0.012;
}

.cases-content {
  position: relative;
  z-index: 10;
}

.cases-title {
  text-align: center;
  margin-bottom: 1.25rem;
}

.main-case {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(8px);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(241, 245, 249, 0.8);
  transition: all 0.5s ease;
  margin-bottom: 1.5rem;
}

.main-case:hover {
  box-shadow: 0 12px 50px rgba(16, 185, 129, 0.12);
}

.main-case-content {
  padding: 1.25rem 1.5rem;
}

.main-case-tag {
  display: inline-block;
  background: rgba(16, 185, 129, 0.1);
  color: #10B981;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.25rem 0.875rem;
  border-radius: 9999px;
  margin-bottom: 0.75rem;
}

.main-case-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.main-case-description {
  font-size: 0.875rem;
  color: #4B5563;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.main-case-features {
  margin-bottom: 1rem;
}

.main-case-feature {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}

.main-case-feature-dot {
  width: 0.375rem;
  height: 0.375rem;
  background: #10B981;
  border-radius: 50%;
  margin-right: 0.625rem;
}

.main-case-feature-text {
  font-size: 0.875rem;
}

.main-case-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.main-case-stat {
  text-align: center;
}

.main-case-stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: #10B981;
  margin-bottom: 0.25rem;
}

.main-case-stat-label {
  font-size: 0.75rem;
  color: #6B7280;
}

.main-case-image {
  background: #F3F4F6;
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.25rem;
}

.case-card {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(8px);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(241, 245, 249, 0.7);
  transition: all 0.5s ease;
}

.case-card:hover {
  box-shadow: 0 10px 40px rgba(16, 185, 129, 0.12);
  border-color: rgba(16, 185, 129, 0.2);
  transform: translateY(-8px);
}

.case-card-image {
  height: 8rem;
  overflow: hidden;
  position: relative;
}

.case-card-image img {
  transition: transform 0.5s ease;
}

.case-card:hover .case-card-image img {
  transform: scale(1.05);
}

.case-card-content {
  padding: 1rem;
}

.case-card-tag {
  display: inline-block;
  background: rgba(16, 185, 129, 0.1);
  color: #10B981;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  margin-bottom: 0.75rem;
}

.case-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.case-card-description {
  font-size: 0.75rem;
  color: #4B5563;
  line-height: 1.5;
  margin-bottom: 0.625rem;
}

.case-card-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: #10B981;
  display: inline-flex;
  align-items: center;
}

.case-card-link:hover {
  text-decoration: underline;
}
/* Partner Section Styles */
.partner-section {
  padding: 2.5rem 0;
  position: relative;
  overflow: hidden;
}

.partner-background {
  position: absolute;
  inset: 0;
  opacity: 0.015;
}

.partner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(16, 185, 129, 0.03), rgba(16, 185, 129, 0.05), rgba(16, 185, 129, 0.03));
}

.partner-content {
  position: relative;
  z-index: 10;
}

.partner-title {
  text-align: center;
  margin-bottom: 2rem;
}

.partner-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.partner-card {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(8px);
  border-radius: 1rem;
  padding: 1.5rem;
  border: 2px solid rgba(16, 185, 129, 0.1);
  transition: all 0.5s ease;
}

.partner-card:hover {
  border-color: rgba(16, 185, 129, 0.3);
  box-shadow: 0 8px 30px rgba(16, 185, 129, 0.12);
  transform: translateY(-4px);
}

.partner-card-icon {
  width: 4rem;
  height: 4rem;
  background: linear-gradient(to bottom right, rgba(16, 185, 129, 0.2), rgba(16, 185, 129, 0.2));
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.partner-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.partner-card-description {
  font-size: 0.875rem;
  color: #4B5563;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.partner-card-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.partner-card-feature {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  color: #4B5563;
}

.partner-card-feature i {
  color: #10B981;
  margin-right: 0.5rem;
  margin-top: 0.25rem;
}

.partner-advantages {
  background: white;
  border-radius: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.partner-advantages-content {
  padding: 1.5rem 2rem;
}

.partner-advantages-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.partner-advantages-description {
  font-size: 0.875rem;
  color: #4B5563;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.partner-advantage-items {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.partner-advantage-item {
  display: flex;
  align-items: flex-start;
}

.partner-advantage-icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.partner-advantage-content {
  margin-left: 0.875rem;
}

.partner-advantage-title {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.partner-advantage-description {
  font-size: 0.75rem;
  color: #4B5563;
  line-height: 1.5;
  margin: 0;
}

.partner-cta {
  display: inline-block;
  background: #10B981;
  color: white;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.625rem 1.5rem;
  border-radius: 0.75rem;
  transition: all 0.3s ease;
}

.partner-cta:hover {
  background: #059669;
  box-shadow: 0 4px 6px -1px rgba(16, 185, 129, 0.4);
}

.partner-advantages-image {
  background: #F3F4F6;
}
/* Consult Section Styles */
.consult-section {
  padding: 2.5rem 0;
  background: white;
  position: relative;
  overflow: hidden;
}

.consult-background {
  position: absolute;
  inset: 0;
  opacity: 0.012;
}

.consult-content {
  position: relative;
  z-index: 10;
}

.consult-title {
  text-align: center;
  margin-bottom: 3rem;
}

.consult-container {
  background: rgba(16, 185, 129, 0.1);
  border-radius: 1.5rem;
  padding: 2rem 3rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.consult-methods {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.consult-method {
  background: white;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  text-align: center;
}

.consult-method-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.consult-method-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.consult-method-description {
  font-size: 0.875rem;
  color: #4B5563;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.consult-method-contact {
  font-size: 1.25rem;
  font-weight: 700;
  color: #10B981;
  margin-bottom: 0.75rem;
}

.consult-method-hours {
  font-size: 0.75rem;
  color: #6B7280;
}

.consult-method-qr {
  width: 10rem;
  height: 10rem;
  background: #F3F4F6;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
}

.consult-method-note {
  font-size: 0.75rem;
  color: #6B7280;
}

.consult-whatsapp-btn {
  display: inline-block;
  background: #25D366;
  color: white;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  transition: all 0.3s ease;
}

.consult-whatsapp-btn:hover {
  background: #1DA851;
}

.consult-faq {
  margin-top: 4rem;
}

.consult-faq-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: center;
}

.consult-faq-items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.consult-faq-item {
  background: white;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

.consult-faq-question {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}

.consult-faq-question img {
  margin-right: 0.5rem;
}

.consult-faq-answer {
  font-size: 0.875rem;
  color: #4B5563;
  line-height: 1.5;
}
/* About Section Styles */
.about-section {
  padding: 2.5rem 0;
  background: #F7F7F7;
}

.about-content {
  max-width: 48rem;
  margin: 0 auto;
}

.about-title {
  text-align: center;
  margin-bottom: 3rem;
}

.about-slogan {
  display: inline-block;
  background: linear-gradient(to right, #10B981, #10B981);
  color: white;
  padding: 1rem 2rem;
  border-radius: 9999px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  margin-bottom: 1.5rem;
}

.about-slogan-text {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
}

.about-description {
  font-size: 1.125rem;
  color: #4B5563;
  line-height: 1.5;
  text-align: center;
}

.about-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 2.5rem;
  align-items: center;
}

.about-professional {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.about-value {
  background: white;
  border-radius: 1.5rem;
  padding: 1.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  border: 1px solid #E5E7EB;
}

.about-value-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #10B981;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
}

.about-value-title i {
  margin-right: 0.75rem;
  font-size: 1.25rem;
}

.about-value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.5rem;
}

.about-value-item {
  display: flex;
  align-items: flex-start;
  background: rgba(16, 185, 129, 0.05);
  border-radius: 1rem;
  padding: 1rem;
}

.about-value-icon {
  width: 3rem;
  height: 3rem;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.about-value-content {
  margin-left: 1rem;
}

.about-value-item-title {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.about-value-item-description {
  font-size: 0.75rem;
  color: #4B5563;
  line-height: 1.5;
}

.about-expertise {
  background: white;
  border-radius: 1.5rem;
  padding: 1.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  border: 1px solid #E5E7EB;
}

.about-expertise-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #10B981;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
}

.about-expertise-title i {
  margin-right: 0.75rem;
  font-size: 1.25rem;
}

.about-expertise-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.about-expertise-item {
  display: flex;
  align-items: flex-start;
  background: #F7F7F7;
  border-radius: 1rem;
  padding: 0.75rem;
}

.about-expertise-item i {
  color: #10B981;
  margin-right: 0.75rem;
  margin-top: 0.25rem;
  font-size: 1.125rem;
  flex-shrink: 0;
}

.about-expertise-item-content {
  flex: 1;
}

.about-expertise-item-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #1F2937;
  margin-right: 0.25rem;
}

.about-expertise-item-description {
  font-size: 0.875rem;
  color: #4B5563;
  line-height: 1.5;
}

.about-expertise-item-link {
  color: #10B981;
  font-weight: 500;
  text-decoration: none;
}

.about-expertise-item-link:hover {
  text-decoration: underline;
}

.about-image {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-image-main {
  background: white;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  position: relative;
}

.about-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.3));
}

.about-image-stats {
  background: white;
  border-radius: 1.5rem;
  padding: 1.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  text-align: center;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.about-stat {
  text-align: center;
}

.about-stat-value {
  font-size: 1.875rem;
  font-weight: 900;
  color: transparent;
  background-clip: text;
  background-image: linear-gradient(to right, #10B981, #10B981);
  margin-bottom: 0.375rem;
}

.about-stat-label {
  font-size: 0.75rem;
  color: #4B5563;
}

.about-offices {
  background: white;
  border-radius: 1.5rem;
  padding: 1.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.about-offices-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-align: center;
}

.about-offices-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 1rem;
}

.about-office-item {
  position: relative;
  overflow: hidden;
  border-radius: 0.75rem;
  height: 6rem;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.about-office-item:hover {
  transform: translateY(-4px);
}

.about-office-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.about-office-item:hover .about-office-image {
  transform: scale(1.05);
}

.about-office-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}

.about-office-content {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  color: white;
}

.about-office-name {
  font-size: 0.875rem;
  font-weight: 700;
}

.about-office-type {
  font-size: 0.75rem;
  opacity: 0.9;
}
