/* Pedido Pago Landing Page Styles */

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

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: #34423d;
  background-color: #ffffff;
}

.container {
  margin: 0 auto;
  padding: 0 32px;
  max-width: 1500px;
}

/* Header Styles */
.header {
  padding: 16px 96px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background-color 1s ease-in-out;
}

.logo {
  width: 238px;
  height: 32px;
}

.nav-link-disabled {
    display: none;

    @media (max-width: 1000px) {
        display: inherit;
    }
}

.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;
}

.nav-menu-container {
  display: flex;
  align-items: center;
  gap: 40px;
}

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

.nav-menu-links {
  gap: 40px !important;
}

.nav-cta-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
}

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

.contact-sign-in {
    z-index: 10;
}

.sign-in {
  display: flex;
  align-items: center;
  gap: 8px;
}

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

.external-contact {
  background-color: #ffffff;
  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: #fff;
  transition: all 0.3s ease;
}

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

/* Hero Section */
.hero {
  background: linear-gradient(0deg, #28454a 0%, #071b23 100%);
  position: relative;
  overflow: hidden;
  min-height: 80vh;
  max-height: 1200px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;

  position: relative;
  z-index: 5;
}

.hero h1 {
  font-size: 52px;
  font-weight: 600;
  line-height: 64px;
  color: #ffffff;
  margin-bottom: 14px;
  padding: 0 32px;
}

.hero p {
  font-size: 20px;
  font-weight: 400;
  line-height: 26px;
  max-width: 1500px;
  color: #ffffff;
  margin-bottom: 54px;
  padding: 0 32px;
}

.hero-bg {
  position: absolute;
  right: 0;
  width: 58%;
  height: auto;
  z-index: 1;
}

.scrolling-text,
.scrolling-text-2 {
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
}

.scrolling-text {
  width: 100%;
  position: absolute;
  margin-top: 58px;
  bottom: 120px;
}

.scrolling-text-2 {
  bottom: 70px;

  span {
    font-size: 52px !important;
    color: #ffffff !important;
    opacity: 0.5 !important;
  }
}

.scrolling-content {
  display: inline-block;
  animation: scroll 60s linear infinite;
}

.scrolling-text-2 .scrolling-content {
  animation: scroll-reverse 60s linear infinite;
}

.scrolling-content span {
  font-size: 42px;
  color: rgba(255, 255, 255, 0.12);
  width: 100%;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes scroll-reverse {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

/* Features Section */
.features {
  background-color: #ffffff;
  padding: 96px 0;
}

.features-content {
  text-align: center;
  margin-bottom: 50px;
}

.features h2 {
  font-size: 34px;
  font-weight: 500;
  line-height: 42px;
  color: #34423d;
  margin-bottom: 4px;
}

.features p {
  font-size: 20px;
  font-weight: 400;
  line-height: 31px;
  color: #587169;
}

.features-grid {
  display: flex;
  gap: 40px;

  @media (max-width: 1000px) {
    flex-direction: column;
  }
}

.feature-card {
  background-color: #ffffff;
  padding: 30px 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-bottom: 2px solid #83e7c5;
  gap: 30px;
}

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

.feature-content h3 {
  font-size: 18px;
  font-weight: 600;
  line-height: 27px;
  color: #34423d;
  margin-bottom: 2px;
}

.feature-content p {
  font-size: 18px;
  font-weight: 400;
  line-height: 22px;
  color: #587169;
}

.feature-line {
  width: 100%;
  height: 2px;
  background-color: #83e7c5;
}

/* AI Section */
.ai-section {
  background-color: #ffffff;
  padding: 0;
  position: relative;
  display: flex;
  justify-content: center;
}

.ai-container {
  width: 100%;
  max-width: 1500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 32px;
}

.ai-div {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ai-content {
  align-self: flex-start;
}

.ai-content h2 {
  font-size: 34px;
  font-weight: 500;
  line-height: 42px;
  color: #34423d;
  margin-bottom: 6px;
}

.ai-content > p {
  font-size: 20px;
  font-weight: 400;
  line-height: 26px;
  color: #587169;
  margin-bottom: 54px;
}

.ai-features {
  display: flex;
  flex-direction: column;
  align-self: flex-start;
  gap: 28px;
}

.ai-feature {
  display: flex;
  align-items: center;
  gap: 24px;
}

.ai-icon {
  width: 56px;
  height: 56px;
  background-color: #ebfff5;
  border-radius: 4px;
  padding: 12px;
  flex-shrink: 0;
}

.ai-feature-content h4 {
  font-size: 18px;
  font-weight: 500;
  line-height: 27px;
  color: #34423d;
  margin-bottom: 2px;
}

.ai-feature-content p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #587169;
}

.ai-image {
  position: relative;
  min-width: 500px;
}

.desktop-mockup {
  width: 100%;
  max-width: 934px;
  padding: 6px;
}

.desktop-screen {
  max-width: 1024px;
}

.desktop-content {
  width: 100%;
  border-radius: 16px;
}

/* Mobile Section */
.mobile-section {
  background-color: #ffffff;
  padding: 74px 0;
  position: relative;
  display: flex;
  justify-content: center;
}

.mobile-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 96px;
  max-width: 1500px;
  padding: 0 32px;
}

.mobile-mockup {
  flex: 1;
  max-width: 588px;
  position: relative;
}

.mobile-frame {
  width: 100%;
  border-radius: 50px;
}

.mobile-content {
  flex: 1;
}

.mobile-content h2 {
  font-size: 34px;
  font-weight: 500;
  line-height: 42px;
  color: #34423d;
  margin-bottom: 6px;
}

.mobile-content > p {
  font-size: 20px;
  font-weight: 400;
  line-height: 26px;
  color: #587169;
  margin-bottom: 54px;
}

/* Ecosystem Section */
.ecosystem-section {
  background-color: #ffffff;
  padding: 64px 0 116px 0;
  position: relative;
  display: flex;
  justify-content: center;
}

.ecosystem-container {
  width: 100%;
  max-width: 1500px;
  display: flex;
  align-items: flex-start;
  gap: 96px;
  padding: 0 32px;
}



.ecosystem-content h2 {
  font-size: 34px;
  font-weight: 500;
  line-height: 42px;
  color: #34423d;
  margin-bottom: 6px;
}

.ecosystem-content > p {
  font-size: 20px;
  font-weight: 400;
  line-height: 26px;
  color: #587169;
  margin-bottom: 54px;
  width: 100%;
}

.ecosystem-mockups {
  position: relative;
}

/* Results Section */
.results-section {
  background-color: #f8f5f2;
  padding: 96px 0;
}

.results-content {
  text-align: center;
  margin-bottom: 50px;
}

.results-content h2 {
  font-size: 34px;
  font-weight: 500;
  line-height: 42px;
  color: #34423d;
  margin-bottom: 4px;
}

.results-content p {
  font-size: 20px;
  font-weight: 400;
  line-height: 31px;
  color: #587169;
}

.results-demo {
  text-align: center;
  margin-bottom: 50px;
}

.demo-mockup {
  max-width: 1236px;
  margin: 0 auto;

  border-radius: 28px 28px 4px 4px;

  /* padding: 6px; */
}

.results-grid {
  display: grid;
  gap: 40px;
  margin: 0 auto;

  max-width: 1496px;

  grid-template-columns: repeat(4, 1fr);
}

.result-card {
  background-color: #ffffff;
  border: 1px solid #f6f7f8;
  border-radius: 8px;
  padding: 22px 24px;
  box-shadow: 0px 4px 6px rgba(168, 166, 164, 0.05);
}

.result-icon {
  width: 32px;
  height: 32px;
  margin-bottom: 24px;
}

.result-card p {
  font-size: 18px;
  font-weight: 400;
  line-height: 22px;
  color: #587169;
}

/* Communication Section */
.communication-section {
  display: flex;
  align-items: center;
  justify-content: center;

  background-color: #ffffff;
  display: flex;
  justify-content: center;

  max-width: 1496px;
  margin: 0 auto;

  padding-block: 96px;
}

.communication-section .container {
  width: 100%;
  margin: 0;
}

.communication-header {
  text-align: left;
  margin-bottom: 32px;
}

.communication-header h2 {
  font-size: 34px;
  font-weight: 500;
  line-height: 42px;
  color: #34423d;
  margin-bottom: 8px;
}

.communication-header p {
  font-size: 20px;
  font-weight: 400;
  line-height: 26px;
  color: #587169;
  margin-bottom: 32px;
}

.tab-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 6px;
}

.tab-button {
  background-color: transparent;
  color: #587169;
  border: 2px solid #cad6d1;
  padding: 12px 24px;
  border-radius: 360px;
  font-size: 16px;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.3s ease;
}

.tab-button.active {
  background-color: #bff5e3;
  color: #18a373;
  border: none;
  font-weight: 600;
}

.tab-button:hover {
  transform: translateY(-1px);
}

.communication-content {
  display: flex;
  align-items: center;
  height: 556px;
}

.whatsapp-coexist {
  display: flex;
  align-items: center;
  height: 556px;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: flex; /* ou grid, ou o display que você usa para elas */
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

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

.feature-icon-wrapper {
  width: 48px;
  height: 48px;
  background-color: #ebfff5;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon-small {
  width: 24px;
  height: 24px;
}

.feature-text h4 {
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  color: #34423d;
  margin-bottom: 4px;
}

.feature-text p {
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  color: #587169;
}

.communication-mockup {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.celular-mockup {
  position: relative;
  max-width: 400px;
  width: 100%;
}

.celular-mockup .laptop-screen {
  width: 100%;
  height: auto;
  transform: scale(1.2);
}

.laptop-mockup {
  position: relative;
}

.laptop-mockup .laptop-screen {
  max-width: 600px;
  width: 100%;
  height: auto;
  transform: scale(1.1);
}

/* Global Section */
.global-section {
  background-color: #ffffff;
}

.global-content {
  display: flex;
  gap: 16px;
  padding-inline: 32px;
  padding-bottom: 96px;
}

.global-background {
  position: relative;
  flex: 1 1 0;
  width: 100;
  max-height: 724px;

  display:flex;
  justify-content: center;
  align-items: flex-end; 

  gap: 40px;
  /* flex: 1;
  display: flex;
  */
}

.global-background .global-item{
  width: 272px;
  height: 272px;
  z-index:1;
}

.global-background .global-item.second{
  align-self:flex-start;
}

.world-background {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-height: 900px;
  pointer-events:none;
}

.global-text {
  background: #fff;
  z-index:1;
  flex: 1 1 0;
  width: 0;
  box-shadow: -3px 1px 94px 80px rgba(255,255,255,1);
}

.global-text .content {
  max-width: 750px;
}

.global-text h2 {
  font-size: 34px;
  font-weight: 500;
  line-height: 42px;
  color: #34423d;
  margin-bottom: 32px;
}

.country-flags {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
}

.flag-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.flag-icon {
  width: 32px;
  height: 32px;
  border-radius: 12px;
}

.flag-text {
  font-size: 16px;
  font-weight: 600;
  color: #34423d;
}

.coming-soon {
  font-size: 16px;
  font-weight: 600;
  color: #587169;
  margin-left: 8px;
}

.global-features {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 48px;
}

.global-feature {
  display: flex;
  align-items: center;
  gap: 16px;
}

.global-stats {
  display: flex;
  gap: 16px;
}

.stat-item {
  background:#F8FAF9;
  border: 1px solid #EAEFED;
  padding: 12px;
  border-radius: 8px;
}

.stat-label {
  font-size: 14px;
  font-weight: 500;
  color: #34423D;
  margin-bottom: 4px;
}

.stat-value {
  font-size: 12px;
  font-weight: 400;
  color: #587169;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(0deg, #28454a 0%, #071b23 100%);
  border-radius: 16px;
  margin: 56px 32px;
  padding: 56px;
  position: relative;
  overflow: hidden;
}

.cta-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1500px;
  margin: 0 auto;

  @media (max-width: 1024px) {
    gap: 32px;
    max-width: 600px;
  }

}

.cta-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 96px;
  width: 100%;

}

.cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-self: flex-start;

  @media (max-width: 600px) {

    button {
      font-size: 12px;

    }
  }
  
}

