* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-purple: #8B3A8B;
  --secondary-purple: #A855A8;
  --bright-yellow: #FFD700;
  --accent-orange: #FF8C00;
  --text-dark: #333;
  --text-light: #fff;
  --bg-light: #f9f9f9;
  --border-radius: 15px;
  --transition: all 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-light);
}

/* ==================== HEADER E NAVEGAÇÃO ==================== */

header {
  background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-purple) 100%);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logos{
  width: 170px;
  height: auto;
  margin-bottom: -140px;
}

.logoss{
   width: 100px;
    margin-bottom: -40px;
}
.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--text-light);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}



.logo-emoji {
  font-size: 2rem;
}

nav {
  display: flex;
  gap: 2rem;
}

nav a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--bright-yellow);
  transition: width 0.3s ease;
}

nav a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ==================== HERO SECTION ==================== */

.hero {
  background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-purple) 100%);
  color: var(--text-light);
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 300px;
  height: 300px;
  background: rgba(255, 215, 0, 0.08);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(20px); }
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
}

.cta-button {
  display: inline-block;
  background-color: var(--bright-yellow);
  color: var(--primary-purple);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: var(--transition);
  border: 2px solid var(--bright-yellow);
  cursor: pointer;
  border: none;
}

.cta-button:hover {
  background-color: transparent;
  color: var(--bright-yellow);
  transform: scale(1.05);
}

/* ==================== SEÇÕES GERAIS ==================== */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 4rem 2rem;
}

section h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  text-align: center;
  color: var(--primary-purple);
  position: relative;
  padding-bottom: 1rem;
}

section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, var(--bright-yellow), var(--accent-orange));
  border-radius: 2px;
}

/* ==================== CARDS ==================== */

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.card {
  background: white;
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  text-align: center;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(139, 58, 139, 0.2);
}

.card h3 {
  color: var(--primary-purple);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.card p {
  color: #666;
  margin-bottom: 1.5rem;
}

.card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--border-radius);
  margin-bottom: 1rem;
}

/* ==================== GALERIA ==================== */

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius);
  aspect-ratio: 1;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(139, 58, 139, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay p {
  color: white;
  font-size: 1.2rem;
  font-weight: bold;
}

/* ==================== FORMULÁRIO ==================== */

.form-container {
  max-width: 600px;
  margin: 2rem auto;
  background: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--primary-purple);
  font-weight: 600;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-purple);
  box-shadow: 0 0 0 3px rgba(139, 58, 139, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-btn {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-purple) 100%);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: var(--transition);
}

.submit-btn:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 15px rgba(139, 58, 139, 0.3);
}

/* ==================== FOOTER ==================== */

footer {
  background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-purple) 100%);
  color: var(--text-light);
  padding: 3rem 2rem;
  text-align: center;
  margin-top: 4rem;
  font-size: 27px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  margin-bottom: 1rem;
  color: var(--bright-yellow);
}

.footer-section a {
  color: var(--text-light);
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
  transition: var(--transition);
}

.footer-section a:hover {
  color: var(--bright-yellow);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: rgba(255, 215, 0, 0.2);
  border-radius: 50%;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--bright-yellow);
  color: var(--primary-purple);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 2rem;
  text-align: center;
}

