/* Adicione isso no início do seu CSS */
html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%; /* Previne zoom em iOS */
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }
  
  body {
    overflow-x: hidden; /* Previne scroll horizontal */
  }
  
  .container {
    width: 100%;
    padding: 0 15px;
  }
  
  h2 {
    font-size: 1.8rem !important;
    margin-bottom: 20px;
  }
}

/* Reset e Estilos Globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #000;
    color: #fff;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    background-color: #f1de08;
    color: #000000;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn:hover {
    background-color: #817903;
    transform: translateY(-3px);
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
    text-transform: uppercase;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #f1de08;
}

/* Cabeçalho */
/* Cabeçalho com fundo moderno */
.header {
    position: fixed;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #1a1a1a 0%, #101010 50%, #1a1a1a 100%);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.header.scrolled {
    padding: 12px 0;
    background: linear-gradient(135deg, #121212 0%, #222 100%);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(255, 221, 0, 0.15);
}

.logo h1 {
    font-size: 1.8rem;
    color: #fff;
    text-shadow: 0 2px 4px rgba(37, 36, 36, 0.5);
    letter-spacing: 1px;
}

.logo h1 span {
    color: #f1de08;
    text-shadow: 0 0 8px rgba(241, 222, 8, 0.4);
}

.logo p {
    font-size: 0.8rem;
    color: #ddd;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.5px;
}

.nav ul {
    display: flex;
    list-style: none;
}

.nav ul li {
    margin-left: 30px;
    position: relative;
}

.nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    padding: 5px 0;
    position: relative;
}

.nav ul li a:hover {
    color: #f1de08;
}

/* Efeito sublinhado ao passar o mouse */
.nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #f1de08;
    transition: width 0.3s ease;
}

.nav ul li a:hover::after {
    width: 100%;
}

.menu-mobile {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #fff;
    transition: color 0.3s ease;
}

.menu-mobile:hover {
    color: #f1de08;
}

/* Responsividade */
@media (max-width: 768px) {
    .header {
        padding: 15px 0;
    }
    
    .nav ul {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        flex-direction: column;
        background: linear-gradient(135deg, #121212 0%, #222 100%);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
        transition: all 0.5s ease;
        padding: 20px 0;
    }
    
    .nav ul.show {
        left: 0;
    }
    
    .nav ul li {
        margin: 0;
        padding: 12px 0;
        text-align: center;
    }
    
    .nav ul li a::after {
        display: none;
    }
    
    .menu-mobile {
        display: block;
    }
}

/* Seção Hero com Vídeo */
.hero {
    height: 100vh;
    min-height: 600px; /* Altura mínima para mobile */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

/* Ajustes específicos para mobile */
@media (max-width: 768px) {
    .hero {
        height: 70vh; /* Altura menor para mobile */
        min-height: 500px;
    }
    
    .video-container video {
        /* Opcional: para vídeos muito largos em retrato */
        width: auto;
        min-width: 100%;
        min-height: 100%;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 60vh;
        min-height: 400px;
    }
    
    .hero-content h2 {
        font-size: 2rem !important;
    }
    
    .hero-content p {
        font-size: 1rem !important;
    }
}

/* Estilos para a logo no hero */
.logo-hero {
  max-width: 550px;
  margin: 100px auto 20px;
  animation: fadeInDown 1s ease-out;
}

.logo-hero img {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 5px 15px rgba(0,0,0,0.3));
}

/* Animação para a logo */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsividade para mobile */
@media (max-width: 768px) {
  .logo-hero {
    max-width: 400px; /* Tamanho menor para mobile */
    margin-bottom: 15px;
  }
  
  .hero-content p {
    font-size: 1rem;
    padding: 0 20px;
  }
}

@media (max-width: 480px) {
  .logo-hero {
    max-width: 150px;
  }
}

.video-container video {
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    /* Garante que apenas os primeiros 15 segundos sejam visíveis */
    object-position: 0% 0%;
}
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 0 20px;
}

.hero-content h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: #fff;
    text-transform: uppercase;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #ccc;
}

