/* 
ERIKA FURTADO - RESPONSIVIDADE MOBILE
Ajustes específicos para garantir experiência editorial em dispositivos móveis
*/

/* Ajustes gerais para dispositivos móveis */
@media (max-width: 768px) {
  /* Ajustes de tipografia */
  body {
    font-size: 15px;
    line-height: 1.6;
  }
  
  h1 {
    font-size: 2rem;
    letter-spacing: 0.05em;
  }
  
  h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }
  
  .subtitle {
    font-size: 1rem;
  }
  
  /* Ajustes de espaçamento */
  .section {
    padding: 4rem 0;
  }
  
  .container {
    padding: 0 1.5rem;
  }
  
  /* Header mobile */
  .header {
    padding: 1rem 0;
  }
  
  .logo {
    font-size: 1.2rem;
  }
  
  /* Hero section mobile */
  .hero {
    height: 90vh;
  }
  
  .hero-content {
    padding: 0 1.5rem;
  }
  
  .hero-title {
    margin-bottom: 1rem;
  }
  
  .hero-subtitle {
    margin-bottom: 1.5rem;
  }
  
  /* Blocos editoriais mobile */
  .editorial-block {
    margin: 4rem 0;
  }
  
  .editorial-image {
    margin-bottom: 1.5rem;
  }
  
  .editorial-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .editorial-text {
    margin-bottom: 1.5rem;
  }
  
  /* Cases section mobile */
  .cases-section {
    padding: 4rem 0;
  }
  
  .case-quote {
    font-size: 1.2rem;
  }
  
  .quote-mark {
    font-size: 3rem;
    top: -1.5rem;
    left: -1rem;
  }
  
  /* Metrics section mobile */
  .metrics-section {
    padding: 4rem 0;
  }
  
  .metric-number {
    font-size: 2rem;
  }
  
  /* Steps section mobile */
  .steps-section {
    padding: 4rem 0;
  }
  
  .step-item {
    padding: 1.5rem 1rem;
  }
  
  .step-number {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  /* CTA section mobile */
  .cta-section {
    padding: 4rem 0;
  }
  
  .cta-title {
    font-size: 1.5rem;
  }
  
  /* Footer mobile */
  .footer {
    padding: 3rem 0;
  }
  
  /* WhatsApp button mobile */
  .whatsapp-button {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 50px;
    height: 50px;
  }
}

/* Ajustes para dispositivos muito pequenos */
@media (max-width: 480px) {
  /* Ajustes de tipografia */
  h1 {
    font-size: 1.8rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .subtitle {
    font-size: 0.9rem;
  }
  
  /* Ajustes de espaçamento */
  .section {
    padding: 3rem 0;
  }
  
  .container {
    padding: 0 1rem;
  }
  
  /* Hero section para dispositivos muito pequenos */
  .hero-content {
    padding: 0 1rem;
  }
  
  /* Blocos editoriais para dispositivos muito pequenos */
  .editorial-block {
    margin: 3rem 0;
  }
  
  /* Cases section para dispositivos muito pequenos */
  .case-quote {
    font-size: 1.1rem;
  }
  
  /* Métricas para dispositivos muito pequenos */
  .metric-number {
    font-size: 1.8rem;
  }
  
  .metric-label {
    font-size: 0.9rem;
  }
  
  /* Steps para dispositivos muito pequenos */
  .step-number {
    font-size: 2rem;
  }
  
  /* CTA para dispositivos muito pequenos */
  .cta-title {
    font-size: 1.3rem;
  }
  
  /* WhatsApp button para dispositivos muito pequenos */
  .whatsapp-button {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }
}

/* Ajustes para orientação paisagem em dispositivos móveis */
@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    height: 120vh; /* Maior altura para compensar a orientação paisagem */
  }
  
  .hero-content {
    padding: 0 2rem;
  }
  
  .hero-title {
    font-size: 1.8rem;
  }
  
  .hero-subtitle {
    font-size: 0.9rem;
  }
}

/* Ajustes para tablets */
@media (min-width: 769px) and (max-width: 1024px) {
  .hero-title {
    font-size: 2.8rem;
  }
  
  .editorial-block {
    margin: 6rem 0;
  }
  
  .section {
    padding: 5rem 0;
  }
}

/* Ajustes para telas de alta resolução */
@media (min-width: 1921px) {
  .container {
    max-width: 1600px;
  }
  
  body {
    font-size: 18px;
  }
  
  h1 {
    font-size: 4rem;
  }
  
  h2 {
    font-size: 3rem;
  }
  
  .hero {
    height: 90vh;
  }
}

/* Ajustes para dispositivos com tela sensível ao toque */
@media (hover: none) {
  .btn:hover {
    background-color: transparent;
    color: var(--color-text-dark);
  }
  
  .btn-gold:hover {
    background-color: var(--color-gold);
    color: var(--color-white);
  }
  
  a:hover {
    border-bottom: 1px solid transparent;
  }
  
  .nav-link:hover {
    border-bottom: none;
  }
  
  /* Adicionar estados ativos para dispositivos touch */
  .btn:active {
    background-color: var(--color-gold);
    color: var(--color-white);
  }
  
  a:active {
    border-bottom: 1px solid var(--color-gold);
  }
  
  .nav-link:active {
    border-bottom: 1px solid var(--color-gold);
  }
}
