:root {
  --color-white: #ffffff;
  --color-black: #000000;

  --color-primary: #c75b7a;
  --color-primary-light: #df7f9c;
  --color-primary-dark: #9f3f5c;

  --color-pink: #ff5f7a;
  --color-pink-dark: #ff3d6f;
  --color-pink-soft: #ff7a7a;

  --color-purple: #6d49ff;
  --color-yellow: #ffb300;

  --color-text: #2d2d2d;
  --color-text-soft: #5d5d5d;
  --color-text-muted: #666666;

  --color-border: rgba(0, 0, 0, 0.08);
  --color-glass: rgba(255, 255, 255, 0.35);

  --shadow-sm: 0 5px 15px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 10px 25px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.15);

  --transition-fast: 0.3s ease;
  --transition-normal: 0.4s ease;
  --transition-slow: 0.5s ease;

  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --radius-xl: 35px;
  --radius-full: 999px;

  --font-title: Nexa;
  --font-main: Poppins;
  --font-medium: Poppins-medium;

  --gradient-primary: linear-gradient(135deg, #ffb347, #ff5f7a);

  --gradient-secondary: linear-gradient(135deg, #ff6a7d, #ff3d72);

  --gradient-footer: linear-gradient(135deg, #ff7b52, #ff4f7b);
}

@font-face {
  font-family: Coolvetica;
  src: url(fontes/CoolveticaRg.otf);
}

@font-face {
  font-family: "Nexa";
  src: url("fontes/Nexa-Heavy.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: Poppins;
  src: url(fontes/Poppins-Regular.ttf);
}

@font-face {
  font-family: Poppins-medium;
  src: url(fontes/Poppins-Medium.ttf);
}

* {
  box-sizing: border-box;
  -webkit-user-drag: none;
  text-decoration: none;
  user-select: none;
  margin: 0;
  padding: 0;
}

html {
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE e Edge */
}

@keyframes shine {
  100% {
    left: 150%;
  }
}

@keyframes typing {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

@keyframes blink {
  50% {
    border-color: transparent;
  }
}

@keyframes float-img {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(2%);
  }
}

@keyframes borderRun {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 300% 50%;
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes floatImage {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-12px);
  }
}

.hero_image,
.projects-cards,
.feedback-card {
  will-change: transform;
}

.hero,
.contact-section,
.feedback-section{
  min-height:100dvh;
}

html,
body {
  width: 100%;
  min-height: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

header {
  position: sticky;
  top: 0;
  width: 100%;
  background: rgb(255, 165, 0);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0px -4px 10px 1px rgb(102, 102, 102);
  overflow: hidden;
  z-index: 10;
}

header * {
  position: relative;
  z-index: 2;
}

header::after {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 50%;
  height: 100%;
  pointer-events: none;
  z-index: 0;

  background: linear-gradient(120deg,
      transparent 0%,
      rgba(245, 121, 38, 0.75) 30%,
      rgba(245, 121, 38, 0.75) 50%,
      rgba(245, 121, 38, 0.75) 70%,
      transparent 100%);

  transform: skewX(-25deg);
  animation: shine 3s infinite linear;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-family: Poppins;
  min-height: 80px;
  height: auto;
  padding: 14px 2%;
}


.navbar_brand {
  display: flex;
  align-items: center;
  width: fit-content;
  margin-left: 30px;
}

.navbar_logo {
  font-size: clamp(1rem, 1.3vw, 2vw);
  color: #ffffff;
  font-family: Poppins;
  letter-spacing: 0.5px;
}

.navbar_actions {
  display: flex;
  align-items: center;
  margin-right: 30px;
  text-transform: capitalize;
  gap: 2rem;
}

.navbar_actions a {
  color: #ffffff;
  font-size: clamp(2.5w, 0.9vw, 1.1vw);
  position: relative;
  transition: 0.3s;
  font-weight: 800;
}

.navbar_links a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -6px;
  left: 0;
  background: var(--color-pink);
  transition: 0.3s ease;
}

.navbar_links a:hover {
  color: var(--color-pink);
}

.navbar_links a:hover::after {
  width: 100%;
}

.navbar_links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2rem);
  white-space: nowrap;
}

.navbar_links a {
  text-decoration: none;
  color: rgb(255, 255, 255);
  font-size: clamp(1.2vw, 1vw, 1.2vw);
  flex-shrink: 1;
  display: flex;
}

.navbar_cta {
  background: linear-gradient(135deg, #f787a7, #df7f9c);
  color: white;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: bold;
  letter-spacing: 0.5px;
  transition: all 0.25s ease;
}

.navbar_cta:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-sm);
  color: rgb(255, 209, 2);
}

main {
  flex: 1;
}

.hero {
  background: url(background/background\ \(2\).png) no-repeat center;
  background-size: cover;
  display: flex;
  min-height: auto;
  padding: 5%;
  overflow-x: hidden;
  justify-content: space-between;
  flex-wrap: wrap;
}

.hero_content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-family: Poppins;
  min-width: 15vw;
}

