/* =========================================================
   RESET
========================================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  background: #f8f6f3;
  color: #171717;
  line-height: 1.6;
  transition:
    background 0.3s ease,
    color 0.3s ease;
}

body.dark {
  background: #111111;
  color: #ffffff;
}

img {
  width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button,
input,
textarea,
select {
  font-family: inherit;
}

.container {
  width: min(1150px, 90%);
  margin: auto;
}

.section {
  padding: 110px 0;
}

/* =========================================================
   HEADER
========================================================= */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;

  background: rgba(248, 246, 243, 0.88);

  backdrop-filter: blur(15px);

  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.dark .header {
  background: rgba(17, 17, 17, 0.88);
  border-color: rgba(255, 255, 255, 0.08);
}

.nav-container {
  height: 80px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -1px;
}

.logo span {
  color: #d96c91;
}

.nav {
  display: flex;
  gap: 28px;
}

.nav a {
  font-size: 12px;
  font-weight: 600;
  transition: 0.3s;
}

.nav a:hover {
  color: #d96c91;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.theme-btn,
.menu-btn {
  border: none;
  background: transparent;

  width: 40px;
  height: 40px;

  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 17px;
}

.menu-btn {
  display: none;
}

/* =========================================================
   HERO
========================================================= */

.hero {
  min-height: 100vh;

  display: flex;
  align-items: center;

  position: relative;
  overflow: hidden;

  padding-top: 80px;
}

.hero-background {
  position: absolute;

  width: 600px;
  height: 600px;

  border-radius: 50%;

  background: #f0c9d7;

  filter: blur(100px);

  opacity: 0.5;

  right: -150px;
  top: 100px;

  z-index: -1;
}

.hero-container {
  display: grid;

  grid-template-columns: 1fr 0.8fr;

  gap: 70px;

  align-items: center;
}

.hero-tag,
.section-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;

  color: #d96c91;
}

.hero-tag {
  display: flex;
  align-items: center;
  gap: 8px;

  margin-bottom: 20px;
}

.hero-tag i {
  font-size: 7px;
}

.hero h1 {
  font-family: "Playfair Display", serif;

  font-size: clamp(65px, 8vw, 110px);

  line-height: 0.95;

  margin-bottom: 15px;
}

.hero h2 {
  font-size: 25px;
  font-weight: 500;

  margin-bottom: 25px;
}

.hero h2 span {
  color: #d96c91;
}

.hero-content > p {
  max-width: 520px;

  color: #666;

  margin-bottom: 35px;
}

.dark .hero-content > p {
  color: #aaa;
}

.hero-buttons {
  display: flex;
  gap: 12px;

  flex-wrap: wrap;
}

.btn {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 10px;

  padding: 15px 25px;

  border-radius: 50px;

  font-size: 12px;
  font-weight: 700;

  transition: 0.3s;

  border: none;

  cursor: pointer;
}

.btn-primary {
  background: #171717;
  color: white;
}

.btn-primary:hover {
  background: #d96c91;
  transform: translateY(-3px);
}

.btn-outline {
  border: 1px solid #171717;
}

.dark .btn-outline {
  border-color: white;
}

.btn-outline:hover {
  background: #171717;
  color: white;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 35px;
}

.social-links a {
  width: 42px;
  height: 42px;

  border: 1px solid #ddd;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  transition: 0.3s;
}

.social-links a:hover {
  background: #d96c91;
  color: white;
  border-color: #d96c91;
  transform: translateY(-3px);
}

.hero-image {
  position: relative;
  max-width: 450px;

  margin-left: auto;
}

.hero-image img {
  height: 580px;

  object-fit: cover;

  border-radius: 250px 250px 20px 20px;

  position: relative;
  z-index: 2;
}

.image-decoration {
  position: absolute;

  width: 100%;
  height: 100%;

  border: 2px solid #d96c91;

  border-radius: 250px 250px 20px 20px;

  top: 20px;
  left: 20px;
}

