/* ===== ESTILOS GERAIS ===== */
:root {
  --primary: #f61a66;
  --secondary: #00c2ff;
  --dark: #121214;
  --darker: #0a0a0b;
  --light: #ffffff;
  --gray: #6c757d;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: var(--dark);
  color: var(--light);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3 {
  font-family: "Anton", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

section {
  padding: 80px 0;
}

#hero {
  height: 100vh;
  background: url("banner.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  padding: 0 20px;
}

.hero-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 120px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-text {
  text-align: center;
  max-width: 800px;
}

.hero-img {
  width: 100%;
  max-width: 400px;
  margin-bottom: 30px;
}

.hero-text h1 {
  font-size: 20px;
  line-height: 1;
  margin-bottom: 20px;
}

.hero-description {
  font-size: 18px;
  margin-bottom: 30px;
  text-transform: none;
}

.btn {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: 15px 40px;
  font-size: clamp(1rem, 2vw, 1.2rem);
  text-decoration: none;
  text-transform: uppercase;
  border-radius: 50px;
  transition: all 0.3s ease;
  font-family: "Anton", sans-serif;
  letter-spacing: 1px;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(246, 26, 102, 0.3);
}

#hero-2 {
  height: 100vh;
  background: url("identity-banner.jpg") center/cover no-repeat;
  padding: 0 20px;
}

.hero-content-2 {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-text-2 h1 {
  font-size: 35px;
  line-height: 1.2;
  margin-bottom: 20px;
  padding-top: 40px;
  text-align: center;
}

.hero-text-2 span {
  color: var(--primary);
  display: block;
}

.hero-image-list {
  display: flex;
  flex-direction: column;
  align-self: self-end;
}

.img-1 {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.img-2 {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.img-3 {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.img-4 {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.img-5 {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-list img {
  width: 500px;
  margin-bottom: 5px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

#services {
  background-color: var(--dark);
  padding: 80px 20px;
}

.services-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.services-title {
  font-size: clamp(2rem, 6vw, 3rem);
  color: var(--light);
}

.services-title span {
  color: var(--primary);
  font-size: clamp(2rem, 6vw, 3rem);
}

.services-description {
  font-size: clamp(1.4rem, 2vw, 1.2rem);
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
  text-transform: none;
}

.timeline-container {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
  margin: 0 2px;
}

.timeline-line {
  margin-right: 5px;
}

.circle-point {
  margin-left: 2px;
}

.service-card {
  background-color: #212121;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.service-card-left {
  background-color: #212121;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  text-align: left;
}

.service-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #531e31;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.service-card-title {
  font-family: "poppins", sans-serif;
  font-size: 1.5rem;
  color: var(--light);
  margin-bottom: 15px;
}

.service-description-card-p {
  color: #bdbdbd;
  font-size: 1rem;
  text-transform: none;
}

/* ===== TESTIMONIALS SECTION ===== */
#testimonials {
  background-color: #1a1a1a;
  padding: 80px 20px;
  text-align: center;
}

.testimonials-title h2 {
  font-size: clamp(2rem, 6vw, 3rem);
  margin-bottom: 60px;
}

.testimonials-title span {
  color: var(--primary);
}

.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  flex-direction: row;
  gap: 30px;
  margin: 0 auto;
}

.logo-1 {
  justify-content: center;
  align-items: center;
}

.logo-1 img {
  width: 200px;
  border-radius: 8px;
}

.logo-2 {
  justify-content: center;
  align-items: center;
}

.logo-2 img {
  width: 200px;
  border-radius: 8px;
}

.logo-3 {
  justify-content: center;
  align-items: center;
}

.logo-3 img {
  width: 200px;
  border-radius: 8px;
}

.logo-4 {
  justify-content: center;
  align-items: center;
}

.logo-4 img {
  width: 200px;
  border-radius: 8px;
}

/* ===== CTA SECTION ===== */
#cta {
  background: var(--darker);
  padding: 40px 80px;
  text-align: left;
}

.cta-container {
  width: 100%;
  margin: 0 60px;
}

.cta-title h2 {
  font-size: 40px;
  margin-bottom: 20px;
}

.cta-title span {
  color: var(--primary);
}

.cta-description {
  font-size: 20px;
  max-width: 600px;
  text-transform: none;
  margin-bottom: 20px;
}

.form-container {
  display: flex;
  flex-direction: row;
  width: fit-content;
}

.form-analise {
  width: 600px;
  display: flex;
  flex-direction: column;
  justify-self: left;
}

.form-analise a {
  text-decoration: none;
  color: white;
}

.input-row {
  display: flex;
  flex-direction: row;
  gap: 10px;
}

.input-row input {
  width: 80%;
}

input,
textarea {
  width: 100%;
  padding: 15px;
  margin-bottom: 10px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--light);
  border-radius: 4px;
  font-family: "Poppins", sans-serif;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

button[type="submit"] {
  background: var(--primary);
  color: white;
  border: none;
  padding: 15px 40px;
  font-family: "poppins", sans-serif;
  font-size: 1.2rem;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  margin: 0 auto;
}

button[type="submit"]:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(246, 26, 102, 0.3);
}

.caneca {
  margin-top: 85px;
  margin-left: 90px;
}

.caneca img {
  width: 400px;
  height: 400px;
}

/* ===== FOOTER ===== */
footer {
  border-top: 1px solid #333;
  padding: 60px 20px 20px;
  background: var(--darker);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-content {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-column0 h3,
.footer-column0 p {
  width: 300px;
}

.footer-column {
  flex: 1;
  margin-bottom: 30px;
}

.footer-column0 img {
  max-width: 200px;
  margin-bottom: 20px;
}

.footer-column0 span {
  color: var(--primary);
}

.footer-column h3 {
  color: var(--light);
  font-size: 1.3rem;
  margin-bottom: 20px;
  width: 100px;
}

.footer-column a,
.footer-column p {
  color: #bdbdbd;
  text-decoration: none;
  margin-bottom: 10px;
  display: block;
  text-transform: none;
  width: 270px;
}

.footer-column a:hover {
  color: var(--primary);
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a img {
  width: 30px;
  height: 30px;
  transition: transform 0.3s ease;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  color: #bdbdbd;
  font-size: 0.9rem;
}