.hero_content .hero_description,
.hero_intro,
.hero_heading {
  min-width: 0;
  width: 100%;
}

.hero_content > * {
  padding: 10px;
  color: rgb(241, 241, 241);
}

.hero_content .hero_description {
  max-width: 700px;
  width: 100%;
  line-height: 1.7;
  font-size: clamp(0.90rem, 1vw, 2rem);
  font-family: Poppins;
}

.hero_intro {
  display: flex;
  font-family: Poppins;
  width: 100%;
  justify-content: start;
}

.hero_intro p {
  font-size: clamp(0.6rem, 3vw, 4rem);
}

.hero_intro span {
  color: var(--color-pink);
}

.hero_heading {
  font-family: Nexa;
  text-align: left;
  align-items: flex-start;
}

.hero_heading h1 {
  display: inline-block;
  overflow: hidden;
  border-right: 2px solid rgb(124, 0, 0);
  color: var(--color-pink);
  font-size: clamp(3rem, 5vw, 8rem);
  line-height: 1;
  white-space: normal;
  word-break: break-word;
  width: fit-content;
  max-width: 100%;
}

.hero_subtitle p {
  font-size: clamp(1rem, 2rem, 3rem);
  color: var(--color-pink-dark);
  max-width: 100%;
}

.typing {
  font-size: 5.5rem;
  color: white;
  border-right: 3px solid red;
  overflow: hidden;
  display: inline-block;
  min-height: 1.2em;
  line-height: 1.5;
  border-right: 3px solid red;
  width: fit-content;
  animation: blink 1s infinite;
}

.hero_content>* {
  padding: 0px;
  color: rgb(241, 241, 241);
}

.social_links {
  display: flex;
  gap: 2rem;
  margin-top: 1.5rem;
}

.social_links button {
  border: none;
  background: none;
  cursor: pointer;
}

.social_links i {
  font-size: 3rem;
  color: rgb(245, 79, 79);
  transition: 0.3s;
  font-weight: 300;
  background-color: white;
  border-radius: 50%;
  padding: 7px;
}

.social_links i:hover {
  transform: scale(1.1);
}

.hero_features {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
  background: rgba(255, 255, 255, 0.92);
  padding: 1.2rem;
  border-radius: 1rem;
}

.feature_card {
  display: flex;
  gap: 0.8rem;
  width: 100%;
  min-width: 0;
  align-items: center;
}

.feature_icon {
  width: clamp(38px, 4vw, 52px);
  height: clamp(38px, 4vw, 52px);
  flex-shrink: 0;
}

.feature_icon img {
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: contain;
  flex-shrink: 1;
}

.feature_content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature_content h4 {
  margin: 0;
  font-size: clamp(0.6rem, 1vw, 2rem);
  font-family: Poppins;
  color: var(--color-pink-dark);
  font-weight: 800;
  letter-spacing: 5%;
}

.feature_content p {
  margin-top: 0.25rem;
  font-size: clamp(0.6rem, 0.8vw, 2rem);
  font-family: Poppins;
  color: black;
  line-height: 1.3;
  letter-spacing: 2%;
}

.feature_card {
  position: relative;
}

.feature_card::after {
  content: "";
  position: absolute;
  right: -0.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 60%;
  background: rgb(255, 162, 162);
}

.feature_card:last-child::after {
  display: none;
}

.feature_card:nth-child(2)::after {
  display: none;
}

.hero_actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3vw;
  margin-top: 1.5rem;
  width: fit-content;
  flex-wrap: wrap;
}

.hero_actions a {
  position: relative;
  padding: 1rem 3rem;
  text-align: center;
  text-decoration: none;
  color: white;
  font-family: Poppins-medium;
  font-weight: 600;
  border-radius: 12px;
  overflow: hidden;
  z-index: 1;
  background: var(--color-pink-dark);
  transition: 0.5s;
}

.hero_actions a::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  padding: 2px;
  background: linear-gradient(90deg,
      transparent 0%,
      transparent 35%,
      var(--color-primary-light) 50%,
      var(--color-primary) 60%,
      transparent 75%,
      transparent 100%);

  background-size: 300% 300%;
  animation: borderRun 3s linear infinite;

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);

  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.hero_actions a:nth-child(2) {
  background: transparent;
}

.hero_actions a:nth-child(2)::after {
  background: transparent;
  border: var(--color-pink-dark) 1px solid;
}

.hero_actions a::after {
  content: "";
  position: absolute;
  inset: 2px;
  background: var(--color-pink-dark);
  border-radius: 10px;
  z-index: -1;
}

.hero_actions a:hover {
  transform: scale(1.1);
  box-shadow: 0px 0px 1rem red;
}

.hero_image {
  width: clamp(260px, 28vw, 520px);
  height: clamp(260px, 28vw, 520px);
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  box-shadow:
    0 0 100px rgba(209, 3, 3, 0.4),
    0 0 100px rgba(255, 0, 0, 0.2);
  border: solid rgb(252, 145, 44);
  animation: float-img 7s infinite ease-in-out;
}