.floating-card {
  position: absolute;

  bottom: 30px;
  left: -40px;

  background: white;

  padding: 20px 25px;

  border-radius: 15px;

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);

  z-index: 5;
}

.dark .floating-card {
  background: #222;
}

.floating-card strong {
  display: block;
  font-size: 25px;
}

.floating-card span {
  font-size: 11px;
  color: #777;
}

/* =========================================================
   CABEÇALHOS
========================================================= */

.section-header {
  margin-bottom: 55px;
}

.section-header.center {
  text-align: center;

  max-width: 650px;

  margin-left: auto;
  margin-right: auto;
}

.section-header h2 {
  font-family: "Playfair Display", serif;

  font-size: clamp(40px, 5vw, 65px);

  line-height: 1.1;

  margin: 12px 0 20px;
}

.section-header h2 span {
  color: #d96c91;
}

.section-header p {
  color: #777;
}

.section-header.center p {
  margin: auto;
}

/* =========================================================
   NÚMEROS
========================================================= */

.numbers {
  background: #171717;
  color: white;
}

.numbers .section-header p {
  color: #aaa;
}

.numbers-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 20px;
}

.number-card {
  padding: 35px 20px;

  text-align: center;

  border: 1px solid #333;

  border-radius: 15px;

  transition: 0.3s;
}

.number-card:hover {
  transform: translateY(-8px);
  border-color: #d96c91;
}

.number-card i {
  color: #d96c91;

  font-size: 25px;

  margin-bottom: 20px;
}

.number-card strong {
  display: block;

  font-size: 42px;

  line-height: 1;
}

.number-card span {
  font-size: 12px;
  color: #aaa;
}

/* =========================================================
   MEDIA KIT
========================================================= */

.media-kit {
  background: #f0ebe7;
}

.dark .media-kit {
  background: #191919;
}

.media-kit-container {
  display: grid;

  grid-template-columns: 1fr 0.8fr;

  gap: 100px;

  align-items: center;
}

.media-kit-content h2 {
  font-family: "Playfair Display", serif;

  font-size: clamp(45px, 5vw, 65px);

  line-height: 1.1;

  margin: 15px 0 25px;
}

.media-kit-content h2 span {
  color: #d96c91;
}

.media-kit-content > p {
  color: #777;

  max-width: 520px;

  margin-bottom: 30px;
}

.dark .media-kit-content > p {
  color: #aaa;
}

.media-kit-items {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 15px;

  margin-bottom: 35px;
}

.media-kit-items div {
  display: flex;

  align-items: center;

  gap: 12px;

  font-size: 12px;

  font-weight: 700;
}

.media-kit-items i {
  width: 40px;
  height: 40px;

  flex-shrink: 0;

  border-radius: 50%;

  background: #f8dce6;

  color: #d96c91;

  display: flex;

  align-items: center;
  justify-content: center;
}

.media-kit-btn {
  display: inline-flex;
}

.download-link {
  display: inline-flex;

  align-items: center;

  gap: 7px;

  margin-left: 18px;

  color: #d96c91;

  font-size: 12px;

  font-weight: 700;
}

.download-link:hover {
  text-decoration: underline;
}

/* PREVIEW */

.media-kit-preview {
  display: flex;

  justify-content: center;

  perspective: 1000px;
}

.pdf-card {
  width: 350px;

  min-height: 480px;

  background: white;

  color: #171717;

  border-radius: 8px;

  padding: 25px;

  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.18);

  transform: rotate(3deg);

  transition: 0.5s;

  position: relative;
}

.pdf-card:hover {
  transform: rotate(0deg) translateY(-10px);
}

.pdf-top {
  display: flex;

  justify-content: space-between;

  align-items: center;

  font-size: 10px;

  font-weight: 800;

  letter-spacing: 2px;

  margin-bottom: 20px;
}

.pdf-top i {
  color: #d96c91;

  font-size: 22px;
}

.pdf-photo {
  height: 250px;

  overflow: hidden;

  border-radius: 5px;

  margin-bottom: 20px;
}

