/* Reset e configurações globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #000;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Container principal com bordas pretas */
.main-container {
    max-width: 1400px;
    margin: 0 auto;
    background-color: #000;
    border: 8px solid #000;
    min-height: 100vh;
}

/* Cores principais */
:root {
    --primary-gold: #f1e213;
    --secondary-gold: #f1e213;
    --accent-orange: #f78707;
    --dark-bg: #000;
    --light-text: #fff;
    --gray-text: #ccc;
    --form-gray: #999;
}

/* Cabeçalho */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: #000;
}

.logo-img {
    width: 80px;   /* ajuste o tamanho da logo */
    height: auto;   /* mantém proporção */
    display: block;
}

.contact-btn {
    background: linear-gradient(135deg, var(--secondary-gold), var(--accent-orange));
    color: #000;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(244, 162, 97, 0.4);
}

/* Seção Hero */
.hero-section {
    min-height: 80vh;
    background: linear-gradient(90deg, #000 0%, #000 50%, transparent 100%);
    position: relative;
}

.hero-content {
    display: flex;
    align-items: center;
    min-height: 80vh;
    padding: 0 40px;
}

.hero-text {
    flex: 1;
    max-width: 600px;
    z-index: 2;
    position: relative;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #fff;
}

.hero-text h2 {
    font-size: 24px;
    font-weight: 400;
    color: var(--primary-gold);
    margin-bottom: 25px;
}

.hero-text p {
    font-size: 16px;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.6;
}

.contact-btn-hero {
    background: linear-gradient(135deg, var(--secondary-gold), var(--accent-orange));
    color: #000;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 30px 0;
    transition: all 0.3s ease;
}

.contact-btn-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(244, 162, 97, 0.4);
}

.small-text {
    font-size: 12px !important;
    color: #ccc !important;
    margin-top: 15px !important;
}

.hero-image {
    flex: 1;
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 50%;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mask: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.3) 30%, rgba(0,0,0,1) 100%);
    -webkit-mask: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.3) 30%, rgba(0,0,0,1) 100%);
}

/* Seção de Serviços - Ícones */
.services-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 40px 20px;
    flex-wrap: wrap;
}

.service-item {
    background: linear-gradient(180deg, #5a5a5a, #7a6e5d); /* cinza degradê */
    border-radius: 8px;
    padding: 20px 25px;
    text-align: center;
    color: #fff;
    width: 180px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    flex-shrink: 0; /* Importante para o scroll horizontal */
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.4);
}

.service-icon {
    font-size: 28px;
    color: #f1e213; /* dourado */
    margin-bottom: 12px;
}

.service-item span {
    font-size: 15px;
    font-weight: 500;
    display: block;
}

/* Seção de Serviços Detalhados */
.services-detailed {
    padding: 80px 40px;
    background-color: #000;
}

.services-content {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.services-image {
    flex: 1;
}

.services-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.services-list {
    flex: 1;
    color: #fff;
}

.services-list h3 {
    font-size: 36px;
    color: var(--primary-gold);
    margin-bottom: 20px;
    font-weight: 600;
}

.services-list p {
    font-size: 16px;
    margin-bottom: 30px;
    color: #ccc;
}

.services-list ul {
    list-style: none;
}

.services-list li {
    font-size: 16px;
    margin-bottom: 10px;
    color: #fff;
    position: relative;
    padding-left: 20px;
}

.services-list li::before {
    content: "•";
    color: var(--primary-gold);
    font-size: 20px;
    position: absolute;
    left: 0;
}

/* Seção Calculadora */
.calculator-section {
    padding: 80px 40px;
    background-color: #000;
}

.calculator-content {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.calculator-info {
    flex: 1;
}

.calculator-info h3 {
    font-size: 20px;
    color: var(--primary-gold);
    margin-bottom: 30px;
    font-weight: 600;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 8px;
    font-size: 16px;
    color: #fff;
}

.benefits-list i {
    color: var(--primary-gold);
    font-size: 18px;
}

.calculator-form {
    flex: 1;
    max-width: 400px;
}

.form-container {
    background-color: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
}

.form-container h4 {
    color: #333;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.3;
}

.form-container input {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    border: none;
    border-radius: 25px;
    background-color: var(--form-gray);
    color: #fff;
    font-size: 16px;
}

.form-container input::placeholder {
    color: #fff;
    opacity: 0.8;
}

.calculator-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--secondary-gold), var(--accent-orange));
    color: #000;
    border: none;
    padding: 15px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.calculator-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(244, 162, 97, 0.4);
}
/* Estilos da seção download */
.download {
    padding: 80px 0;
    background-color: #000; /* Preto */
    color: #f1e213; /* Amarelo escuro */
}

