@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

@font-face {
  font-family: 'Cocon'; 
  src: url('fonts/CoconRegularFont.woff') format('truetype');
  font-weight: normal;
  font-style: normal;
}

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body{
  max-width: 1600px;
  font-size: 16px;
  margin: 0 auto;
  font-family: 'Roboto', sans-serif;
  overflow-x: hidden;
}
.header-container{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 1rem;
  position: relative;
  z-index: 100;
}

.logo-img{
  width: 20%;
  height: auto;
}
.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.slider-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.slide-img {
  width: 100%;
  height: 100%;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  z-index: 10;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 4rem 0 2rem;
  color: #ffffff;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  height: 100%;
}

.hero-title {
  font-family: 'Cocon', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  margin-bottom: 0.5rem;
}

.hero-subtitle {
  font-family: 'Roboto', sans-serif;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.4;
  color: #ffffff;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  margin-top: 0;
}

/* Form Container */
.form-container {
  position: absolute;
  top: 50%;
  right: 2rem;
  transform: translateY(-50%);
  z-index: 20;
  width: 400px;
}

.form-box {
  background-color: #F1F1F1;
  padding: 2.5rem;
  border-radius: 1rem;
  box-shadow: 0 -2px 2px rgb(255, 0, 0);
}

.form-title {
  font-family: 'Roboto', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 0.5rem;
  text-align: center;
}

.form-subtitle {
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  color: #7A7A7A;
  margin-bottom: 2rem;
  text-align: center;
}

