/* Estilos para o site de fotografia */
:root {
  --cor-primaria: #2c3e50;
  --cor-secundaria: #e74c3c;
  --cor-destaque: #3498db;
  --cor-fundo: #f9f9f9;
  --cor-texto: #333333;
  --cor-clara: #ecf0f1;
  --fonte-principal: 'Montserrat', sans-serif;
  --fonte-titulos: 'Playfair Display', serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--fonte-principal);
  color: var(--cor-texto);
  background-color: var(--cor-fundo);
  line-height: 1.6;
}

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

/* Cabeçalho */
header {
  background-color: var(--cor-primaria);
  color: white;
  padding: 20px 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo {
  font-family: var(--fonte-titulos);
  font-size: 2rem;
  font-weight: 700;
}

.logo span {
  color: var(--cor-secundaria);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.nav-links li {
  margin-left: 30px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--cor-secundaria);
}

.menu-toggle {
  display: none;
  cursor: pointer;
}

/* Hero Section */
.hero {
  height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  text-align: center;
  color: white;
  margin-top: 70px;
}

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

.hero h1 {
  font-family: var(--fonte-titulos);
  font-size: 3.5rem;
  margin-bottom: 20px;
}

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

.btn {
  display: inline-block;
  background-color: var(--cor-secundaria);
  color: white;
  padding: 12px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s;
}

.btn:hover {
  background-color: #c0392b;
}

/* Seções */
section {
  padding: 80px 0;
}

.section-title {
  font-family: var(--fonte-titulos);
  font-size: 2.5rem;
  margin-bottom: 50px;
  text-align: center;
  color: var(--cor-primaria);
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: var(--cor-secundaria);
  margin: 15px auto 0;
}

/* Sobre Fotografia */
.sobre {
  background-color: white;
}

.sobre-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.sobre-text {
  flex: 1;
  min-width: 300px;
  padding-right: 40px;
}

.sobre-image {
  flex: 1;
  min-width: 300px;
}

.sobre-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Cards para tópicos */
.topicos {
  background-color: var(--cor-clara);
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.card {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.card:hover {
  transform: translateY(-10px);
}

.card-image {
  height: 200px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.card:hover .card-image img {
  transform: scale(1.1);
}

.card-content {
  padding: 20px;
}

.card-title {
  font-family: var(--fonte-titulos);
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--cor-primaria);
}

/* Curso Destaque */
.curso {
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('../images/curso-bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: white;
  text-align: center;
}

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

.curso h2 {
  color: white;
}

.curso h2::after {
  background-color: white;
}

.curso p {
  margin-bottom: 30px;
  font-size: 1.1rem;
}

/* Contato */
.contato {
  background-color: white;
}

.contato-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.contato-form {
  flex: 1;
  min-width: 300px;
  padding-right: 30px;
}

.contato-social {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-family: var(--fonte-principal);
}

.form-group textarea {
  height: 150px;
  resize: vertical;
}

.social-links {
  display: flex;
  margin-top: 20px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: var(--cor-primaria);
  color: white;
  border-radius: 50%;
  margin-right: 15px;
  text-decoration: none;
  transition: background-color 0.3s;
}

.social-links a:hover {
  background-color: var(--cor-secundaria);
}

/* Rodapé */
footer {
  background-color: var(--cor-primaria);
  color: white;
  padding: 40px 0;
  text-align: center;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-section {
  flex: 1;
  min-width: 250px;
  margin-bottom: 20px;
}

.footer-section h3 {
  margin-bottom: 20px;
  font-family: var(--fonte-titulos);
}

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

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

.footer-section a {
  color: #ddd;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section a:hover {
  color: var(--cor-secundaria);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  margin-top: 20px;
  font-size: 0.9rem;
}

/* Responsividade */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: var(--cor-primaria);
    padding: 20px;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    margin: 10px 0;
  }

  .menu-toggle {
    display: block;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .sobre-text, .sobre-image {
    flex: 100%;
    padding-right: 0;
  }

  .sobre-image {
    margin-top: 30px;
  }

  .contato-form, .contato-social {
    flex: 100%;
    padding-right: 0;
  }

  .contato-social {
    margin-top: 40px;
  }
}

/* Animações */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 1s ease-out;
}