.cta-text {
  flex: 1;
}

.cta-text h2 {
  font-size: 34px;
  font-weight: 500;
  line-height: 42px;
  color: #ffffff;
  margin-bottom: 0;
}

.cta-text p {
  font-size: 20px;
  font-weight: 400;
  line-height: 26px;
  color: #d5dadf;
}

.cta-tab {
  background-color: #ffffff;
  color: #587169;
  border: none;
  padding: 12px 24px;
  border-radius: 360px;

  &:hover {
    background-color: #f8f9fa;
    cursor: pointer;
  }

  &.active {
    background-color: #bff5e3;
    color: #18a373;
    border: none;
    font-weight: 600;
  }
}

.cta-content {
  display: none;

}

.cta-content.active {
  display: flex;
}



.cta-form {
  flex: 1;
  background-color: #ffffff;
  border-radius: 8px;
  padding: 38px;
  box-shadow: 0px 16px 24px rgba(34, 41, 38, 0.12);
}


.cta-form-2 .cta-content {
  
  flex-direction: row-reverse;
}

.form-group {
  margin-bottom: 30px;
}

.form-input {
  width: 100%;
  padding: 12px;
  border: none;
  border-bottom: 2px solid #eaefed;
  font-size: 16px;
  font-weight: 500;
  color: #587169;
  background: transparent;
}