.download .container {
    display: flex;
    flex-direction: row; /* lado a lado */
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
    text-align: left;
}

.download-content {
    flex: 1;
    max-width: 500px;
}

.download-content h2 {
    font-size: 28px;
    color: #f1e213; /* Amarelo escuro */
    margin-bottom: 15px;
    line-height: 1.2;
}

.download-content p {
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 1.6;
    max-width: 500px;
    color: #ffffff;
}

.app-buttons {
    display: flex;
    flex-direction: row; /* botões lado a lado */
    gap: 15px;
    margin-top: 20px;
}

.app-button {
    display: inline-block;
    transition: transform 0.3s ease;
}

.app-button:hover {
    transform: scale(1.05);
}

.app-button img {
    height: 50px;
    max-width: 150px;
}

.download-image {
    flex: 1;
    text-align: center;
}

.download-image img {
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}




.faixa-logos {
    width: 100%;
    overflow: hidden;
    background-color: #f5f5f5; /* cor de fundo da faixa, opcional */
    padding: 10px 0;
    box-sizing: border-box;
    margin-bottom: 10px;
}

.marquee {
    display: flex;
    width: max-content;
    animation: scroll-left 30s linear infinite;
}

.item {
    display: flex;
    flex-direction: column; /* nome embaixo da imagem */
    align-items: center;
    margin-right: 50px;
    font-family: Arial, sans-serif;
    font-size: 14px;
    white-space: nowrap;
    color: #ffffff; /* cor do texto */
    text-align: center;
}

.item img {
    height: 40px; /* ajuste conforme necessário */
    margin-bottom: 5px;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-100%);
    }
}


/* Seção de Localização */
.location-section {
    padding: 80px 40px;
    background-color: #000;
}

.location-content {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.map-container {
    flex: 1;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    border: 3px solid #333;
}

#map, iframe {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.location-info {
    flex: 1;
}

.location-info h3 {
    font-size: 36px;
    color: var(--primary-gold);
    margin-bottom: 30px;
    font-weight: 600;
}

.location-item {
    margin-bottom: 25px;
}