.franchise-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group input {
  padding: 1rem;
  border: 2px solid #ddd;
  border-radius: 0.5rem;
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus {
  outline: none;
  border-color: #FE0000;
}

.form-group input::placeholder {
  color: #999;
}

.btn-franchise {
  background-color: #FE0000;
  color: white;
  padding: 1.2rem 2rem;
  border: none;
  border-radius: 0.5rem;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(254, 0, 0, 0.3);
}

.btn-franchise:hover {
  background-color: #4EB9EC;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(78, 185, 236, 0.4);
}

.form-disclaimer {
  font-family: 'Roboto', sans-serif;
  font-size: 0.8rem;
  color: #666;
  line-height: 1.4;
  text-align: center;
  margin-top: 1rem;
}

/* ===== SEÇÃO POR QUÉ ELEGIR POPPYS ===== */
.por-que-elegir {
  padding: 4rem 0;
  background-color: #f8f8f8;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-title {
  font-family: 'Cocon', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  text-align: center;
  margin-bottom: 3rem;
  text-transform: uppercase;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.image-container {
  position: relative;
}

.section-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.text-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.intro-text,
.highlight-text,
.value-text,
.origin-text {
  font-family: 'Roboto', sans-serif;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
  margin: 0;
}

.highlight-text {
  font-size: 1.2rem;
  font-weight: 500;
}

.origin-text {
  font-style: italic;
  color: #666;
}

.text-content strong {
  font-weight: 700;
}

.vantagens {
  padding: 4rem 0;
  background-color: #F8F8F8;
}

.vantagens-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.vantagem-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 1rem;
  border-radius: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vantagem-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vantagem-icon-img {
  width: 100%;
  height: 100%;
}

.vantagem-text {
  font-family: 'Roboto', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #333;
  margin: 0;
}

/* ===== SEÇÃO MODELOS DE NEGÓCIOS ===== */
.modelos-negocios {
  padding: 4rem 0;
  background-color: white;
}

.modelos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.modelo-card {
  background-color: white;
  border-radius: 1rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0.3rem;
  border: 1px solid #000;
}

.modelo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.modelo-imagem {
  width: 500px;
  height: auto;
  overflow: hidden;
}

.modelo-img {
  width: 100%;
  height: 100%;
}

.modelo-conteudo {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.modelo-titulo {
  font-family: 'Cocon', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #FE0000;
  margin: 0 0 1rem 0;
  text-transform: uppercase;
}

.modelo-descricao {
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  color: #333;
  margin: 0 0 1.5rem 0;
  line-height: 1.4;
}

.modelo-metricas {
  margin-bottom: 1.5rem;
}

.metrica-item {
  display: flex;
  align-items: center;
  margin-bottom: 0.8rem;
  font-family: 'Roboto', sans-serif;
  font-size: 0.9rem;
}

.metrica-icon {
  color: #FE0000;
  font-size: 0.8rem;
  margin-right: 0.5rem;
  width: 12px;
}

.metrica-label {
  font-weight: 600;
  color: #333;
  margin-right: 0.5rem;
}

.metrica-valor {
  color: #666;
}

.btn-modelo {
  width: 100%;
  padding: 1rem 2rem;
  background-color: #FE0000;
  color: white;
  border: none;
  border-radius: 0.5rem;
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-top: auto;
}

.btn-modelo:hover {
  background-color: #d40000;
}

/* ===== SEÇÃO MARCAS ===== */
.marcas-section {
  padding: 4rem 0;
  background-color: #000000;
}

.marcas-content {
  display: flex;
  align-items: center;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.marcas-title h2 {
  font-family: 'Cocon', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin: 0;
  line-height: 1.2;
  text-transform: uppercase;
}

.marcas-carousel {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
}

.carousel-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

.carousel-btn:hover {
  opacity: 0.7;
}

.carousel-btn svg {
  width: 24px;
  height: 24px;
}

.marcas-container {
  flex: 1;
  overflow: hidden;
}

.marcas-track {
  display: flex;
  transition: transform 0.5s ease;
}

.marcas-slide {
  flex: 0 0 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 120px;
}

.marcas-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: filter 0.3s ease;
}

.marcas-image:hover {
  filter: grayscale(0%) brightness(1) invert(0);
}

/* ===== SEÇÃO FAQ ===== */
.faq-section {
  padding: 4rem 0;
  background-color: #f8f8f8;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background-color: white;
  border-radius: 0.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: #f9f9f9;
}

.faq-icon {
  font-size: 1.5rem;
  font-weight: bold;
  color: #FE0000;
  min-width: 24px;
  text-align: center;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  color: #333;
  transform: rotate(45deg);
}

.faq-question h3 {
  font-family: 'Roboto', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  margin: 0;
  line-height: 1.4;
}

.faq-answer {
  display: none;
  padding: 0 1.5rem 1.5rem 1.5rem;
  background-color: white;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-answer p {
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* ===== SEÇÃO POPPYS NOS MÉDIA ===== */
.media-section {
  padding: 4rem 0;
  background-color: white;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.media-card {
  background-color: white;
  border-radius: 0.5rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.media-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.media-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.media-img {
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease;
}

.media-card:hover .media-img {
  transform: scale(1.05);
}

.media-content {
  padding: 1.5rem;
}

.media-headline {
  font-family: 'Roboto', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #333;
  margin: 0 0 1rem 0;
  line-height: 1.4;
}

.media-text {
  font-family: 'Roboto', sans-serif;
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* ===== SEÇÃO CALL-TO-ACTION COM PARALLAX ===== */
.cta-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: #161616;
}

.parallax-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.cta-overlay {
  position: relative;
  z-index: 2;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(rgba(0, 0, 0, 0.858), rgba(0, 0, 0, 0.781));
}

.cta-content {
  text-align: center;
  color: white;
  max-width: 800px;
  padding: 0 2rem;
}

.cta-subtitle {
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  opacity: 0.8;
  margin: 0 0 1rem 0;
  text-transform: lowercase;
}

.cta-title {
  font-family: 'Cocon', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 1.5rem 0;
  line-height: 1.2;
  text-transform: uppercase;
}

.cta-subtitle-main {
  font-family: 'Roboto', sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  margin: 0 0 1rem 0;
}

.cta-description {
  font-family: 'Roboto', sans-serif;
  font-size: 1.1rem;
  margin: 0 0 2rem 0;
  opacity: 0.9;
}

.cta-button {
  background-color: #FE0000;
  color: white;
  border: none;
  padding: 1.2rem 2.5rem;
  border-radius: 0.5rem;
  font-family: 'Roboto', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(254, 0, 0, 0.3);
}

.cta-button:hover {
  background-color: #d40000;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(254, 0, 0, 0.4);
}

.cta-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  padding: 1rem 0;
  z-index: 3;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-left,
.footer-center,
.footer-right {
  flex: 1;
}

.footer-center {
  text-align: center;
}

.footer-right {
  text-align: right;
}

.footer-content p {
  font-family: 'Roboto', sans-serif;
  font-size: 0.8rem;
  color: white;
  margin: 0;
  opacity: 0.8;
}

/* ===== MEDIA QUERIES ===== */

/* Mobile - até 390px */
@media (max-width: 390px) {
  html, body {
    font-size: 14px;
  }

  .logo-img {
    width: 50%;
    height: auto;
  }

  .hero-slider {
    height: 60vh;
    overflow: visible;
  }

  .hero-content {
    margin-left: 1rem;
    margin-right: -1rem;
    align-items: center;
    text-align: center;
  }

  .hero-title {
    font-size: 2.42rem;
    text-align: center;
  }

  .hero-subtitle {
    margin-top: 2rem;
    font-size: 1.42rem;
    text-align: center;
  }

  .form-container {
    position: absolute;
    top: auto;
    bottom: -550px;
    left: 50%;
    transform: translateX(-50%);
    right: auto;
    width: calc(100% - 2rem);
    max-width: 400px;
    padding: 0;
    margin: 0;
    z-index: 30;
  }

  .form-box {
    padding: 1.5rem;
    background-color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  .form-title {
    font-size: 1rem;
  }

  .form-subtitle {
    font-size: 0.9rem;
  }

  .por-que-elegir {
    padding-top: 600px;
  }

  .container {
    padding: 0 1rem;
  }

  .section-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }

  .content-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .section-image {
    height: 250px;
  }

  .intro-text,
  .highlight-text,
  .value-text,
  .origin-text {
    font-size: 1rem;
  }

  .vantagens {
    padding: 3rem 0;
  }

  .vantagens-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1rem;
  }

  .vantagem-text {
    font-size: 1.1rem;
  }

  .modelos-negocios {
    padding: 3rem 0;
  }

  .modelos-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1rem;
  }

  .modelo-card {
    flex-direction: column;
    padding: 1rem;
  }

  .modelo-imagem {
    width: 100%;
    height: 200px;
  }

  .modelo-titulo {
    font-size: 1.5rem;
  }

  .marcas-section {
    padding: 3rem 0;
  }

  .marcas-content {
    flex-direction: column;
    gap: 1.5rem;
    padding: 0 1rem;
  }

  .marcas-title h2 {
    font-size: 1.8rem;
    text-align: center;
  }

  .marcas-slide {
    height: 80px;
  }

  .faq-section {
    padding: 3rem 0;
  }

  .faq-list {
    padding: 0 1rem;
  }

  .faq-question {
    padding: 1rem;
  }

  .faq-question h3 {
    font-size: 1rem;
  }

  .faq-answer {
    padding: 0 1rem 1rem 1rem;
  }

  .faq-answer p {
    font-size: 0.9rem;
  }

  .media-section {
    padding: 3rem 0;
  }

  .media-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1rem;
  }

  .media-headline {
    font-size: 1rem;
  }

  .media-text {
    font-size: 0.85rem;
  }

  .cta-section {
    height: auto;
    min-height: 100vh;
    padding: 2rem 0;
  }

  .cta-overlay {
    height: auto;
    min-height: 100vh;
    padding: 2rem 0;
  }

  .cta-title {
    font-size: 2rem;
  }

  .cta-subtitle{
    font-size: 1.3rem;
  }

  .cta-subtitle-main {
    font-size: 1.3rem;
  }

  .cta-description {
    font-size: 1rem;
  }

  .cta-button {
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }

  .cta-footer{
    height: 100px;
  }

  .footer-content {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
    padding: 0 1rem;
  }

  .footer-left,
  .footer-center,
  .footer-right {
    text-align: center;
  }

  .footer-content p {
    font-size: 0.7rem;
  }
}

/* Tablet - até 768px */
@media (max-width: 768px) {
  html, body {
    font-size: 15px;
  }

  .header-container {
    padding: 1rem;
  }

  .logo-img {
    width: 50%;
  }

  .hero-slider {
    height: 65vh;
    overflow: visible;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 2rem;
  }

  .hero-title {
    text-align: center;
    font-size: 2.5rem;
    line-height: 1.2;
  }

  .hero-subtitle {
    font-size: 1.15rem;
    text-align: center;
    margin-top: 1.5rem;
  }

  .form-container {
    position: absolute;
    top: auto;
    bottom: -650px;
    left: 50%;
    transform: translateX(-50%);
    right: auto;
    width: 400px;
    max-width: calc(100% - 4rem);
    padding: 0;
    margin: 0;
    z-index: 30;
  }

  .form-box {
    padding: 1.8rem;
    background-color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 1rem;
  }

  .form-title {
    font-size: 1.05rem;
  }

  .form-subtitle {
    font-size: 0.95rem;
  }

  .por-que-elegir {
    padding-top: 700px;
  }

  .container {
    padding: 0 2rem;
  }

  .section-title {
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
  }

  .content-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .section-image {
    height: 350px;
  }

  .intro-text,
  .highlight-text,
  .value-text,
  .origin-text {
    font-size: 1.1rem;
  }

  .vantagens {
    padding: 1rem 0;
  }

  .vantagens-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding: 0 2rem;
  }

  .vantagem-text {
    font-size: 1.2rem;
  }

  .modelos-negocios {
    padding: 3.5rem 0;
  }

  .modelos-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 2rem;
  }

  .modelo-card {
    flex-direction: column;
  }

  .modelo-imagem {
    width: 100%;
    height: 250px;
  }

  .modelo-titulo {
    font-size: 1.7rem;
  }

  .marcas-section {
    padding: 3.5rem 0;
  }

  .marcas-content {
    flex-direction: column;
    gap: 2rem;
    padding: 0 2rem;
  }

  .marcas-title h2 {
    font-size: 2.2rem;
    text-align: center;
  }

  .marcas-slide {
    height: 100px;
  }

  .faq-section {
    padding: 3.5rem 0;
  }

  .faq-list {
    padding: 0 2rem;
  }

  .faq-question {
    padding: 1.2rem;
  }

  .faq-question h3 {
    font-size: 1.05rem;
  }

  .faq-answer {
    padding: 0 1.2rem 1.2rem 1.2rem;
  }

  .faq-answer p {
    font-size: 0.95rem;
  }

  .media-section {
    padding: 3.5rem 0;
  }

  .media-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
    padding: 0 2rem;
  }

  .media-headline {
    font-size: 1.05rem;
  }

  .media-text {
    font-size: 0.9rem;
  }

  .cta-section {
    height: auto;
    min-height: 100vh;
    padding: 2rem 0;
  }

  .cta-overlay {
    height: auto;
    min-height: 100vh;
    padding: 2rem 0;
  }

  .cta-title {
    font-size: 2.2rem;
  }

  .cta-subtitle {
    font-size: 1.2rem;
  }

  .cta-subtitle-main {
    font-size: 1.6rem;
  }

  .cta-description {
    font-size: 1.05rem;
  }

  .cta-button {
    padding: 1.1rem 2rem;
    font-size: 1.05rem;
  }

  .cta-footer {
    height: 120px;
  }

  .footer-content {
    flex-direction: column;
    gap: 0.8rem;
    text-align: center;
    padding: 0 2rem;
  }

  .footer-left,
  .footer-center,
  .footer-right {
    text-align: center;
  }

  .footer-content p {
    font-size: 0.75rem;
  }
}

/* Desktop médio - até 1440px */
@media (max-width: 1440px) {
  .form-containerолагаем,
  .modelos-grid {
    gap: 1.5rem;
  }

  .modelo-imagem {
    width: 250px;
    height: 250px;
  }

  .form-container {
    width: 380px;
  }
}

/* Desktop grande - min-width: 1600px */
@media (min-width: 1600px) {
  html, body {
    max-width: 1600px;
    margin: 0 auto;
  }

  .header-container {
    max-width: 1600px;
    margin: 0 auto;
  }

  .hero-slider {
    max-width: 1600px;
    margin: 0 auto;
  }

  .por-que-elegir {
    max-width: 1600px;
    margin: 0 auto;
  }

  .vantagens {
    max-width: 1600px;
    margin: 0 auto;
  }

  .modelos-negocios {
    max-width: 1600px;
    margin: 0 auto;
  }

  .marcas-section {
    max-width: 1600px;
    margin: 0 auto;
  }

  .faq-section {
    max-width: 1600px;
    margin: 0 auto;
  }

  .media-section {
    max-width: 1600px;
    margin: 0 auto;
  }

  .cta-section {
    max-width: 1600px;
    margin: 0 auto;
  }
}