.form-input:focus {
  outline: none;
  border-bottom-color: #1dd195;
}

.form-input::placeholder {
  color: #587169;
}

.form-button {
  width: 100%;
  background-color: #1dd195;
  color: #ffffff;
  padding: 14px 34px;
  border-radius: 8px;
  border: none;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.form-button:hover {
  background-color: #16a34a;
}

.cta-bg {
  position: absolute;
  left: 96px;
  top: -132px;
  width: 976px;
  height: 976px;
  z-index: 0;
  pointer-events:none;
}

/* Portfolio Section */
.portfolio-section {
  background-color: #f8f5f2;
  padding: 96px 0;
}


.portfolio-header {
  margin-bottom: 64px;
}

.portfolio-header h2 {
  font-size: 34px;
  font-weight: 500;
  line-height: 42px;
  color: #34423d;
  margin-bottom: 16px;
}

.portfolio-header p {
  font-size: 20px;
  font-weight: 400;
  line-height: 26px;
  color: #587169;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.product-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 40px 32px;
  text-align: left;
}

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

.logo-icon {
  align-items: center;

  justify-content: center;
  width: 120px;
  height: 60px;
  border-radius: 12px;
}


.logo-heart {
  font-size: 20px;
  margin-right: 8px;
}

.logo-text {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

.product-card h3 {
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  color: #34423d;
  margin-bottom: 12px;
}

.product-card p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #587169;
}

/* Footer Section */
.footer {
  background-color: #f8f5f2;
  padding: 0 96px 40px;
}

.footer-content {
  background: radial-gradient(37.85% 50% at 50% 100%, #28454a 0%, #071b23 100%);

  border-radius: 16px;
  padding: 56px 64px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 16px;
  align-items: start;
}

.footer-brand {
  flex: 1;
}

.footer-logo {
  max-width: 140px;
  height: 32px;
  margin-bottom: 24px;
}

.footer-tagline {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  color: #ffffff;
}

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

.footer-column h4 {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  color: var(--neutral-neutral-5, #709085);

  margin-bottom: 16px;
}

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

.footer-column a {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: #1dd195;
}

.footer-social h4 {
  font-size: 14px;
  font-weight: 600;
  line-height: 24px;
  color: #709085;

  margin-bottom: 16px;
}

.social-icons {
  display: grid;
  grid-auto-flow: column;
  gap: 8px;
}

.social-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--neutral-neutral-5, #709085);
  border-radius: 100%;
  transition: transform 0.3s ease;
}

.social-icon:hover {
  transform: translateY(-2px);
}

.social-icon img {
  width: 24px;
  height: 24px;
}

@media (max-width: 1300px){
  .global-item{
    width: 230px !important;
    height: 230px !important;
  }
}

@media (max-width: 1200px){
  .global-item{
    width: 200px !important;
    height: 200px !important;
  }

  .social-icons {
    align-items: center;
    justify-content: center;
    grid-template-rows: 1fr 1fr;
  }
}

/* Responsive Design */
@media (min-width: 1025px) {
  .features-grid {
    grid-template-columns: repeat(5, 1fr);
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {

  .scrolling-text {
    bottom: 85px;

    span {
      font-size: 20px !important;
    }
  }

  .scrolling-text-2 {
    bottom: 50px;

    span {
      font-size: 32px !important;
    }
  }

  .header-nav {
    padding: 20px 16px;
  }

  .nav-left {
    gap: 20px;
  }

  .logo {
    width: 180px;
    height: 24px;
  }

  .nav-right {
    gap: 16px;
  }

  .hero {
    min-height: 90vh;
    padding: 80px 16px 40px;
  }

  .hero h1 {
    font-size: 32px;
    line-height: 40px;
    padding: 0 32px;
  }

  .hero p {
    font-size: 16px;
    line-height: 22px;
    padding: 0 32px;
  }

  .hero-bg {
    width: 100%;
    max-width: 400px;
    left: 50%;
    transform: translateX(-50%);
  }

  .scrolling-content span {
    font-size: 24px;
  }

  .features-grid {
    padding: 0 16px;
  }

  .ai-section {
    background-color: #ffffff;
    padding: 0;
    position: relative;
  }




  .ai-div {
    display: flex;
  }

  .ai-image {
    display: none;
    margin-left: 0;
    padding: 0 16px;
  }

  .mobile-container {
    padding: 0 32px;
    gap: 40px;
  }

  .ecosystem-container {
    gap: 40px;
    padding: 0 32px;
  }

  .mobile-mockup {
    display: none;
  }

  .ecosystem-mockups {
    display: none;
  }

  .ecosystem-content > p {
    width: 100%;
    
  }

  .ecosystem-mockups {
    padding-right: 16px;
  }

  .results-grid {
    padding: 0 16px;
    grid-template-columns: 1fr;
  }


  .communication-section {
    padding-bottom: 0;
  }

  .laptop-mockup .laptop-screen {
    transform: scale(1);
  }

  .celular-mockup .laptop-screen{
    transform: scale(1);
  }

  .communication-header {
    padding: 0 16px;
    margin-bottom: 32px;
  }

  .communication-content {
    flex-direction: column;
    padding: 0 16px;
    gap: 40px;
    height:auto;
  }

  .communication-features {
    max-width: 100%;
  }

  .whatsapp-coexist {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 16px;
    gap: 40px;
    height:auto;
  }

  .feature-list {
    gap: 24px;
  }

  .feature-item {
    gap: 12px;
  }

  .feature-icon-wrapper {
    width: 40px;
    height: 40px;
  }

  .feature-icon-small {
    width: 20px;
    height: 20px;
  }

  .tab-buttons {
    flex-direction: column;
    gap: 8px;
  }

  .tab-button {
    width: 100%;
    text-align: center;
  }

  .global-section {
    display: none;
  }

  .global-content {
    flex-direction: column;
    gap: 40px;
  }

  .global-features {
    gap: 24px;
  }

  .global-feature {
    gap: 12px;
  }

  .global-stats {
    gap: 12px;
  }

 
  
  .cta-form {
    width: 100%;
  }

  .cta-section {
    margin: 40px 32px;
    padding: 40px 24px;
  }

  .cta-text {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .cta-content {
    flex-direction: column;
    gap: 40px;
  }

  .cta-bg {
    display: none;
  }

  .portfolio-content {
    padding: 0 16px;
  }

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

  .product-card {
    padding: 32px 24px;
  }

  .logo-icon {
    width: 100px;
    height: 50px;
  }

  .logo-text {
    font-size: 12px;
  }

  .footer {
    padding: 0 16px 40px;
  }

  .footer-content {
    padding: 32px 24px;
  }

  .footer-grid {
    flex-direction: column;
    gap: 32px;
  }

  .footer-links {
    flex-direction: column;
    gap: 24px;
  }
}


@media (max-width: 1000px) {
  .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;
}

@media (max-width: 650px) {
  .scrolling-text {
    bottom: 60px;

    span {
      font-size: 16px !important;
    }
  }

  .scrolling-text-2 {
    bottom: 30px;

    span {
      font-size: 24px !important;
    }
  }
}

@media (max-width: 450px) {
  .scrolling-text {
    bottom: 25px;
  }

  .scrolling-text-2 {
    bottom: 10px;  

    span  {
    font-size: 18px !important;
    }
  }
}


