/* CSS Variables - Figma Color Palette */
:root {
  /* Neutral Colors */
  --neutral-0: #ffffff;
  --neutral-1: #f6f7f8;
  --neutral-2: #e5e7eb;
  --neutral-3: #d5dadf;
  --neutral-4: #9ca3af;
  --neutral-5: #4b5563;
  --neutral-6: #4b5563;
  --neutral-7: #1f2937;
  --neutral-8: #111827;
  --neutral-9: #000000;
  --neutral-neutral-500: #4b5563;
  --neutral-neutral-600: #1f2937;

  /* Approve Colors */
  --approve-50: #f0fdfa;
  --approve-100: #ccfbf1;
  --approve-200: #2dd4bf;

  /* Typography */
  --font-family: "Poppins", sans-serif;
}

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

body {
  font-family: var(--font-family);
  line-height: 1.6;
  color: var(--neutral-7);
  background-color: var(--neutral-0);
}

.container {
  margin: 0 auto;
  padding: 0 24px;
}

/* Header Styles */
.header {
  background: #071a25;
  padding: 16px 96px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

@media (max-width: 1200px) {
  .header {
    padding: 16px 0;
  }
}

.nav-container {
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
}

.brand-logo {
  height: 40px;
  width: auto;
}

.logo-sou,
.logo-prescritor {
  height: 24px;
  width: auto;
  filter: brightness(0) invert(1);
}

.logo-icon {
  height: 32px;
  width: auto;
  filter: brightness(0) invert(1);
}

.nav-menu {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  background-color: #071a25;
}

.nav-link {
  color: var(--neutral-0);
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  font-family: var(--font-family);
  transition: all 0.3s ease;
}

.nav-link:hover {
  opacity: 0.8;
}

.external-contact {
  background-color: var(--neutral-0);
  color: #2c3e50;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 500;
}

.external-contact:hover {
  background-color: #f8f9fa;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.mobile-menu-toggle span {
  width: 24px;
  height: 3px;
  background-color: var(--neutral-0);
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  background: #2c3e50;
  min-height: 80vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("images/hero_background.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

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

.hero-title {
  color: var(--neutral-0);
  font-size: 48px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 24px;
  font-family: var(--font-family);
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 32px;
  font-family: var(--font-family);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 32px;
}

.cta-button {
  background-color: var(--neutral-0);
  color: #2c3e50;
  font-size: 16px;
  font-weight: 500;
  padding: 16px 32px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-family);
}

.cta-button:hover {
  background-color: #f8f9fa;
  transform: translateY(-2px);
}

/* Section Styles */
.features-section,
.whatsapp-section,
.vision-section,
.ai-section,
.shopping-section,
.portfolio-section {
  padding: 80px 0;
}

.section-title {
  color: var(--neutral-7);
  font-size: 38px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 16px;
  line-height: 47.12px;
  word-wrap: break-word;
}

.section-subtitle {
  color: var(--neutral-6);
  font-size: 20px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 48px;
  line-height: 26.4px;
  max-width: 800px;
}

/* Feature Cards - Prescrição Inteligente */
.features-section {
  display: flex;
  flex-direction: column;
  align-items: center;

  padding-bottom: 0 !important;
}

.features-section .section-subtitle {
  max-width: 1150px;
}

@media (max-width: 768px) {
  .features-section .section-subtitle {
    text-align: justify;
  }
}

.features-grid {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.feature-card {
  padding: 24px;
  background: var(--neutral-0);
  box-shadow: 0px 4px 6px -2px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  border: 1px solid var(--neutral-1);
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
  flex: 1;
  min-width: 180px;
  max-width: 220px;
}

.feature-icon {
  width: 56px;
  height: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.feature-icon .icon {
  width: 32px;
  height: 32px;
}

.feature-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  justify-content: center;
}

.feature-title {
  color: var(--neutral-7);
  font-size: 18px;
  font-weight: 500;
  line-height: 22.32px;
  word-wrap: break-word;
}

/* WhatsApp Coexist Section */
.whatsapp-section {
  background: var(--neutral-0);
  padding: 80px 0;
}

.whatsapp-grid-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  width: 100%;
  padding: 0 80px;
}

@media (max-width: 768px) {
  .whatsapp-grid-container {
    padding: 0 24px;
  }
}

.whatsapp-image-placeholder {
  background: none;
  border-radius: 8px;
  min-height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
}

.whatsapp-phones-img {
  width: 100%;
  height: auto;
  max-width: 500px;
  object-fit: contain;
}

.whatsapp-content-wrapper .section-title {
  text-align: left;
  margin-bottom: 16px;
}

.whatsapp-intro-text {
  color: var(--neutral-5);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 32px;
}

.whatsapp-features-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.whatsapp-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.whatsapp-icon-container {
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.whatsapp-icon {
  width: 24px;
  height: 24px;
  filter: invert(47%) sepia(69%) saturate(959%) hue-rotate(121deg)
    brightness(98%) contrast(86%);
}

.whatsapp-feature-title {
  color: var(--neutral-7);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 4px;
}

.whatsapp-feature-description {
  color: var(--neutral-5);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .whatsapp-grid-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .whatsapp-content-wrapper .section-title {
    text-align: center;
  }
}

/* Vision 360° Section */
.vision-section {
  background: var(--neutral-1);
  padding: 80px 0;
}

.vision-grid-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  width: 100%;
  padding: 0 80px;
}

@media (max-width: 768px) {
  .vision-grid-container {
    padding: 0 24px;
  }
}

.vision-content-wrapper .section-title {
  text-align: left;
  margin-bottom: 16px;
}

.vision-intro-text {
  color: var(--neutral-5);
  font-size: 20px;
  font-weight: 400;
  line-height: 26.4px;
  margin-bottom: 32px;
}

.vision-features-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-bottom: 60px;
}

.vision-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.vision-icon-container {
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.vision-icon {
  width: 24px;
  height: 24px;
  filter: invert(47%) sepia(69%) saturate(959%) hue-rotate(121deg)
    brightness(98%) contrast(86%);
}

.vision-feature-title {
  color: var(--neutral-neutral-600);
  font-size: 18px;
  font-weight: 500;
  line-height: 22.32px;
  margin-bottom: 4px;
}

.vision-feature-description {
  color: var(--neutral-neutral-500);
  font-size: 16px;
  font-weight: 400;
  line-height: 19.84px;
}

.vision-image-placeholder {
  background: #525864;
  border-radius: 8px;
  min-height: 400px;
}

.vision-image-container {
  background: none;
  border-radius: 8px;
  min-height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.vision-desktop-img {
  width: 100%;
  height: auto;
  max-width: 500px;
  object-fit: contain;
}
@media (max-width: 768px) {
  .vision-grid-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .vision-content-wrapper .section-title {
    text-align: center;
  }
}

/* AI Section */
.ai-section {
  background: var(--neutral-0);
  padding: 80px 0;
}

.ai-grid-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  width: 100%;
  padding: 80px 0;
}

@media (max-width: 768px) {
  .ai-grid-container {
    padding: 0 24px;
  }
}

.ai-image-container {
  background: none;
  border-radius: 8px;
  min-height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
}

.ai-phones-img {
  width: 100%;
  height: auto;
  max-width: 500px;
  object-fit: contain;
}

/* Shopping Section */
.shopping-section {
  background: var(--neutral-1);
  padding: 80px 0;
}

.shopping-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.shopping-section .section-subtitle {
  text-align: center;
  max-width: 1150px;
}

@media (max-width: 768px) {
  .shopping-section .section-subtitle {
    text-align: justify;
  }
}

.shopping-layout {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: flex-end;
}

.shopping-phone-left {
  left: 32px;
}

.shopping-phone-right {
  right: 32px;
}

.shopping-phone-left,
.shopping-phone-right {
  position: absolute;
  transform: translateY(7.5%);
}

.shopping-phone-img {
  max-width: 100%;
  height: auto;
  max-height: 500px;
}

.shopping-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 732px;
  z-index: 3;
}

.shopping-card {
  padding: 24px;
  background: white;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  min-width: 250px;
}

.shopping-icon-container {
  display: flex;
  justify-content: center;
  margin-bottom: 8px;
}

.shopping-icon {
  width: 32px;
  height: 32px;
  filter: invert(47%) sepia(69%) saturate(959%) hue-rotate(121deg)
    brightness(98%) contrast(86%);
}

.shopping-title {
  color: var(--neutral-7);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 8px;
}

.shopping-description {
  color: var(--neutral-5);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}

@media (max-width: 1328px) {
  .shopping-card {
    max-width: 250px;
  }

  .shopping-phone-left {
    left: 16px;
  }

  .shopping-phone-right {
    right: 16px;
  }

  .shopping-phone-left,
  .shopping-phone-right {
    transform: translateY(27.5%);
  }
}

@media (max-width: 768px) {
  .shopping-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .shopping-cards-grid {
    gap: 16px;
  }

  .shopping-phone-left,
  .shopping-phone-right {
    display: none;
  }
}

@media (max-width: 550px) {
  .shopping-cards-grid {
    grid-template-columns: 1fr;
  }
}

/* Portfolio Section */
.portfolio-section {
  background: var(--neutral-0);
  padding: 80px 0;
}

.portfolio-section .container {
  display: flex;
  flex-direction: column;
}

@media (min-width: 1024px) {
  .portfolio-section .container {
    padding-inline: 224px;
  }
}

.portfolio-section .section-title {
  text-align: start;
}

.portfolio-section .section-subtitle {
  text-align: start;
}

.ai-content-wrapper .section-title {
  text-align: left;
  margin-bottom: 16px;
}

.ai-intro-text {
  color: var(--neutral-5);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 32px;
}

.ai-features-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ai-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.ai-icon-container {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--neutral-1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ai-icon {
  width: 24px;
  height: 24px;
  filter: invert(47%) sepia(69%) saturate(959%) hue-rotate(121deg)
    brightness(98%) contrast(86%);
}

.ai-feature-text {
  flex: 1;
}

.ai-feature-title {
  color: var(--neutral-neutral-600);
  font-size: 18px;
  font-weight: 500;
  line-height: 22.32px;
  margin-bottom: 8px;
}

.ai-feature-description {
  color: var(--neutral-5);
  font-size: 16px;
  font-weight: 400;
  line-height: 19.84px;
}

.ai-image-placeholder {
  background: #f0f0f0;
  border-radius: 8px;
  min-height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.placeholder-content {
  text-align: center;
}

.placeholder-text {
  color: #666;
  font-size: 18px;
  font-weight: 500;
}

.ai-phones-img {
  width: 100%;
  height: auto;
  max-width: 500px;
  object-fit: contain;
}

.ai-content-wrapper .section-title {
  text-align: left;
  margin-bottom: 16px;
}

.ai-intro-text {
  color: var(--neutral-6);
  font-size: 20px;
  font-weight: 400;
  line-height: 26.4px;
  margin-bottom: 32px;
}

.ai-features-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ai-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.ai-icon-container {
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.ai-icon {
  width: 24px;
  height: 24px;
  filter: invert(47%) sepia(69%) saturate(959%) hue-rotate(121deg)
    brightness(98%) contrast(86%);
}

.ai-feature-title {
  color: var(--neutral-7);
  font-size: 18px;
  font-weight: 500;
  line-height: 22.32px;
  margin-bottom: 4px;
}

.ai-feature-description {
  color: var(--neutral-neutral-500);
  font-size: 16px;
  font-weight: 400;
  line-height: 19.84px;
}

@media (max-width: 768px) {
  .ai-grid-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .ai-content-wrapper .section-title {
    text-align: center;
  }
}

/* Shopping Cards - */
.shopping-title {
  color: var(--neutral-7);
  font-size: 16px;
  font-weight: 500;
  line-height: 22.32px;
  word-wrap: break-word;
}

.shopping-description {
  color: var(--neutral-5);
  font-size: 16px;
  font-weight: 400;
  line-height: 19.84px;
  word-wrap: break-word;
}

/* Portfolio Section */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 32px;
}

.portfolio-card {
  max-width: 720px;
  height: 100%;
  padding-left: 24px;
  padding-right: 24px;
  padding-top: 40px;
  padding-bottom: 40px;
  overflow: hidden;
  background: var(--neutral-0);
  border-radius: 12px;
  outline: 2px var(--neutral-2) solid;
  outline-offset: -2px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 24px;
  display: inline-flex;
  transition: transform 0.3s ease;
}

.portfolio-card:hover {
  transform: translateY(-4px);
}

.portfolio-logo {
  margin-bottom: 24px;
}

.portfolio-logo-img {
  height: 60px;
  width: auto;
}

.portfolio-title {
  color: var(--neutral-neutral-600);
  width: 100%;
  font-size: 18px;
  font-weight: 500;
  line-height: 22.32px;
  margin-bottom: 12px;
  word-wrap: break-word;
}

.portfolio-description {
  color: var(--neutral-neutral-500);
  width: 100%;
  font-size: 16px;
  font-weight: 400;
  line-height: 19.84px;
  word-wrap: break-word;
  margin-bottom: 24px;
}

.portfolio-button {
  background: var(--approve-200);
  color: var(--neutral-0);
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.portfolio-button:hover {
  background: #26c6b8;
}

/* Contact Section -*/
.contact-section {
  background: var(--neutral-7);
  width: 100%;
  height: 100%;
  padding-left: 212px;
  padding-right: 212px;
  padding-top: 56px;
  padding-bottom: 56px;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  justify-content: flex-start;
  align-items: center;
  gap: 96px;
  display: inline-flex;
}

.contact-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.contact-bg-element {
  position: absolute;
  opacity: 0.2;
}

.contact-bg-7 {
  top: 20%;
  left: 5%;
  width: 200px;
  height: auto;
}

.contact-bg-8 {
  bottom: 20%;
  right: 5%;
  width: 180px;
  height: auto;
}

.contact-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.contact-text {
  text-align: left;
}

.contact-title {
  color: white;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 16px;
  word-wrap: break-word;
}

.contact-subtitle {
  color: #d1d5db;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  word-wrap: break-word;
}

.contact-form-container {
  background: white;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  color: var(--neutral-6);
  font-size: 16px;
  font-weight: 500;
  line-height: 19.84px;
  word-wrap: break-word;
}

.form-input {
  width: 100%;
  padding: 16px;
  border: 1px solid var(--neutral-2);
  border-radius: 8px;
  font-size: 16px;
  font-family: var(--font-family);
  transition: border-color 0.3s ease;
  background-color: var(--neutral-0);
}

.form-input:focus {
  outline: none;
  border-color: var(--approve-200);
  box-shadow: 0 0 0 3px rgba(45, 212, 191, 0.1);
}

.form-submit {
  background-color: var(--neutral-7);
  color: var(--neutral-0);
  font-size: 14px;
  font-weight: 600;
  line-height: 21px;
  padding: 16px 32px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-family);
  word-wrap: break-word;
}

.form-submit:hover {
  background-color: #111827;
  transform: translateY(-2px);
}

/* Footer */
.footer {
  background-color: var(--neutral-0);
  padding: 24px 0;
  border-top: 1px solid var(--neutral-2);

  @media (min-width: 1024px) {
    padding: 24px 224px;
  }
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.footer-logo .logo-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-logo .brand-logo {
  height: 32px;
  width: auto;
  filter: none;
}

.footer-links {
  display: flex;
  gap: 32px;
}

.footer-link {
  color: var(--neutral-6);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  line-height: 21.12px;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--neutral-7);
}

.footer-social {
  display: flex;
  gap: 16px;
}

.social-link {
  color: var(--neutral-5);
  transition: color 0.3s ease;
}

.social-link:hover {
  color: var(--neutral-7);
}

@media (max-width: 950px) {
  .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--neutral-7);
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }

  .mobile-menu-toggle {
    display: flex;
    background: var(--neutral-7);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .section-title {
    font-size: 28px;
  }

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

  .contact-title {
    font-size: 32px;
    text-align: center;
  }

  .contact-subtitle {
    font-size: 18px;
    text-align: center;
  }

  .contact-form-container {
    padding: 24px;
  }

  .footer-content {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .features-grid,
  .benefits-grid,
  .vision-grid,
  .ai-grid,
  .shopping-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .nav-container {
    padding: 0 16px;
  }

  .hero-container {
    padding: 0 16px;
  }

  .hero-title {
    font-size: 28px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .contact-title {
    font-size: 28px;
  }

  .contact-subtitle {
    font-size: 16px;
  }

  .contact-form-container {
    padding: 20px;
  }
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Animation Classes */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

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

/* Button Ripple Effect */
.cta-button,
.form-submit {
  position: relative;
  overflow: hidden;
}

.cta-button::before,
.form-submit::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transition: width 0.6s, height 0.6s;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.cta-button:active::before,
.form-submit:active::before {
  width: 300px;
  height: 300px;
}

.cta-button span,
.form-submit span {
  position: relative;
  z-index: 1;
}

.whatsapp-phones-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}