.pdf-photo img {
  height: 100%;

  object-fit: cover;
}

.pdf-info strong {
  display: block;

  font-size: 24px;

  letter-spacing: 1px;
}

.pdf-info span {
  display: block;

  color: #777;

  font-size: 10px;

  margin-top: 5px;
}

.pdf-stats {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 10px;

  margin-top: 25px;

  padding-top: 20px;

  border-top: 1px solid #eee;
}

.pdf-stats div {
  text-align: center;
}

.pdf-stats strong {
  display: block;

  font-size: 18px;
}

.pdf-stats span {
  font-size: 8px;

  color: #888;
}

/* =========================================================
   SOBRE
========================================================= */

.about-grid {
  display: grid;

  grid-template-columns: 0.9fr 1fr;

  gap: 100px;

  align-items: center;
}

.about-image {
  position: relative;
}

.about-image img {
  height: 550px;

  object-fit: cover;

  border-radius: 20px;
}

.experience-card {
  position: absolute;

  right: -30px;
  bottom: 30px;

  background: #171717;

  color: white;

  padding: 25px;

  border-radius: 15px;
}

.experience-card strong {
  display: block;

  font-size: 35px;

  color: #d96c91;
}

.experience-card span {
  font-size: 11px;
}

.about-content h2 {
  font-family: "Playfair Display", serif;

  font-size: 60px;

  line-height: 1.1;

  margin: 15px 0 25px;
}

.about-content h2 span {
  color: #d96c91;
}

.about-content p {
  color: #777;

  margin-bottom: 18px;
}

.dark .about-content p {
  color: #aaa;
}

.about-list {
  display: grid;

  gap: 12px;

  margin-top: 30px;
}

.about-list div {
  display: flex;

  align-items: center;

  gap: 12px;

  font-weight: 600;

  font-size: 13px;
}

.about-list i {
  color: #d96c91;
}

/* =========================================================
   PÚBLICO
========================================================= */

.audience {
  background: #f0ebe7;
}

.dark .audience {
  background: #191919;
}

.audience-grid {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 25px;
}

.audience-card {
  background: white;

  padding: 40px;

  border-radius: 20px;
}

.dark .audience-card {
  background: #222;
}

.audience-icon {
  width: 50px;
  height: 50px;

  border-radius: 50%;

  background: #f8dce6;

  color: #d96c91;

  display: flex;

  align-items: center;
  justify-content: center;

  margin-bottom: 20px;
}

.audience-card h3 {
  margin-bottom: 30px;
}

.bar-item {
  margin-bottom: 20px;
}

.bar-info {
  display: flex;

  justify-content: space-between;

  font-size: 12px;

  margin-bottom: 7px;
}

.bar {
  width: 100%;

  height: 7px;

  background: #eee;

  border-radius: 20px;

  overflow: hidden;
}

.bar span {
  display: block;

  height: 100%;

  background: #d96c91;

  border-radius: 20px;
}

/* =========================================================
   MARCAS
========================================================= */

.brands-grid {
  display: grid;

  grid-template-columns: repeat(6, 1fr);

  gap: 15px;
}

.brand {
  height: 100px;

  border: 1px solid #ddd;

  border-radius: 10px;

  display: flex;

  align-items: center;
  justify-content: center;

  font-size: 12px;

  font-weight: 800;

  letter-spacing: 1px;

  color: #555;

  transition: 0.3s;
}

.dark .brand {
  border-color: #333;

  color: #aaa;
}

.brand:hover {
  border-color: #d96c91;

  color: #d96c91;

  transform: translateY(-5px);
}

/* =========================================================
   PORTFÓLIO
========================================================= */

.portfolio {
  background: #171717;

  color: white;
}

.portfolio-grid {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 20px;
}

.portfolio-card {
  height: 500px;

  position: relative;

  overflow: hidden;

  border-radius: 15px;
}

.portfolio-card img {
  height: 100%;

  object-fit: cover;

  transition: 0.5s;
}

.portfolio-card:hover img {
  transform: scale(1.08);
}

