
/* Variáveis CSS */
:root {
    --primary-color: #ff6b35;
    --secondary-color: #1F4D89;
    --accent-color: #ffa726;
    --text-dark: #333;
    --text-light: #666;
    --text-muted: #999;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 4px 20px rgba(0, 0, 0, 0.15);
    --border-radius: 8px;
    --border-radius-large: 16px;
    --container-max-width: 1200px;
    --section-padding: 80px 0;
}


.container_logo {
    margin-left: 10px;
    padding: 5px;
    justify-content: center;
    display: flex;
}



.logo {
    height: 35px;
    width: auto;
   }  

/* Desktop (>=769px) */
@media (min-width: 769px) {
  .logo {
    margin-left: 10.5rem;
  }
}



body {
    font-family: "Inter", sans-serif;
    line-height: 1.6;
    color: var(--text-color);

}



.desktop-menu {
    display: flex;
    gap: 30px;
}

.desktop-menu button {
    margin-right: 10px;
    background: none;
    border: none;
    color: var(--text-dark);
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    padding: 5px 0;
    position: relative;
    transition: color 0.3s ease;
}

.desktop-menu button:hover {
    color: var(--primary-color);
}

.desktop-menu button::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.desktop-menu button:hover::after {
    width: 100%;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Poppins", sans-serif;
    color: var(--secondary-color);
}

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

html {
    scroll-behavior: smooth;
}

/* Remove scrollbar styling */
ion-content::part(scroll) {
    scrollbar-width: none;
    -ms-overflow-style: none;
}
ion-content::part(scroll)::-webkit-scrollbar {
    display: none;
}


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

/* Botões genéricos */
.btn {
    font-weight: 600;
    cursor: pointer;
    border: none;
    text-decoration: none;
}



/* Tamanhos */
.btn--large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}
.btn--large img {
    height: 60px;
}


.toolbar-wrapper {
  position: sticky;
  top: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}



.nav__logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}


.nav__logo-img {
    max-width: 50px;
    height: auto;
}


.menu {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.menu ion-button {
    --color: var(--light-text-color);
    font-weight: 300;
}
.menu ion-button:hover {
    --color: var(--primary-color);
}

/* Seções Gerais */
section {
    padding: 2rem 0;
}

/* Para os cards “Quem Somos” */
.about-us__item {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.about-us__item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}


.section__header {
    text-align: center;
    margin-bottom: 3rem;
}

.section__title {
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 610;
    margin-bottom: 1rem;
}

.section__description {
    color: grey;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;

}


.hero__apps {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero__apps-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(to right, #f6f6f6 50%, transparent 0%);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 50%; /* Começa no meio */
  background: url('img/hero-beach.jpg') center/cover no-repeat;
  opacity: 0.1; /* Aqui você ajusta a transparência da imagem */
  pointer-events: none;
  z-index: 0;
}

.hero > * {
  position: relative;
  z-index: 1;
}



.hero__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.hero__content {
    flex: 1;
    min-width: 300px;
}

.hero__title {
    font-size: clamp(2.5rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero__title-accent {
   color: #F26722;;
}

.hero__description {
    color: grey;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 500px;
    line-height: 1.4;
}

.hero__buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero__stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  margin-bottom: 3rem;
  
}

.hero__stat {
  display: flex;
  flex-direction: column;
  text-align: center;
}

.hero__stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #F26722;
  margin-bottom: 0.25rem;
}


.hero__stat-text {
    font-size: 0.7rem;
    text-transform: uppercase;
    opacity: 0.8;
}

.hero__image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero__overlay-title {
  position: absolute;
  top: -70px;
  font-size: 2.1rem;
  color: #1F4D89;
  z-index: 5;
  font-weight: 610;
 
}



.hero__phone {
    position: relative;
    padding-top: 30px;
    z-index: 2;
    width: 150px;
    height: auto;
}

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

.hero__bg-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 50%;
    opacity: 0.3;
    z-index: 1;
}

.hero__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Como Funciona Section */
.how-it-works {
    background-color: var(--background-light);
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}


.step__icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background-color: #F26722;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step__icon-svg {
    width: 30px;
    height: 30px;
    color: white;
    stroke-width: 2;
}

.step__title {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    font-weight: 610;
}

.step__description {
    font-size: 1rem;
    color: grey;
}


.feature {
  transition: all 0.3s ease;
}
.feature:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

/* Features Section */
.features {
    background-color: #f6f6f6;
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature {
    text-align: center;
    padding: 2rem;
    background-color: var(--gray-light);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.feature__icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background-color: #F26722;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature__icon-svg {
    width: 35px;
    height: 35px;
    color: white;
    stroke-width: 2;
}

.feature__title {
  font-weight: 610;
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
}

.feature__description {
    font-size: 1rem;
    color: grey;
}

/* Screenshots Section */
.screenshots {
    background-color: var(--background-light);
    padding: 4rem 0;
}

.screenshots__carousel {
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
}

.screenshots__track {
    display: flex;
    gap: 1.5rem;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 1rem;
}

.screenshots__track::-webkit-scrollbar {
    height: 8px;
}

.screenshots__track::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
    border-radius: 10px;
}

.screenshots__track::-webkit-scrollbar-track {
    background-color: var(--gray-light);
    border-radius: 10px;
}