.hero_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.separtion-line {
  width: 100%;
  height: 1vh;
  background-color: var(--color-pink-dark);
  border: none;
}

#about-me {
  width: 100%;
  min-height: 100dvh;
  padding: clamp(4rem, 6vw, 8rem) clamp(4%, 5vw, 8%);
  background-image: url("./background/page2.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  justify-content: center;
}

#about-me::before {
  content: "";
  position: absolute;
  width: clamp(260px, 30vw, 500px);
  height: clamp(260px, 30vw, 500px);
  background: rgba(255, 255, 255, 0.12);
  filter: blur(120px);
  top: -100px;
  left: -100px;
  z-index: 1;
}

#about-me::after {
  content: "";
  position: absolute;
  width: clamp(240px, 28vw, 450px);
  height: clamp(240px, 28vw, 450px);
  background: rgba(255, 95, 122, 0.12);
  filter: blur(120px);
  bottom: -120px;
  right: -100px;
  z-index: 1;
}

.about-me-container {
  width: 100%;
  max-width: 1600px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: clamp(2rem, 4vw, 5rem);
  position: relative;
  z-index: 2;
}

.about-me-heading {
  width: 50%;
  min-width: 320px;
}

.section-tag {
  display: inline-block;
  padding: clamp(10px, 1vw, 14px) clamp(18px, 1.5vw, 24px);
  background: rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  backdrop-filter: blur(10px);
  font-size: clamp(0.75rem, 0.9vw, 1rem);
  letter-spacing: 2px;
  color: var(--color-pink-dark);
  font-weight: 900;
  font-family: Poppins;
}

.about-me-heading h1 {
  font-size: clamp(2.8rem, 3.2vw, 5.5rem);
  line-height: 1.05;
  color: var(--color-pink);
  margin-top: clamp(18px, 2vw, 28px);
  margin-bottom: clamp(20px, 2vw, 30px);
  max-width: 700px;
  font-family: Nexa;
  letter-spacing: -2px;
  text-align: start;
}

.line {
  width: clamp(60px, 5vw, 90px);
  height: clamp(4px, 0.4vw, 6px);
  background: linear-gradient(90deg, #ffb347, #ff5f7a);
  border-radius: 999px;
  margin-bottom: clamp(25px, 3vw, 35px);
}

.about-me-heading p {
  font-size: clamp(1rem, 1.1vw, 2rem);
  line-height: 2;
  font-weight: 700;
  color: var(--color-white);
  max-width: 640px;
  margin-bottom: clamp(18px, 2vw, 24px);
  font-family: Poppins;
}

.mission-card {
  margin-top: clamp(30px, 4vw, 50px);
  background: var(--color-white);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: clamp(22px, 2vw, 30px);
  padding: clamp(22px, 2vw, 32px);
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 24px);
  max-width: 650px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: 0.4s ease;
}

.mission-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
}