.portfolio-overlay {
  position: absolute;

  inset: 0;

  display: flex;

  flex-direction: column;

  justify-content: flex-end;

  padding: 35px;

  background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
}

.portfolio-overlay span {
  font-size: 10px;

  letter-spacing: 2px;

  color: #f4a9c3;
}

.portfolio-overlay h3 {
  font-size: 25px;

  margin: 8px 0 15px;
}

.portfolio-overlay a {
  font-size: 12px;

  font-weight: 700;
}

/* =========================================================
   SERVIÇOS
========================================================= */

.services-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 20px;
}

.service-card {
  padding: 35px;

  border: 1px solid #ddd;

  border-radius: 15px;

  transition: 0.3s;
}

.dark .service-card {
  border-color: #333;
}

.service-card:hover {
  transform: translateY(-7px);

  border-color: #d96c91;
}

.service-card > i {
  font-size: 30px;

  color: #d96c91;

  margin-bottom: 25px;
}

.service-card h3 {
  margin-bottom: 12px;
}

.service-card p {
  color: #777;

  font-size: 13px;
}

.dark .service-card p {
  color: #aaa;
}

/* =========================================================
   DEPOIMENTOS
========================================================= */

.testimonials {
  background: #f0ebe7;
}

.dark .testimonials {
  background: #191919;
}

.testimonial-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 20px;
}

.testimonial-card {
  background: white;

  padding: 35px;

  border-radius: 15px;
}

.dark .testimonial-card {
  background: #222;
}

.stars {
  color: #d96c91;

  margin-bottom: 20px;
}

.testimonial-card p {
  color: #666;

  font-size: 13px;

  margin-bottom: 30px;
}

.dark .testimonial-card p {
  color: #aaa;
}

.testimonial-author {
  display: flex;

  align-items: center;

  gap: 12px;
}

.author-avatar {
  width: 45px;
  height: 45px;

  background: #d96c91;

  color: white;

  border-radius: 50%;

  display: flex;

  align-items: center;
  justify-content: center;

  font-weight: 700;
}

.testimonial-author strong {
  display: block;

  font-size: 12px;
}

.testimonial-author span {
  display: block;

  color: #888;

  font-size: 10px;
}

/* =========================================================
   CONTATO
========================================================= */

.contact {
  background: #d96c91;

  color: white;
}

.contact-grid {
  display: grid;

  grid-template-columns: 0.8fr 1fr;

  gap: 100px;

  align-items: center;
}

.contact .section-label {
  color: white;
}

.contact-content h2 {
  font-family: "Playfair Display", serif;

  font-size: 65px;

  line-height: 1.05;

  margin: 15px 0 25px;
}

.contact-content h2 span {
  color: #171717;
}

.contact-content > p {
  max-width: 450px;

  opacity: 0.9;
}

.contact-info {
  margin-top: 35px;

  display: grid;

  gap: 15px;
}

.contact-info a {
  display: flex;

  align-items: center;

  gap: 12px;

  font-size: 13px;

  font-weight: 600;
}

.contact-info i {
  width: 40px;
  height: 40px;

  background: rgba(255, 255, 255, 0.2);

  border-radius: 50%;

  display: flex;

  align-items: center;
  justify-content: center;
}

.contact-form {
  background: white;

  padding: 40px;

  border-radius: 20px;

  color: #171717;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;

  font-size: 11px;

  font-weight: 700;

  margin-bottom: 7px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;

  border: 1px solid #ddd;

  padding: 13px 15px;

  border-radius: 8px;

  outline: none;

  font-size: 12px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: #d96c91;
}

.contact-form .btn {
  width: 100%;
}

/* =========================================================
   FOOTER
========================================================= */

.footer {
  background: #111;

  color: white;

  padding-top: 50px;
}

.footer-content {
  display: flex;

  align-items: center;
  justify-content: space-between;

  padding-bottom: 40px;
}

.footer p {
  color: #777;

  font-size: 11px;

  margin-top: 5px;
}

.footer-social {
  display: flex;

  gap: 10px;
}

