/* Estilos para a Landing Page da Laila Raeder Tatuadora */

/* Variáveis de cores */
:root {
  --color-primary: #cabbb5;
  --color-secondary: #b6a396;
  --color-accent: #a0817a;
  --color-highlight: #ae8f9e;
  --color-dark: #333333;
  --color-light: #f8f5f3;
  --color-cta: #4CAF50; /* Verde para o botão CTA */
  --font-primary: 'Montserrat', sans-serif;
  --font-secondary: 'Playfair Display', serif;
}

/* Reset e estilos gerais */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  color: var(--color-dark);
  background-color: var(--color-light);
  line-height: 1.6;
}

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

section {
  padding: 60px 0;
}

h1, h2, h3, h4 {
  font-family: var(--font-secondary);
  margin-bottom: 20px;
  color: var(--color-accent);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
  text-align: center;
}

p {
  margin-bottom: 15px;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: var(--color-accent);
  transition: all 0.3s ease;
}

a:hover {
  color: var(--color-highlight);
}

/* Header e navegação */
header {
  background-color: var(--color-primary);
  padding: 20px 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo {
  max-width: 180px;
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(202, 187, 181, 0.8), rgba(174, 143, 158, 0.8)), url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  color: var(--color-dark);
  text-align: center;
  padding: 150px 0 80px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--color-dark);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.slogan {
  font-style: italic;
  font-weight: bold;
  font-size: 1.5rem;
  margin: 20px 0;
  color: var(--color-dark);
}

/* Botão CTA */
.btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--color-cta);
  color: white;
  border-radius: 50px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  margin: 20px 0;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn:hover {
  background-color: #3d8b40;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  color: white;
}

.btn-container {
  text-align: center;
  margin: 30px 0;
}

/* Sobre Section */
.about {
  background-color: var(--color-light);
  padding: 80px 0;
}

.about-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

/* Portfolio Section */
.portfolio {
  background-color: var(--color-primary);
  padding: 80px 0;
}

.portfolio h2 {
  color: var(--color-dark);
}

.portfolio-subtitle {
  text-align: center;
  margin-bottom: 40px;
  font-style: italic;
}

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

.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.portfolio-item:hover {
  transform: translateY(-5px);
}

.portfolio-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

/* Modal para imagens expandidas */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  overflow: auto;
}

.modal-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 90%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 2001;
}

/* Testimonials Section */
.testimonials {
  background-color: var(--color-light);
  padding: 80px 0;
}

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

.testimonial {
  background-color: white;
  padding: 30px;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial p {
  font-style: italic;
  margin-bottom: 10px;
}

.testimonial-author {
  font-weight: bold;
  color: var(--color-accent);
}

/* Location Section */
.location {
  background-color: var(--color-secondary);
  padding: 80px 0;
  color: var(--color-dark);
}

.location-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.address {
  font-size: 1.2rem;
  margin: 20px 0;
  font-weight: bold;
}

.location-highlight {
  font-style: italic;
  margin: 20px 0;
}

/* CTA Final Section */
.cta-final {
  background: linear-gradient(rgba(160, 129, 122, 0.9), rgba(174, 143, 158, 0.9)), url('../images/cta-bg.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding: 100px 0;
}

.cta-final h2 {
  color: white;
}

.cta-final p {
  max-width: 600px;
  margin: 0 auto 30px;
  font-size: 1.2rem;
}

/* Footer */
footer {
  background-color: var(--color-dark);
  color: white;
  padding: 40px 0;
  text-align: center;
}

.footer-content {
  max-width: 800px;
  margin: 0 auto;
}

.footer-address {
  margin: 20px 0;
}

.social-links {
  margin: 20px 0;
}

.social-links a {
  color: white;
  margin: 0 10px;
  font-size: 1.5rem;
}

.copyright {
  margin-top: 20px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Media Queries */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .hero {
    padding: 120px 0 60px;
  }
  
  .hero h1 {
    font-size: 2.2rem;
  }
  
  .slogan {
    font-size: 1.2rem;
  }
  
  .portfolio-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }
  
  .portfolio-item img {
    height: 200px;
  }
  
  section {
    padding: 40px 0;
  }
  
  .btn {
    padding: 10px 25px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.8rem;
  }
  
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
  
  .portfolio-item img {
    height: 250px;
  }
  
  .testimonial {
    padding: 20px;
  }
  
  .address {
    font-size: 1rem;
  }
}
