/* Estilos específicos para a página index.html */

.hero-section {
    padding: 25px 0;
    padding-bottom: 0;
}

.hero-content {
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .hero-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .hero-text {
        flex: 1;
        margin-right: 20px;
    }
    
    .hero-image-container {
        flex: 1;
    }
}

.hero-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 15px;
    color: #555;
}

.hero-image {
    width: 100%;
    border-radius: 10px;
    margin: 15px 0;
}

.service-selection {
    margin: 30px 0;
}

.service-selection-title {
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
}

.service-card {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.10);
    overflow: hidden;
    width: 100%;
    max-width: 350px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.10);
}

.service-card-image {
    width: 100%;
    object-fit: contain;
    min-height: 300px;
    max-height: 350px;
}

.service-card-content {
    padding: 15px;
}

.service-card-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

.service-card-description {
    font-size: 14px;
    color: #555;
}

.select-container {
    margin-bottom: 20px;
}

.select-wrapper {
    position: relative;
    margin-bottom: 15px;
}

.select-wrapper::after {
    content: '\25BC';
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    pointer-events: none;
    font-size: 12px;
    color: #555;
}

.custom-select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    appearance: none;
    background-color: white;
    cursor: pointer;
}

.custom-select:focus {
    outline: none;
    border-color: #9968FF;
}

.action-button {
    width: 100%;
}













/* Correções específicas para Safari */


@supports (-webkit-touch-callout: none) {
  .select-wrapper::after {
    content: '▾';
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    pointer-events: none;
    font-size: 12px;
    color: #555;
    z-index: 1;
  }

  .custom-select {
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    background-color: white;
    background-image: none; /* força não usar a seta nativa */
  }
}

@media not all and (min-resolution:.001dpcm) {
  @supports (-webkit-appearance:none) {

    /* Corrige alinhamento do select no Safari */
    .custom-select {
      padding-right: 30px;
      -webkit-appearance: none;
      background-position: right 15px center;
      background-repeat: no-repeat;
      background-size: 12px;
    }

    .select-wrapper::after {
      display: none; /* Safari já mostra uma seta própria */
    }

    /* Corrige o botão de ação no Safari */
    .action-button {
      display: block;
      width: 100%;
      box-sizing: border-box;
      -webkit-appearance: none;
    }
  }
}







    /* APP e números gerais site */
.app-download-section {
    width: 100%;
    max-width: 1200px; /* limite de largura da área */
    margin: 40px auto;
    padding: 0 20px;
    text-align: center;
}

.app-download-section picture {
    display: block;
    margin-bottom: 30px;
    width: 100%;
}

.app-banner {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
    max-width: 100%;
    object-fit: contain;
    margin-bottom: 45px;
}