.footer-social a {
  width: 40px;
  height: 40px;

  border: 1px solid #333;

  border-radius: 50%;

  display: flex;

  align-items: center;
  justify-content: center;
}

.footer-social a:hover {
  background: #d96c91;

  border-color: #d96c91;
}

.footer-bottom {
  border-top: 1px solid #222;

  padding: 20px 5%;

  display: flex;

  justify-content: space-between;
}

/* =========================================================
   VOLTAR AO TOPO
========================================================= */

#back-to-top {
  position: fixed;

  right: 25px;
  bottom: 25px;

  width: 45px;
  height: 45px;

  border: none;

  border-radius: 50%;

  background: #d96c91;

  color: white;

  cursor: pointer;

  opacity: 0;

  visibility: hidden;

  transition: 0.3s;

  z-index: 999;
}

#back-to-top.show {
  opacity: 1;

  visibility: visible;
}

/* =========================================================
   ANIMAÇÃO
========================================================= */

.reveal {
  opacity: 0;

  transform: translateY(40px);

  transition: 0.8s ease;
}

.reveal.active {
  opacity: 1;

  transform: translateY(0);
}

/* =========================================================
   RESPONSIVO - TABLET
========================================================= */

@media (max-width: 1000px) {
  .nav {
    gap: 18px;
  }

  .nav a {
    font-size: 11px;
  }

  .hero-container {
    gap: 40px;
  }

  .about-grid,
  .media-kit-container {
    gap: 60px;
  }
}

/* =========================================================
   RESPONSIVO - 900PX
========================================================= */

@media (max-width: 900px) {
  .nav {
    position: absolute;

    top: 80px;
    left: 0;

    width: 100%;

    background: white;

    display: none;

    flex-direction: column;

    padding: 25px;

    gap: 20px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  }

  .dark .nav {
    background: #181818;
  }

  .nav.active {
    display: flex;
  }

  .menu-btn {
    display: flex;
  }

  .hero-container {
    grid-template-columns: 1fr;

    padding-top: 50px;
  }

  .hero-content {
    text-align: center;
  }

  .hero-tag {
    justify-content: center;
  }

  .hero-content > p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons,
  .social-links {
    justify-content: center;
  }

  .hero-image {
    margin: 30px auto 0;
  }

  .numbers-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .media-kit-container {
    grid-template-columns: 1fr;

    gap: 60px;
  }

  .media-kit-content {
    text-align: center;
  }

  .media-kit-content > p {
    margin-left: auto;
    margin-right: auto;
  }

  .media-kit-items {
    text-align: left;
  }

  .about-grid {
    grid-template-columns: 1fr;

    gap: 60px;
  }

  .about-content {
    text-align: center;
  }

  .about-list {
    justify-content: center;
  }

  .audience-grid {
    grid-template-columns: 1fr;
  }

  .brands-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;

    gap: 50px;
  }
}

/* =========================================================
   RESPONSIVO - CELULAR
========================================================= */

@media (max-width: 600px) {
  .section {
    padding: 80px 0;
  }

  .hero h1 {
    font-size: 60px;
  }

  .hero h2 {
    font-size: 20px;
  }

  .hero-image img {
    height: 450px;
  }

  .floating-card {
    left: 10px;
  }

  .numbers-grid {
    grid-template-columns: 1fr 1fr;
  }

  .number-card strong {
    font-size: 30px;
  }

  .media-kit-items {
    grid-template-columns: 1fr;
  }

  .download-link {
    margin-left: 0;

    margin-top: 18px;
  }

  .pdf-card {
    width: 300px;

    min-height: 430px;

    transform: none;
  }

  .pdf-photo {
    height: 210px;
  }

  .about-image img {
    height: 430px;
  }

  .about-content h2,
  .contact-content h2 {
    font-size: 45px;
  }

  .brands-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-card {
    height: 450px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 25px;
  }

  .footer-content,
  .footer-bottom {
    flex-direction: column;

    gap: 20px;

    text-align: center;
  }
}