.mission-icon {
  width: clamp(70px, 6vw, 90px);
  height: clamp(70px, 6vw, 90px);
  min-width: clamp(70px, 6vw, 90px);
  border-radius: 50%;
  background: linear-gradient(135deg, #ffb347, #ff5f7a);
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 10px 25px rgba(255, 95, 122, 0.35);
}

.mission-icon img {
  width: 100%;
  object-fit: contain;
  padding: 10%;
  border-radius: 50%;
}

.mission-text h3 {
  font-size: clamp(1.5rem, 2vw, 2rem);
  color: var(--color-pink-dark);
  margin-bottom: 12px;
  font-family: Nexa;
}

.mission-text p {
  margin: 0;
  color: var(--color-text-muted);
  font-family: Poppins;
  line-height: 1.9;
  font-size: clamp(0.92rem, 0.95vw, 1rem);
}

.principles-container {
  width: 50%;
  min-width: 320px;
}

.principles-container .section-tag {
  margin-bottom: clamp(25px, 3vw, 40px);
}

.principle-item-grid {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(2, minmax(240px, 1fr));
  gap: clamp(1rem, 2vw, 2rem);
}

.principle-item {
  display: flex;
  width: 100%;
  min-height: clamp(260px, 24vw, 320px);
  gap: 1rem;
  background-color: var(--color-white);
  border-radius: 1rem;
  flex-direction: column;
  transition: 0.4s;
  padding: clamp(18px, 1.5vw, 24px);
}

.principle-item:hover {
  background: rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(10px);
  transform: translateY(-8px);
}

.principle-item i {
  padding: 0.9rem;
  width: clamp(70px, 7vw, 120px);
  height: clamp(70px, 7vw, 120px);
  font-size: clamp(2rem, 4vw, 5rem);
  border-radius: 24px;
  background: linear-gradient(135deg, #ffb347, #ff5f7a);
  box-shadow: 0 10px 20px rgba(255, 95, 122, 0.25);
  align-self: flex-start;
  text-align: center;
  justify-content: center;
  color: var(--color-white);
  margin-top: 10px;
}

.principle-item-text {
  gap: 1rem;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.principle-item .brand-line {
  width: clamp(50px, 20%, 80px);
  height: 5px;
  border-radius: 1rem;
}

.principle-item h3 {
  font-size: clamp(1.2rem, 1.5vw, 2rem);
  color: var(--color-pink);
  font-family: Nexa;
}

.principle-item p {
  font-size: clamp(0.9rem, 0.95vw, 1rem);
  line-height: 1.8;
  color: var(--color-pink);
  font-weight: 700;
  font-family: Poppins;
  letter-spacing: 3%;
}

.works {
  width: 100%;
  min-height: 100dvh;
  padding: clamp(40px, 6vw, 80px) 6% clamp(60px, 8vw, 100px); 
  background: url(background/page3.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  position: relative;
}

.works-projects, 
.works-footer,
.works-header {
  width: 100%;
  max-width: 1300px; 
  margin-left: auto;
  margin-right: auto;
}

.works-brand {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
  min-width: 100%;
  justify-content: center;
}

.brand-line {
  width: 170px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ff9d3f);
}

.brand-icon {
  color: #ff9d3f;
  font-size: 1.7rem;
}

.works-heading {
  font-size: clamp(2.2rem, 5vw, 3.5rem); 
  color: var(--color-pink-dark);
  font-family: Nexa;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -2px;
  text-align: center;
}

.works-intro {
  min-width: 100%;
  font-size: clamp(1rem, 1.2vw, 1.3rem);
  line-height: 1.8;
  color: var(--color-primary-light);
  font-weight: 500;
  font-family: Poppins;
  text-align: center;
  justify-content: center;
}

.works-projects {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
  gap: 30px;
  margin-bottom: 50px;
}

.projects-cards {
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 35px;
  padding: 55px 35px;
  min-height: 500px;
  transition: 0.5s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.projects-cards:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.card-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.card-image img {
  width: 100%;
  border-radius: 50%;
}

.card-image::before {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 3px solid;
  border-left-color: transparent;
  transform: rotate(30deg);
  animation: spin 8s linear infinite;
}

.card-yellow::before {
  border-color: #ffb300;
  border-left-color: transparent;
}

.card-pink::before {
  border-color: #ff4f7b;
  border-left-color: transparent;
}

.card-purple::before {
  border-color: #6d49ff;
  border-left-color: transparent;
}

.projects-cards h1 {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 20px;
  font-size: 2.2rem;
  line-height: 1.2;
  font-family: Nexa;
}

.projects-cards:nth-child(1) h1 {
  color: #d88a00;
}

.projects-cards:nth-child(2) h1 {
  color: #ff4f7b;
  font-size: 2rem;
}

.projects-cards:nth-child(3) h1 {
  color: #6d49ff;
}

.projects-cards p {
  text-align: center;
  line-height: 1.9;
  color: var(--color-text-muted);
  max-width: 280px;
  margin: auto;
  font-size: 1rem;
  font-family: Poppins;
}

.card-button {
  width: 100%;
  display: flex;
  justify-content: center;
}

.projects-cards button {
  margin-top: 35px;
  width: 190px;
  height: 58px;
  border: none;
  border-radius: 50px;
  background: var(--color-white);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: 0.4s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.projects-cards:nth-child(1) button {
  color: #d88a00;
}

.projects-cards:nth-child(2) button {
  color: #ff4f7b;
}

.projects-cards:nth-child(3) button {
  color: #6d49ff;
}

.projects-cards button:hover {
  transform: scale(1.05);
}

.works-footer {
  width: 100%;
  background: rgba(255, 255, 255, 0.38);
  backdrop-filter: blur(12px);
  border-radius: 30px;
  padding: 35px 45px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.footer-cards {
  display: flex;
  gap: 18px;
  align-items: center;
}

.footer-icon {
  width: 65px;
  height: 65px;
  background: var(--color-white);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  flex-shrink: 0;
}

.footer-icon img {
  min-width: 100%;
  border-radius: 50%;
}

.footer-cards h3 {
  margin-bottom: 10px;
  color: var(--color-primary);
  font-size: 1.1em;
  font-family: Poppins;
  font-weight: 700;
}

.footer-cards p {
  line-height: 1.7;
  color: var(--color-text-muted);
  font-size: 0.951rem;
  font-family: Poppins;
}

/*feedback section mano*/

.feedback-section{
  width:100%;
  min-height: 100vh;
  padding:100px 0 80px;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap: 70px;
  background:url(background/page4.png) center/cover no-repeat;
  overflow: hidden;
}

.feedback-heading{
  width:min(90%,900px);
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  gap:18px;
}

.feedback-title{
  font-family:Nexa;
  font-size:clamp(2.5vw, 3vw, 3.2rem);
  line-height:1.15;
  color:var(--color-pink-dark);
}

.brand-line{
  width:90px;
  height:4px;
  border-radius:999px;
  background:#f4a825;
}

.feedback-intro{
  max-width:700px;
  font-family:Poppins;
  font-size:1.5rem;
  line-height:1.8;
  color:var(--color-primary-light);
}

.carousel-wrapper{
  min-width: 100%;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:35px;
}

.feedback-cards-container{
  width:100%;
  max-width:1140px;
  overflow-x:hidden;
  padding: 35px;
}

.feedback-tracker{
  display:flex;
  gap:30px;
  transition:.6s ease;
}

.feedback-card{
  width: 340px;
  min-width: 340px;
  height: 450px;
  padding:28px;
  border-radius:32px;
  background:rgba(255,255,255,.94);
  backdrop-filter:blur(15px);
  box-shadow:0 20px 40px rgba(0,0,0,.08);
  display:flex;
  flex-direction:column;
  transition:.3s;
}

.feedback-card:hover{
  transform:translateY(-10px);
  box-shadow: 0px 0px 25px var(--color-pink-dark);
}

.card-informations{
  display:flex;
  align-items:center;
  gap:15px;
  margin-bottom:18px;
}

.card-person{
  width:65px;
  height:65px;
  flex-shrink:0;
}

.card-person img{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:50%;
}

.card-name{
  display:flex;
  flex-direction:column;
  gap:5px;
}

.card-name h3{
  font-family:Nexa;
  font-size:1.1rem;
  color:#7a5cff;
}

.where-it-from{
  display:flex;
  align-items:center;
  gap:8px;
}

.where-it-from img{
  width:18px;
}

.where-it-from p{
  font-size:.75rem;
  color:#888;
}

.stars{
  color:#ffb400;
  font-size:1.35rem;
  letter-spacing:2px;
  margin-bottom:15px;
}

.card-comentary{
  font-family:Poppins;
  font-size:.95rem;
  line-height:1.9;
  color:#444;
}

.card-timer{
  margin-top:auto;
  color:#777;
  font-size:.9rem;
}

.setas{
  width:70px;
  height:70px;
  border:none;
  background:rgba(255,255,255,.85);
  border-radius:50%;
  display:flex;
  justify-content:center;
  align-items:center;
  cursor:pointer;
  flex-shrink:0;
  transition:.3s;
  box-shadow:0 10px 25px rgba(0,0,0,.12);
}

.setas i{
  font-size: 3.5rem;
  line-height:1;
  color:var(--color-pink);
}

.setas:hover{
  transform:scale(1.08);
}

.line-cards{
  display:flex;
  justify-content:center;
  gap:10px;
}

.line-cards div{
  width:12px;
  height:12px;
  border-radius:50%;
  background:rgba(255,255,255,.6);
  cursor:pointer;
  transition:.3s;
}

.line-cards div.active{
  background:#ff5f7e;
  transform:scale(1.3);
}

/* =========================
   CONTACT SECTION
========================= */

.contact-section{
  width:100%;
  min-height:100vh;
  padding:clamp(5rem,7vw,8rem) 6%;
  background:linear-gradient(135deg,#f8cf88 0%,#f6b89d 45%,#f79ab1 100%);
  overflow:hidden;
  position:relative;
  display:flex;
  align-items:center;
}

.contact-section::before{
  content:"";
  position:absolute;
  width:42vw;
  height:42vw;
  border-radius:50%;
  background:rgba(255,255,255,.2);
  top:-15%;
  left:-10%;
  filter:blur(120px);
}

.contact-section::after{
  content:"";
  position:absolute;
  width:30vw;
  height:30vw;
  border-radius:50%;
  background:rgba(255,80,120,.15);
  bottom:-10%;
  right:-5%;
  filter:blur(100px);
}

.contact-container {
  width: 100%;
  max-width: 1600px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: clamp(3rem, 5vw, 6rem); 
  position: relative;
  z-index: 2;
}

.contact-content {
  flex: 1;
  max-width: 650px;
  display: flex;
  flex-direction: column;
}

.contact-tag{
  width:fit-content;
  padding:.9rem 1.6rem;
  border-radius:999px;
  background:rgba(255,255,255,.3);
  backdrop-filter:blur(15px);
  color:#8d3360;
  font-family:var(--font-main);
  font-size:clamp(.8rem,.9vw,1rem);
  font-weight:700;
  margin-bottom:2rem;
  box-shadow:0 8px 20px rgba(0,0,0,.05);
}

.contact-content h1{
  display:flex;
  flex-direction:column;
  line-height:.9;
  font-size:clamp(4rem,8vw,8.5rem);
  font-family:var(--font-title);
  color:#5d1f28;
  margin-bottom:1.8rem;
  letter-spacing:-3px;
}

.contact-content h1 span{
  color:#a23568;
}

.contact-line{
  width:clamp(120px,12vw,180px);
  height:5px;
  border-radius:999px;
  background:linear-gradient(90deg,#ffb300,#ff5d8f);
  margin-bottom:2rem;
}

.contact-content p{
  max-width:650px;
  font-size:clamp(1rem,1vw,1.15rem);
  line-height:1.9;
  color:#553737;
  font-family:var(--font-main);
}

.contact-cards {
  width: 100%;
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}

.contact-info-card:nth-child(3) {
  grid-column: span 2; 
}

.contact-info-card{
  background:rgba(255,255,255,.78);
  backdrop-filter:blur(18px);
  border-radius:28px;
  padding:1.6rem;
  display:flex;
  align-items:center;
  gap:1rem;
  transition:.35s ease;
  border:1px solid rgba(255,255,255,.5);
  box-shadow:0 15px 35px rgba(0,0,0,.06);
}

.contact-info-card:hover{
  transform:translateY(-8px);
  box-shadow:0 20px 40px rgba(0,0,0,.1);
}

.contact-info-icon{
  width:72px;
  height:72px;
  border-radius:22px;
  background:linear-gradient(135deg,#ffd3de,#ffbfd1);
  display:flex;
  justify-content:center;
  align-items:center;
  flex-shrink:0;
}

.contact-info-icon i{
  font-size:1.7rem;
  color:#9d3763;
}

.contact-info-text h3{
  font-size:1.2rem;
  font-family:var(--font-title);
  color:#4d2424;
  margin-bottom:.4rem;
  line-height:1.2;
}

.contact-info-text p{
  font-size:.95rem;
  line-height:1.6;
  color:#6c5b5b;
}

.contact-form-wrapper{
  flex:1;
  max-width:540px;
  background:rgba(255,255,255,.72);
  backdrop-filter:blur(20px);
  border-radius:40px;
  padding:clamp(2rem,3vw,3.5rem);
  border:1px solid rgba(255,255,255,.55);
  box-shadow:0 30px 60px rgba(0,0,0,.08);
}

.contact-form-header{
  display:flex;
  align-items:center;
  gap:1.4rem;
  margin-bottom:2.5rem;
}

.contact-form-icon{
  width:78px;
  height:78px;
  border-radius:50%;
  background:linear-gradient(135deg,#ff8cb0,#ff4f83);
  display:flex;
  justify-content:center;
  align-items:center;
  flex-shrink:0;
  box-shadow:0 15px 30px rgba(255,80,130,.35);
}

.contact-form-icon i{
  font-size:2rem;
  color:white;
}

.contact-form-header h2{
  font-size:clamp(2rem,2.5vw,3rem);
  line-height:1.1;
  color:#5a1e28;
  font-family:var(--font-title);
  margin-bottom:.6rem;
}

.contact-form-header p{
  color:#705f5f;
  line-height:1.6;
  font-size:.98rem;
  font-family:var(--font-main);
}

.contact-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:1.3rem;
}

.input-group{
  display:flex;
  flex-direction:column;
  margin-bottom:1.4rem;
}

.input-group label{
  margin-bottom:.7rem;
  color:#4d2d2d;
  font-size:.95rem;
  font-family:var(--font-main);
  font-weight:700;
}

.input-group input,
.input-group select,
.input-group textarea{
  width:100%;
  border:none;
  outline:none;
  padding:1.15rem 1.2rem;
  border-radius:18px;
  background:rgba(255,255,255,.92);
  border:1px solid rgba(0,0,0,.06);
  font-size:.98rem;
  color:#503737;
  font-family:var(--font-main);
  transition:.3s ease;
}

.input-group textarea{
  min-height:180px;
  resize:none;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus{
  border-color:#ff5c8f;
  box-shadow:0 0 0 5px rgba(255,92,143,.12);
}

.contact-button{
  width:100%;
  border:none;
  padding:1.25rem;
  border-radius:18px;
  margin-top:.5rem;
  cursor:pointer;
  background:linear-gradient(135deg,#ff6f97,#ff3f77);
  color:white;
  font-size:1rem;
  font-weight:700;
  font-family:var(--font-main);
  display:flex;
  justify-content:center;
  align-items:center;
  gap:.8rem;
  transition:.35s ease;
  box-shadow:0 15px 30px rgba(255,80,130,.3);
}

.contact-button:hover{
  transform:translateY(-4px);
  box-shadow:0 22px 45px rgba(255,80,130,.4);
}
 
.footer {
  background: linear-gradient(135deg, #ff7b52, #ff4f7b);
  padding-top: 80px;
}

.footer-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 4% 50px;
  display: grid;
  grid-template-columns: repeat(4, 1fr) !important; 
  gap: 40px;
  box-sizing: border-box;
}

.footer-column h2,
.footer-column h3{
  color: white;
  margin-bottom: 25px;
  font-family: Poppins;
  text-align: center;
  font-size: 1.5rem;
}

.footer-column p,
.footer-column a,
.footer-column img {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  line-height: 220%;
  display: block;
  font-family: Poppins;
  transition: 0.4s;
  text-align: center;

}

.footer-column a:hover {
  transform: translateY(-5px);
}

.footer-socials {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.footer-socials a {
  width: 55px;
  height: 55px;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.15);
  font-size: 1.5rem;
  transition: 0.3s;
}

.footer-socials a img {
  background-size: contain;
  width: 100%;
  height: 100%;
  padding: 5px;
  border-radius: 15px;
}

.footer-socials a:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.25);
}

.footer-bottom {
  text-align: center;
  padding: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.85);
  font-family: Poppins;
}

/*responsivo*/
@media (max-width: 768px) {
  .feedback-section {
    padding: 40px 0;
    gap: 25px;
  }

  .feedback-title {
    font-size: 1.5rem;
    padding: 0 10px;
  }

  .feedback-intro {
    font-size: 0.95rem;
    padding: 0 15px;
  }

  /* Centraliza todo o conjunto na tela */
  .carousel-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 0 10px;
    box-sizing: border-box;
  }

  .setas {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  }

  .setas i {
    font-size: 1.8rem;
  }

  /* CORREÇÃO DO ALINHAMENTO: Zerado o padding lateral que quebrava o centro */
  .feedback-cards-container {
    flex: 1;
    max-width: 300px; 
    padding: 15px 0; /* Removido o padding de 35px das laterais */
    overflow: hidden;
    display: flex;
    justify-content: flex-start;
  }

  /* Força o tracker a alinhar corretamente o início do primeiro card */
  .feedback-tracker {
    display: flex;
    gap: 20px;
    width: 100%;
  }

  /* O card agora ocupa 100% exatos do container, perfeitamente centralizado */
  .feedback-card {
    width: 100%;
    min-width: 100%;
    height: auto;
    min-height: 380px;
    padding: 20px;
    border-radius: 20px;
    box-sizing: border-box; /* Garante que o padding não aumente o tamanho do card */
  }

  .card-comentary {
    font-size: 0.85rem;
    line-height: 1.5;
  }
}

/* TABLET */
@media (max-width:1500px){

  .contact-form-wrapper{
    min-width: 50%;
    width:100%;
  }

  .contact-content{
    max-width: 50%;
  }
}

@media (max-width:1200px){

  .contact-container{
    flex-direction:column;
    gap:60px;
  }

  .contact-content,
  .contact-form-wrapper{
    width:100%;
    max-width:900px;
  }

  .contact-content{
    align-items:center;
    text-align:center;
  }

  .contact-content p{
    max-width:700px;
  }

  .contact-line{
    margin:0 auto 2rem;
  }

  .contact-cards{
    grid-template-columns:repeat(2,1fr);
    width:100%;
  }

  .contact-form-wrapper{
    max-width:900px;
  }

}

@media (max-width:768px){

  .contact-section{
    padding:80px 20px;
  }

  .contact-content h1{
    font-size:clamp(3rem,12vw,5rem);
    letter-spacing:-1px;
  }

  .contact-cards{
    grid-template-columns:1fr;
  }

  .contact-info-card{
    padding:1.4rem;
  }

  .contact-grid{
    grid-template-columns:1fr;
  }

  .contact-form-header{
    flex-direction:column;
    text-align:center;
  }

  .contact-form-wrapper{
    padding:2rem 1.5rem;
  }

}

@media (max-width: 1100px) {
  .about-me-container {
    flex-direction: column;
    align-items: center;
  }

  .about-me-heading,
  .principles-container {
    width: 100%;
    max-width: 900px;
  }

  .about-me-heading {
    text-align: center;
  }

  .about-me-heading h1{
    text-align: center;
  }

  .line {
    margin-inline: auto;
  }

  .mission-card {
    margin-inline: auto;
  }
}

@media (max-width: 768px) {
  .principle-item-grid {
    grid-template-columns: 1fr;
  }

  .mission-card {
    flex-direction: column;
    text-align: center;
  }

  .principle-item {
    min-height: auto;
  }
}

@media (max-width: 1024px) {
  .brand-line {
    width: 100px; 
  }
  
  .works-footer {
    padding: 30px;
    grid-template-columns: repeat(2, 1fr); 
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .works {
    height: auto;
    min-height: auto; 
  }

  .works-brand {
    gap: 12px;
    margin-bottom: 20px;
  }

  .brand-line {
    width: 60px; 
  }

  .projects-cards {
    padding: 40px 25px; 
    min-height: auto; 
  }

  .projects-cards h1 {
    font-size: 1.8rem !important; 
    margin-top: 25px;
  }

  .works-footer {
    grid-template-columns: 1fr; 
    padding: 25px 20px;
    gap: 25px;
  }

  .footer-cards {
    align-items: flex-start; 
  }
}

/* =========================
   HERO - TABLET / NOTEBOOK
========================= */

@media (max-width: 1150px) {
  .hero {
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 3rem;
    padding: 80px 30px 60px;
  }

  .hero_content {
    width: 100%;
    max-width: 900px;
    align-items: center;
  }

  .hero_intro {
    justify-content: center;
  }

  .hero_heading {
    width: 100%;
    align-items: center;
    text-align: center;
  }

  .hero_heading h1 {
    font-size: clamp(3.2rem, 8vw, 5.5rem);
    line-height: 1;
    border-right: none;
  }

  .typing {
    border-right: none;
    animation: none;
  }

  .hero_subtitle {
    width: 100%;
  }

  .hero_subtitle p {
    text-align: center;
    font-size: clamp(1.1rem, 2vw, 1.5rem);
  }

  .hero_description {
    max-width: 800px !important;
    text-align: center;
  }

  .hero_image {
    width: clamp(260px, 40vw, 420px);
    height: clamp(260px, 40vw, 420px);
    min-width: unset;
    min-height: unset;
  }

  .hero_features {
    width: 100%;
    max-width: 900px;
    grid-template-columns: repeat(2, minmax(240px, 1fr));
    gap: 1.2rem;
    padding: 1.3rem;
  }

  .feature_card {
    width: 100%;
    min-width: 0;
    padding: 0.7rem;
    gap: 10%;
  }

  .feature_content h4 {
    font-size: 1.5rem;
  }

  .feature_content p {
    font-size: 1rem;
  }

  .feature_icon {
    width: 20%;
    height: 100%;
  }

  .social_links {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero_actions {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 1600px) {

  .hero {
    gap: 4rem;
    align-items: center;
  }

  .hero_content {
    max-width: 700px;
  }

  .hero_heading h1 {
    font-size: clamp(4rem, 5vw, 6rem);
    line-height: 0.95;
  }

  .hero_description {
    max-width: 640px !important;
  }

  .hero_features {
    max-width: 740px;
    grid-template-columns: repeat(2, minmax(220px, 1fr));
    padding: 1rem 1.2rem;
  }

  .feature_content h4 {
    font-size: 0.95rem;
  }

  .feature_content p {
    font-size: 0.78rem;
  }

  .hero_image {
    width: 28vw;
    height: 28vw;
    max-width: 480px;
    max-height: 480px;
  }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

  .hero {
    padding: 50px 18px;
    gap: 2rem;
  }

  .hero_intro p {
    font-size: clamp(1.4rem, 6vw, 2rem);
  }

  .hero_heading h1 {
    font-size: clamp(2.4rem, 11vw, 4rem);
    line-height: 1.05;
  }

  .hero_subtitle p {
    font-size: 1rem;
    line-height: 1.5;
  }

  .hero_description {
    line-height: 1.8;
    font-size: 2rem;
  }

  .hero_image {
    width: 72vw;
    height: 72vw;
    max-width: 280px;
    max-height: 280px !important;
  }

  .hero_features {
    width: 100%;
    max-width: 900px;
    grid-template-columns: repeat(2, minmax(140px, 1fr));
    gap: 1.2rem;
    padding: 1.3rem;
  }

  .feature_card {
    align-items: center;
    text-align: left;
  }

  .feature_icon {
    width: 45px;
    height: 45px;
  }

  .feature_content h4 {
    font-size: clamp(3vw, 2vw, 1.3vw);
  }

  .feature_content p {
    font-size: clamp(2.2vw, 2vw, 1.3vw);
  }

  .social_links {
    gap: 1rem;
  }

  .social_links img {
    width: 44px;
    height: 44px;
  }

  .hero_actions {
    flex-direction: column;
    width: 100%;
    gap: 1rem;
  }

  .hero_actions a {
    width: 100%;
    max-width: 320px;
  }
}

/* =========================
   CELULAR PEQUENO
========================= */

@media (max-width: 480px) {
  .hero_heading h1 {
    font-size: 2.5rem;
  }

  .hero_intro p {
    font-size: 2rem;
  }

  .hero_subtitle p {
    font-size: 1.2rem;
  }

  .hero_features {
    gap: 0.8rem;
  }

  .feature_card {
    padding: 0.4rem 0;
  }
}

@media (max-width: 2250px) {
  .hero_image {
    margin-bottom: 0;
  }

  .hero_features {
    grid-template-columns: repeat(2, 1fr);
    max-width: 720px;
  }
}

@media (max-width: 1150px) {
  .navbar {
    flex-direction: column;
    height: fit-content;
  }

  .navbar_brand h1 {
    font-size: clamp(3.5vw, 2.5vw, 2vw);
  }

  .navbar_links a {
    font-size: clamp(0.8em, 2vw, 3.2vw);
  }

  .navbar_actions {
    flex-direction: column;
    gap: 1vw;
    margin-right: 0;
  }

  .navbar_brand {
    margin-left: 0;
    text-align: start;
  }

  .hero_image {
    margin-bottom: 0;
  }
}

@media (min-width: 1150px) {
  .navbar_brand h1 {
    font-size: clamp(1.5vw, 1.5vw, 2vw);
  }

  .navbar_links a {
    font-size: clamp(1vw, 2vw, 1vw);
  }
}

@media (max-height: 800px) {

  .hero {
    min-height: auto;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .hero_image {
    width: 22vw;
    height: 22vw;
  }

  .hero_heading h1 {
    font-size: clamp(3rem, 4vw, 5rem);
  }
}

@media (max-width: 881px) {

  .footer-container {
    grid-template-columns: 1fr; 
    gap: 30px;
    text-align: start; 
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
  }

  .footer-socials {
    justify-content: center;
  }
  
  .footer-column{
    max-width: 70%;
    align-self: center;
    display: flex;
    flex-direction: column;
  }

  .footer-column h2,
  .footer-column h3{
    font-size: 2rem;
  }

}

