/* =========================
    ROOT / VARIÁVEIS
========================= */

:root{
 
  --font-title: "Long Shot", cursive;
  --font-body: "Poppins", sans-serif;

  --color-gray: #222222;
  --color-black: #111;
  --color-white: #fafafa;
  --color-pink: #ff4fa3;

  --shadow-strong: drop-shadow(6px 6px 0 rgba(0,0,0,0.4));
}


/* =========================
    FONTES
========================= */
@font-face {
  font-family: "Long Shot";
  src: url("../fonts/LongShot.eot");
  src: url("../fonts/LongShot.eot?#iefix") format("embedded-opentype"),
       url("../fonts/LongShot.woff2") format("woff2"),
       url("../fonts/LongShot.woff") format("woff"),
       url("../fonts/LongShot.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
/* =========================
    BASE
========================= */

body {
  background-image: url("../images/fundoo.png");
   background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  margin: 0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.logo-inicio{
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
}

h1, h3 {
  font-family: var(--font-title);
   font-synthesis: none;
}

h2, p{
  font-family: var(--font-body);
   font-synthesis: none;
}

h2{
  color :var(--color-white);
  font-size: 4vh;
   font-synthesis: none;
}
p {
  font-size: clamp(1rem, 2.5vh, 1.2rem);
  color: var(--color-white);
   font-synthesis: none;
}

a {
  text-decoration: none;
  color: var(--color-pink);
  font-size: 5vh;
   font-synthesis: none;
}

.link-voltar
{
    font-family: var(--font-title);
    filter: var(--shadow-strong);  
    font-weight: 300;
    font-size: clamp(2.5rem, 5vw, 8vh);
    
}

.link-contato
{
    font-family: var(--font-body);
    filter: var(--shadow-strong);
}

.menu-footer{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.header-rosa{
  font-family: var(--font-body);
  color: var(--color-pink);
}

.header{
  font-family: var(--font-body);
  color: var(--color-white);
}



/* =========================
   TITULO BASE ESTÁTICO
========================= */

.titulo-gradiente {
  display: inline-block;
  transform: skewX(6deg);
  font-weight: 700;
  font-size: clamp(2.5rem, 6vw, 10vh);

  background: linear-gradient(to bottom, var(--grad1), var(--grad2), var(--grad3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  -webkit-text-stroke: 1px var(--color-white);
   filter: var(--shadow-strong);
}


/*  VARIAÇÕES ESTÁTICAS */

.titulo-amarelo {
  --grad1: #e6e350;
  --grad2: #ff9a00;
  --grad3: #c05f05;
    font-size: clamp(4rem, 9vw, 14vh);
  -webkit-text-stroke: 2.2px var(--color-white);
}

.titulo-rosa {
  --grad1: #e6508a;
  --grad2: #b1114e;
  --grad3: #7e0437;
    font-size: clamp(2.5rem, 5vw, 8vh);
  -webkit-text-stroke: 1.4px var(--color-white);
}


/* =========================
    TITULO ANIMADO BASE
========================= */

.titulo-animado {
  display: inline-block;
  transform: skewX(6deg);
  font-size: clamp(3rem, 8vw, 12vh);
  background: linear-gradient(270deg, var(--grad1), var(--grad2), var(--grad3));
  background-size: 600% 600%;

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  -webkit-text-stroke: 1px var(--color-white);

  filter: var(--shadow-strong);

  animation: gradientMove 6s ease infinite;
}


/*  PERSONAGENS */

.titulo-cat {
  --grad1: #6290f3;
  --grad2: #1f4da3;
  --grad3: #0a3b7c;
}

.titulo-maira {
  --grad1: #742294;
  --grad2: #8a1d94;
  --grad3: #4c0c5c;
}

.titulo-talita {
  --grad1: #c2374a;
  --grad2: #8b1630;
  --grad3: #6e0819;
}


/* =========================
    ANIMAÇÃO GRADIENTE
========================= */

@keyframes gradientMove {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}


/* =========================
    TIMELINE
========================= */

.timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 0;
}

/* Linha central */
.timeline::after {
  content: "";
  position: absolute;
  width: 4px;
  background-color: var(--color-pink);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -2px;
}

/* Item */
.timeline-item {
  padding: 20px 40px;
  position: relative;
  width: 50%;
}

/* Alternância */
.timeline-item:nth-child(odd) {
  left: 0;
}

.timeline-item:nth-child(even) {
  left: 50%;
}

/* Bolinha */
.timeline-dot {
  position: absolute;
  width: 18px;
  height: 18px;
  right: -9px;
  background-color: var(--color-white);
  border: 4px solid var(--color-pink);
  top: 30px;
  border-radius: 50%;
  z-index: 1;
}

.timeline-item:nth-child(even) .timeline-dot {
  left: -9px;
}

/* Card */
.timeline-content {
  padding: 20px;
  background-color: var(--color-gray);
  color: var(--color-white);
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  margin-bottom: 40px;
}

.timeline-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: center;
}

.timeline-image img {
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.4);
}

.timeline-item:nth-child(even) .timeline-grid {
  grid-template-columns: 1fr 1fr;
}

.timeline-item:nth-child(even) .timeline-text {
  order: 2;
}

.timeline-item:nth-child(even) .timeline-image {
  order: 1;
}


/* =========================
   RESPONSIVO TIMELINE
========================= */

@media screen and (max-width: 768px) {

  .timeline::after {
    left: 20px;
  }

  .timeline-item {
    width: 100%;
    padding-left: 60px;
    padding-right: 20px;
    left: 0 !important;
  }

  .timeline-dot {
    left: 11px;
    right: auto;
  }

  .timeline-item:nth-child(even) .timeline-dot {
    left: 11px;
  }

  .timeline-grid {
    grid-template-columns: 1fr;
  }

}

  /* =========================
   RESPONSIVO GERAL
========================= */

@media (max-width: 1024px) {

  section {
    padding: 60px 20px;
  }

}

@media (max-width: 768px) {

  /* Remove inclinação no mobile */
  .titulo-animado,
  .titulo-gradiente {
    transform: skewX(0deg);
    text-align: center;
  }

  /* Ajuste geral de textos */
  p {
    font-size: 1rem;
  }

  a {
    font-size: 1rem;
  }

  h1 {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  h2 {
    font-size: clamp(1.3rem, 6vw, 2rem);
  }

  /* Centralizar títulos */
  h1, h2, h3 {
    text-align: center;
  }

}