.screenshot {
    flex: 0 0 auto;
    width: 200px;
    scroll-snap-align: center;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.screenshot__img {
    width: 100%;
    height: auto;
    display: block;
}

.screenshots__controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.screenshots__btn {
    background-color: var(--primary-color);
    color: var(--light-text-color);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.screenshots__btn:hover {
    background-color: var(--primary-hover-color);
}
.screenshots__btn svg {
    width: 20px;
    height: 20px;
    stroke-width: 2;
}

/* Benefits Section */
.benefits {
    background-color: #ffffff;
}

.benefits__content {
    display: flex;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    
}

.benefits__text {
    flex: 1;
    min-width: 300px;
}

.benefits__title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.benefits__description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.benefits__list {
    display: grid;
    gap: 1rem;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.benefit__icon {
    color: rgb(6, 94, 41);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit__icon svg {
    width: 25px;
    height: 25px;
    color: var(--light-text-color);
    stroke-width: 2;
}

.benefit__text {
    font-size: 1.1rem;
    font-weight: 500;
    color: grey;
}

.benefits__image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.benefits__img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Download Section */
.download {
    background-color: #F26722;
    color: var(--light-text-color);
    text-align: center;
}

.download__title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.download__description {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.download__buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.download__btn img {
    height: 60px;
}

.download__qr {
    margin-top: 2rem;
}


.qr-code img {
    width: 150px;
    height: auto;
    background-color: #ffffff;
    padding: 10px;
    border-radius: 5px;
}

.qr-text {
    color: white;
    margin-top: 0.8rem;
    font-size: 1rem;
    opacity: 0.9;
}

/* Footer */
.footer {
    background-color: var(--background-dark);
    color: var(--light-text-color);
    padding: 3rem 0 1rem;
}

.footer__content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer__section {
    padding: 1rem;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer__logo-img {
    max-width: 40px;
    height: auto;
}

.footer__logo-text {
    font-family: "Poppins", sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
}

.footer__description {
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer__title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.footer__links {
    list-style: none;
}

.footer__links li {
    margin-bottom: 0.5rem;
}

.footer__link {
    color: var(--light-text-color);
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}
.footer__link:hover {
    opacity: 1;
}

.footer__social {
    display: flex;
    gap: 1rem;
}
.footer__social-link {
    color: var(--light-text-color);
    font-size: 1.5rem;
    transition: color 0.3s ease;
}
.footer__social-link:hover {
    color: var(--primary-color);
}
.footer__social-link svg {
    width: 24px;
    height: 24px;
}

.footer__bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer__copyright {
    font-size: 0.8rem;
    opacity: 0.7;
}

/* Responsividade */
@media (max-width: 768px) {
    .hero__container {
        flex-direction: column;
        text-align: center;
    }
    .hero__content,
    .hero__image {
        width: 100%;
    }

    .hero__buttons {
        justify-content: center;
    }
    
    .section__title {
        font-size: 2rem;
    }
    .steps,
    .features__grid,
    .footer__content {
        grid-template-columns: 1fr;
    }
    .benefits__content {
        flex-direction: column;
    }
    .benefits__text,
    .benefits__image {
        width: 100%;
    }
    .screenshots__track {
        justify-content: flex-start;
    }

    .desktop-menu button {
    font-size: 0.9rem;
    right: 10px;
    }

}

/* Ajustes específicos para telas de notebook (entre 769px e 1200px) */
@media (min-width: 769px) and (max-width: 1900px) {
  .hero__stats {
    gap: 3rem; 
  }

  .hero__apps {
    align-items: flex-start;
    text-align: left;
  }

.hero__phone {
  width: 200px;
  margin: 0 auto;
}


  .hero__stat-number {
    font-size: 1.8rem;
  }

  .hero__stat-text {
    font-size: 1.2rem;
    
  }

  .hero__buttons {
    justify-content: center;
    gap: 2rem;
  }

 .hero__content {
    text-align: left;
    margin-left: 0;
    margin-right: auto;
    max-width: 600px;
  }

  .hero__title,
  .hero__description,
  .hero__buttons,
  .hero__stats {
    text-align: left;
    margin-left: 0;
  }

   .hero__title {
    font-weight: 610;
   }

  .hero__image {
    justify-content: center;
  }
}


@media (max-width: 480px) {
    .hero__title {
        font-size: 2rem;
    }
    .hero__buttons,
    .download__buttons {
        flex-direction: column;
        align-items: center;
        
    }
    .btn--large {
        width: 100%;
    }
    .download__btn img {
        height: 50px;
    }
}


/* Quem Somos Section */
.about-us {
    background-color: #ffffff;
}

.about-us__content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.about-us__item {
  padding: 2rem;
  border-radius: 10px;
  background-color: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease;
}

.about-us__item:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}


.about-us__subtitle {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 580;
    color: #F26722;;
    
}


.about-us__text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 1rem;
}
.about-us__text:last-child {
    margin-bottom: 0;
}




/* ---- animação do X ---- */
#menu-toggle:checked + .mobile-menu-btn span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
#menu-toggle:checked + .mobile-menu-btn span:nth-child(2) {
  opacity: 0;
}
#menu-toggle:checked + .mobile-menu-btn span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