/* Formulário de Agendamento - Estilo Moderno para Tatuagem */
.form-section {
    padding: 80px 0;
    background: 
        radial-gradient(ellipse at center, 
            rgba(30,30,30,0.9) 0%, 
            rgba(10,10,10,1) 100%),
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path d="M20,50 Q35,20 50,50 T80,50" fill="none" stroke="%23f1de08" stroke-width="0.3" opacity="0.1"/></svg>');
    position: relative;
    overflow: hidden;
}

.form-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            45deg,
            rgba(241,222,8,0.03) 0px,
            rgba(241,222,8,0.03) 2px,
            transparent 2px,
            transparent 4px
        );
    pointer-events: none;
}

.tattoo-form {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(25, 25, 25, 0.95);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(241, 222, 8, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

.tattoo-form:hover {
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(241, 222, 8, 0.2);
}

.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    background: rgba(40, 40, 40, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #f1de08;
    box-shadow: 
        inset 0 1px 3px rgba(0, 0, 0, 0.3),
        0 0 0 2px rgba(241, 222, 8, 0.2);
    background: rgba(50, 50, 50, 0.8);
}

.form-group input::placeholder {
    color: #666;
    font-style: italic;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: #ddd;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23f1de08'%3e%3cpath d='M7 10l5 5 5-5z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 12px;
}

.btn {
    display: block;
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #f1de08 0%, #d4c107 100%);
    color: #222;
    border: none;
    border-radius: 6px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 
        0 4px 15px rgba(241, 222, 8, 0.3),
        inset 0 -2px 0 rgba(0,0,0,0.2);
}

.btn:hover {
    background: linear-gradient(135deg, #ffea2d 0%, #f1de08 100%);
    transform: translateY(-2px);
    box-shadow: 
        0 6px 20px rgba(241, 222, 8, 0.4),
        inset 0 -2px 0 rgba(0,0,0,0.2);
}

.btn:active {
    transform: translateY(0);
    box-shadow: 
        0 3px 10px rgba(241, 222, 8, 0.3),
        inset 0 2px 0 rgba(0,0,0,0.1);
}

/* Efeito de foco nos campos */
.form-group:focus-within label {
    color: #f1de08;
}

/* Responsividade */
@media (max-width: 768px) {
    .form-section {
        padding: 60px 0;
    }
    
    .tattoo-form {
        padding: 30px 20px;
        width: 100%;
        max-width: 100%;
        border-radius: 0;
        box-shadow: none;
        border-left: none;
        border-right: none;
    }

    .container {
        width: 100%;
        padding: 5%;
    }
}

/* Seção Estúdio - Versão Atualizada */
.estudio {
    padding: 100px 0;
    background: 
        linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%),
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path d="M0,50 Q25,25 50,50 T100,50" fill="none" stroke="%23f1de08" stroke-width="0.3" opacity="0.05"/></svg>');
    position: relative;
    overflow: hidden;
}

.estudio::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            45deg,
            rgba(241,222,8,0.03) 0px,
            rgba(241,222,8,0.03) 2px,
            transparent 2px,
            transparent 4px
        );
}

.estudio-content {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.estudio-text {
    flex: 1;
    padding: 40px;
    background: rgba(20, 20, 20, 0.8);
    border-radius: 12px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(241, 222, 8, 0.1);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(241, 222, 8, 0.05);
}

.estudio-text h2 {
    color: #f1de08;
    font-size: 2.8rem;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 15px;
}

.estudio-text h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: #f1de08;
}

.estudio-text p {
    color: #e0e0e0;
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 1.1rem;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

.estudio-image {
    flex: 1;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
}

.estudio-image:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.estudio-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease, filter 0.5s ease;
    filter: brightness(0.8) contrast(1.1) saturate(1.1);
    transform: scale(1.01);
}

.estudio-image:hover img {
    filter: brightness(0.9) contrast(1.2) saturate(1.2);
    transform: scale(1.03);
}

.estudio-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.1) 0%,
        rgba(0,0,0,0.4) 100%
    );
    z-index: 1;
}

/* Responsividade */
@media (max-width: 992px) {
    .estudio-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .estudio-text, 
    .estudio-image {
        width: 100%;
    }
    
    .estudio-image {
        max-width: 600px;
        margin: 0 auto;
        transform: none;
    }
    
    .estudio-image:hover {
        transform: none;
    }
}