.location-item h4 {
    color: var(--primary-gold);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.location-item p {
    color: #fff;
    font-size: 16px;
    line-height: 1.5;
}

.directions-btn {
    background: linear-gradient(135deg, var(--secondary-gold), var(--accent-orange));
    color: #000;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.directions-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(240, 213, 59, 0.4);
}

/* Rodapé */
.footer {
    background-color: #111;
    padding: 60px 40px 20px;
    border-top: 3px solid #333;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
}

.footer-section {
    flex: 1;
}

.footer-section h4 {
    color: var(--primary-gold);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-section p,
.footer-section li {
    color: #ccc;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 8px;
}

.footer-section ul {
    list-style: none;
}

.footer-section i {
    color: var(--primary-gold);
    margin-right: 8px;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #333;
}

.footer-bottom p {
    color: #666;
    font-size: 12px;
}

/* Responsividade Mobile */
@media (max-width: 768px) {
    .main-container {
        border: 4px solid #000;
    }
    
    .header {
        padding: 15px 20px;
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .logo-img {
        width: 100px;
    }
    
    .contact-btn {
        padding: 10px 20px;
        font-size: 12px;
    }
    
    .hero-content {
        flex-direction: column;
        padding: 20px;
        text-align: center;
        min-height: auto;
    }
    
    .hero-image {
        position: relative;
        width: 100%;
        height: 250px;
        margin-top: 30px;
    }
    
    .hero-image img {
        mask: none;
        -webkit-mask: none;
        border-radius: 10px;
    }
    
    .hero-text h1 {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .hero-text h2 {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .hero-text p {
        font-size: 14px;
        margin-bottom: 12px;
    }
    
    .contact-btn-hero {
        padding: 12px 25px;
        font-size: 14px;
        margin: 25px 0;
    }
    
    /* SCROLL HORIZONTAL PARA ÍCONES DE SERVIÇOS NO MOBILE - CORRIGIDO */
    .services-icons {
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
        gap: 15px;
        padding: 30px 20px 30px 60px; /* Aumentado padding-left para mover mais à direita */
        flex-wrap: nowrap;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE/Edge */
        justify-content: flex-start; /* Alinha os itens à esquerda do container */
    }
    
    /* Esconde a scrollbar no Chrome/Safari */
    .services-icons::-webkit-scrollbar {
        display: none;
    }
    
    .service-item {
        min-width: 150px;
        width: 150px;
        padding: 15px 20px;
        flex-shrink: 0;
    }
    
    .service-icon {
        font-size: 24px;
        margin-bottom: 10px;
    }
    
    .service-item span {
        font-size: 13px;
    }
    
    /* Seções empilhadas no mobile */
    .services-content,
    .calculator-content,
    .location-content {
        flex-direction: column;
        gap: 30px;
        padding: 0 20px;
    }
    
    .services-detailed,
    .calculator-section,
    .location-section {
        padding: 50px 20px;
    }
    
    .services-list h3,
    .calculator-info h3,
    .location-info h3 {
        font-size: 28px;
        text-align: center;
        margin-bottom: 25px;
    }
    
    .services-list p {
        font-size: 14px;
        text-align: center;
        margin-bottom: 25px;
    }
    
    .services-list li {
        font-size: 14px;
        margin-bottom: 8px;
    }
    
    .benefits-list li {
        font-size: 14px;
        margin-bottom: 6px;
    }
    
    .form-container {
        padding: 30px 25px;
        margin: 0 auto;
        max-width: 350px;
    }
    
    .form-container h4 {
        font-size: 18px;
        margin-bottom: 25px;
    }
    
    .form-container input {
        padding: 12px;
        font-size: 14px;
        margin-bottom: 12px;
    }
    
    .calculator-btn {
        padding: 12px;
        font-size: 14px;
    }
    
    .services-image {
        order: 2; /* Move a imagem para baixo no mobile */
    }
    
    .services-list {
        order: 1; /* Move o texto para cima no mobile */
    }

    .map-container {
        height: 250px;
        order: 2;
    }
    
    .location-info {
        order: 1;
    }
    
    .location-item h4 {
        font-size: 16px;
    }
    
    .location-item p {
        font-size: 14px;
    }
    
    .directions-btn {
        padding: 12px 25px;
        font-size: 14px;
        width: 100%;
        justify-content: center;
    }
    
    .footer {
        padding: 40px 20px 15px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }
    
    .footer-section h4 {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .footer-section p,
    .footer-section li {
        font-size: 13px;
    }
}
/* Faixa preta com logos passando */
.faixa-logos {
  background-color: #000;
  overflow: hidden;
  width: 100%;
  padding: 10px 0;
  position: relative;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Container animado que se move */
.marquee {
  display: flex;
  align-items: center;
  gap: 40px; /* espaçamento entre logos */
  animation: scroll 30s linear infinite;
}

/* Logo individual */
.faixa-logos .item img {
  height: 40px;
  max-height: 100%;
  vertical-align: middle;
}

/* Animação da esteira */
@keyframes scroll {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Responsivo para telas pequenas */
@media (max-width: 480px) {
  .faixa-logos {
    height: 45px;
  }

  .faixa-logos .item img {
    height: 30px;
  }

  .marquee {
    gap: 25px;
  }
}

/* Responsividade para tablets */
@media (max-width: 1024px) and (min-width: 769px) {
    .hero-text h1 {
        font-size: 40px;
    }
    
    .hero-text h2 {
        font-size: 22px;
    }
    
    .services-icons {
        gap: 15px;
        padding: 35px 20px;
    }
    
    .service-item {
        width: 160px;
        padding: 18px 22px;
    }
    
    .services-detailed,
    .calculator-section,
    .location-section {
        padding: 60px 30px;
    }
    
    .services-list h3,
    .calculator-info h3,
    .location-info h3 {
        font-size: 32px;
    }
}

/* Responsividade para telas muito pequenas */
@media (max-width: 480px) {
    .header {
        padding: 12px 15px;
    }
    
    .logo-img {
        width: 80px;
    }
    
    .contact-btn {
        padding: 8px 16px;
        font-size: 11px;
    }
    
    .hero-content {
        padding: 15px;
    }
    
    .hero-text h1 {
        font-size: 24px;
    }
    
    .hero-text h2 {
        font-size: 18px;
    }
    
    .hero-text p {
        font-size: 13px;
    }
    
    .services-icons {
        padding: 25px 15px 25px 50px; /* Ajustado para telas muito pequenas - mais espaço à direita */
        gap: 12px;
    }
    
    .service-item {
        min-width: 130px;
        width: 130px;
        padding: 12px 15px;
    }
    
    .service-icon {
        font-size: 22px;
        margin-bottom: 8px;
    }
    
    .service-item span {
        font-size: 12px;
    }
    
    .services-detailed,
    .calculator-section,
    .location-section {
        padding: 40px 15px;
    }
    
    .services-list h3,
    .calculator-info h3,
    .location-info h3 {
        font-size: 24px;
    }
    
    .form-container {
        padding: 25px 20px;
        max-width: 300px;
    }
    
    .footer {
        padding: 30px 15px 12px;
    }
}