/* ==================== RESPONSIVIDADE ==================== */

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--primary-purple);
    padding: 1rem;
    gap: 0;
  }

  nav.active {
    display: flex;
  }

  nav a {
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  section h2 {
    font-size: 1.8rem;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .header-container {
    padding: 0 1rem;
  }

  .logo {
    font-size: 1.3rem;
  }

  .hero {
    padding: 2rem 1rem;
  }

  .hero h1 {
    font-size: 1.5rem;
  }

  section {
    padding: 2rem 1rem;
  }

  section h2 {
    font-size: 1.5rem;
  }

  .gallery {
    grid-template-columns: 1fr;
  }

  .form-container {
    padding: 1rem;
  }
}
 

.img87{
  width: 400px;
  height: auto;
}

.img1{
  width: 240px;
  height: 240px;
  border-radius: 100%;
  background-color: red;
  border: 2px solid #FFD700 ;
}

.img2{
    width: 350px;
    height: 350px;
    border-radius: 100%;
    background-color: red;
    border: 2px solid yellow;
    margin-left: -100px;
} 

.img3{
  width: 200px;
  height: 200px;
  border-radius: 100%;
  background-color: red;
  border: 2px solid #FF8C00;
  margin-top: -400px;
  margin-left: -80px;
}

.img4{
  width: 220px;
  height: 220px;
  border-radius: 100%;
  background-color: red;
  border: 2px solid #8B3A8B;
  margin-left: -100px;
  margin-top: -50px;
}

.marcar{
  margin-top: 20px;
  background-color: #8B3A8B;
  border: 4px solid white;
  border-radius: 1.2em;
  padding: 3%;
  color: white;
  zoom: 120%;
}

body, html{
  background-image: url('../imgs/back.jpg');
  background-position: 100%;
  background-repeat: no-repeat;
  background-color: transparent;
}

@media(max-width: 700px){


.img87{
  width: 210px;
  height: auto;
}


  .img1{
  width: 240px;
  height: 240px;
  border-radius: 100%;
  background-color: red;
  border: 2px solid #FFD700 ;
}

.img2{
    width: 350px;
    height: 350px;
    border-radius: 100%;
    background-color: red;
    border: 2px solid yellow;
    margin-left: -120px;
} 

.img3{
  width: 200px;
  height: 200px;
  border-radius: 100%;
  background-color: red;
  border: 2px solid #FF8C00;
  margin-top: 0px;
  margin-left: 0px;
}

.img4{
  width: 220px;
  height: 220px;
  border-radius: 100%;
  background-color: red;
  border: 2px solid #8B3A8B;
  margin-left: 1%;
  margin-top: 0px;
}

.marcar{
  margin-top: 20px;
  background-color: #8B3A8B;
  border: 5px solid white;
  border-radius: 0.9em;
  padding: 4%;
  color: white;
}

 
}


@media (max-width: 1194px) {
  .principal {
    zoom: 90%;
  }

  .principal > .row{
    margin-top: 100px;
  }
}

.img100{
  /* background-color: white; */
  width: 50%;
  border-radius: 1em;
}


.contatos{
  /* background-color: #8B3A8B; */
  font-family: 'Courier New', Courier, monospace;
  text-align: left;
  color: #ffffff;
}

.contatos a{
  text-align: left;
}

.contato{
  margin-top: 20px;
  background-color: #ff65c3;
  /* border: 4px solid white; */
  border-radius: 1.2em;
  border: none;
  padding-left: 3%;
  padding-right: 3%;
  padding-top: 1%;
  padding-bottom: 1%;
  color: white;
  zoom: 120%;
}

.contato:hover{
  opacity: 0.9;
}


.button:hover{
  opacity: 0.9;
}

.img101{
  /* background-color: white; */
  width: 400px;
  border-radius: 1em;
}

.img102{
  width: 430px;
}

.temas h2, .temas p{
  color: #000;
}

.temas h2, .temas p{
  color: #000;
}

.temas p{
  font-size: 26px;
}

.img201{
  width: 400px;
}
 
.img204{
  width: 270px;
  margin-left: -70px;
  height: auto;
}

.img205{
  margin-left: 1%;
  border-radius : 1em 0 1em 0;
  /* border: 1px solid red; */
}

.img206{
  margin-left: 1%;
  border-radius : 1em 0 1em 0;
  /* border: 1px solid red; */
}

@media (max-width: 1194px) {
  .principal {
    zoom: 90%;
  }

  .principal > .row{
    margin-top: 100px;
  }
}


.img300{
  width: 120%;
}

@media (max-width: 766px) {
  .img300{
    width: 100%;
  }
}
 