@media (max-width: 768px) {
    .estudio {
        padding: 70px 0;
    }
    
    .estudio-text {
        padding: 30px;
    }
    
    .estudio-text h2 {
        font-size: 2.2rem;
    }
    
    .estudio-text p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .estudio-text {
        padding: 25px 20px;
    }
    
    .estudio-text h2 {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
}

/* Seção Sobre Mim */
.sobre {
  padding: 100px 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  position: relative;
  overflow: hidden;
}

.sobre::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path d="M20,20 Q50,30 80,20 T80,80 Q50,70 20,80 T20,20" fill="none" stroke="%23f1de08" stroke-width="0.3" opacity="0.05"/></svg>');
}

.sobre h2 {
  color: #fff;
  font-size: 2.8rem;
  margin-bottom: 50px;
  text-align: center;
  position: relative;
}

.sobre h2 span {
  color: #f1de08;
  margin-right: 15px;
}

.sobre-content {
  display: flex;
  gap: 50px;
  align-items: center;
}

.sobre-text {
  flex: 1;
}

.sobre-bio p {
  color: #ddd;
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.sobre-bio p.destaque {
  color: #f1de08;
  font-size: 1.3rem;
  font-weight: 500;
}

.assinatura {
  margin: 30px 0;
}

.assinatura img {
  height: 60px;
  opacity: 0.8;
}

.sobre-lista {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 40px;
}

.especialidade, .filosofia {
  background: rgba(30, 30, 30, 0.7);
  padding: 25px;
  border-radius: 8px;
  border-left: 3px solid #f1de08;
  position: relative;
  overflow: hidden;
}

.especialidade::before, .filosofia::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path d="M0,50 L100,50" stroke="%23f1de08" stroke-width="0.2" opacity="0.1"/></svg>');
  opacity: 0.1;
}

.especialidade i, .filosofia i {
  color: #f1de08;
  font-size: 1.5rem;
  margin-bottom: 15px;
  display: inline-block;
}

.especialidade h3, .filosofia h3 {
  color: #fff;
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.especialidade ul {
  list-style: none;
}

.especialidade ul li {
  color: #ddd;
  margin-bottom: 8px;
  position: relative;
  padding-left: 20px;
}

.especialidade ul li::before {
  content: "•";
  color: #f1de08;
  position: absolute;
  left: 0;
}

.filosofia p {
  color: #ddd;
  line-height: 1.7;
  font-style: italic;
}

.sobre-image {
  flex: 1;
  position: relative;
}

.image-frame {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0,0,0,0.5);
}

.image-frame img {
  width: 100%;
  height: auto;
  display: block;
  filter: grayscale(20%) contrast(110%);
  transition: all 0.5s ease;
}

.image-frame::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.1) 0%,
    rgba(0,0,0,0.4) 100%
  );
}

.exp-badge {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: rgba(194, 180, 23, 0.6);
  color: #000;
  padding: 15px 20px;
  border-radius: 5px;
  text-align: center;
  font-weight: bold;
  z-index: 2;
}

.exp-badge span {
  font-size: 2rem;
  display: block;
  line-height: 1;
}

.exp-badge small {
  font-size: 0.8rem;
  display: block;
}

/* Responsividade */
@media (max-width: 992px) {
  .sobre-content {
    flex-direction: column-reverse;
  }
  
  .sobre-text, .sobre-image {
    width: 100%;
  }
  
  .sobre-image {
    max-width: 500px;
    margin: 0 auto 40px;
  }
}

@media (max-width: 768px) {
  .sobre-lista {
    grid-template-columns: 1fr;
  }
  
  .sobre h2 {
    font-size: 2.2rem;
  }
}

/* Seção Galeria */
.galeria {
    padding: 80px 0;
    background-color: #111;
    overflow: hidden;
}

.gallery-container {
    position: relative;
}

.gallery-grid {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.gallery-grid::-webkit-scrollbar {
    height: 8px;
}

.gallery-grid::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
}

.gallery-grid::-webkit-scrollbar-thumb {
    background: #f1de08;
    border-radius: 10px;
}

.gallery-item {
    min-width: 300px;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.load-more-btn {
    display: block;
    margin: 0 auto;
    background-color: #f1de08;
    color: #000;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.load-more-btn:hover {
    background-color: #d4c107;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(241, 222, 8, 0.3);
}

.load-more-btn:active {
    transform: translateY(0);
}

/* Responsividade */
@media (max-width: 768px) {
    .gallery-item {
        min-width: 250px;
        height: 350px;
    }
}

@media (max-width: 480px) {
    .gallery-item {
        min-width: 200px;
        height: 300px;
    }
}

/* Seção Contato - Versão Atualizada */
.contato {
    padding: 100px 0;
    background: 
        linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%),
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path d="M20,20 Q50,80 80,20" fill="none" stroke="%23f1de08" stroke-width="0.5" opacity="0.05"/></svg>');
    position: relative;
    overflow: hidden;
}

.contato::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.contato-content {
    display: flex;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.contato-info {
    flex: 1;
    padding: 40px;
    background: rgba(20, 20, 20, 0.8);
    border-radius: 12px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(241, 222, 8, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.contato-info h2 {
    color: #f1de08;
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 15px;
}

.contato-info h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: #f1de08;
}

.contact-details {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    color: #e0e0e0;
    line-height: 1.6;
}

.contact-icon {
    color: #f1de08;
    font-size: 1.2rem;
    margin-right: 15px;
    margin-top: 3px;
}

.contact-text {
    flex: 1;
}

.contact-text h3 {
    color: #f1de08;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.contact-text p, 
.contact-text a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-text a:hover {
    color: #f1de08;
}

.contato-mapa {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7);
    position: relative;
}

.contato-mapa iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: none;
    filter: grayscale(20%) contrast(110%);
}

.map-link {
    display: inline-block;
    margin-top: 20px;
    color: #f1de08;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.map-link:hover {
    border-bottom: 1px solid #f1de08;
}

/* Responsividade */
@media (max-width: 992px) {
    .contato-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .contato-info, 
    .contato-mapa {
        width: 100%;
    }
    
    .contato-mapa iframe {
        min-height: 350px;
    }
}

@media (max-width: 768px) {
    .contato {
        padding: 70px 0;
    }
    
    .contato-info {
        padding: 30px;
    }
    
    .contato-info h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .contato-info {
        padding: 25px 20px;
    }
    
    .contato-info h2 {
        font-size: 1.8rem;
    }
    
    .contact-item {
        flex-direction: column;
    }
    
    .contact-icon {
        margin-bottom: 5px;
    }
}

/* Botão Flutuante do WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    z-index: 999;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
}

/* Seção FAQ */
.faq-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  color: #fff;
}

.faq-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: #fff;
}

.faq-section h2 span {
  color: #f1de08;
  margin-right: 10px;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 15px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px;
  background: rgba(30, 30, 30, 0.7);
  border: none;
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: rgba(50, 50, 50, 0.7);
}

.faq-question i {
  color: #f1de08;
  transition: transform 0.3s ease;
}

.faq-question.active i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background: rgba(20, 20, 20, 0.5);
}

.faq-answer.active {
  padding: 20px;
  max-height: 300px;
}

.faq-answer p {
  color: #ddd;
  line-height: 1.6;
}

/* Responsividade */
@media (max-width: 768px) {
  .faq-section {
    padding: 60px 20px;
  }
  
  .faq-section h2 {
    font-size: 2rem;
  }
  
  .faq-question {
    padding: 15px;
    font-size: 1rem;
  }
}

/* Rodapé - Atualizado */
.footer {
    background-color: #111;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo h3 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 15px;
}

.footer-logo h3 span {
    color: #f1de08;
}

.footer-logo p {
    color: #ccc;
    font-size: 0.9rem;
}

.footer-links h3 {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: #f1de08;
}

.footer-social h3 {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #333;
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: #f1de08;
    transform: translateY(-3px);
    color: #000;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #666;
    font-size: 0.9rem;
}

/* Novos estilos para links legais */
.footer-legal {
    margin-top: 15px;
}

.footer-legal a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.85rem;
}

.footer-legal a:hover {
    color: #f1de08;
}

.divider {
    color: #555;
    margin: 0 10px;
}

/* Responsividade */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        
        gap: 30px;
    }
    
    .footer-legal {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }
    
    .divider {
        display: none;
    }
}

.image-instruction {
  color: #f1de08;
  font-size: 0.9rem;
  text-align: center;
  margin-top: 15px;
  padding: 10px;
  background: rgba(241, 222, 8, 0.1);
  border-radius: 5px;
}