:root {
  --fundo-site: #2D3748;
  --fundo-navbar: #394559; 
  --texto-principal: #E2E8F0;
  --texto-secundario: #A0AEC0;
  --cor-destaque: #3DB2AD;
  --fundo-placeholder: #4A5568; 
  --borda-suave: #4A5568;
  --espacamento-esquerdo: 8rem;  
  --espacamento-direito: 8rem;   

  

}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #ffffff;
  color: var(--texto-principal);
}

html {
  scroll-behavior: smooth;
}


html, body {
  width: 100%;
  position: relative;
  overflow-x: hidden;
}


.mobile-nav-panel {
  overflow-y: auto; 
}


.navbar {
  background-color: var(--cor-destaque);
  padding: 1.5rem 2rem;
  width: 100%;       
  margin: 0;        
  box-sizing: border-box;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;     
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  width: 100%;
}

.nav-menus-container {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.logo {
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--texto-principal);
  text-decoration: none;
  position: absolute;
  left: 50%;
  font-family: Unbounded, cursive;
  transform: translateX(-50%);
}

.nav-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-menu-left {
  margin-right: auto;
  padding-right: 8rem;
  left: calc(-1 * var(--espacamento-esquerdo));
}

.nav-menu-right {
  margin-left: auto;
  padding-left: 8rem;
  right: calc(-1 * var(--espacamento-direito));
}

.nav-menu a {
  color: var(--texto-principal);
  text-decoration: none;
  font-weight: 500;
  font-size: 1.5rem;
  transition: color 0.3s ease;
  padding: 0 1.2rem;
}

.nav-menu a:hover {
  color: var(--fundo-site);
}

.hero-placeholder {
  height: 60vh;
  background-color: var(--fundo-placeholder);
  margin: 0;           
  border-radius: 0;    
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  width: 100%;        
}

.mobile-menu, .mobile-nav-panel {
  display: none; 
}

.nav-menu a.active-link,
.mobile-nav-panel a.active-link {
  color: var(--fundo-site); 
  font-weight: 700; 
  position: relative;
}

.mobile-header-right {
    display: none;
}

.nav-menu a.active-link::after {
  content: '';
  position: absolute;
  bottom: -5px; 
  left: 50%;
  transform: translateX(-50%);
  width: 70%; 
  height: 2px;
  background-color: var(--fundo-site);
  border-radius: 2px;
}

.mobile-nav-panel a.active-link::after {
  display: none;
}

@media (max-width: 768px) {
  
  .nav-menu-left, .nav-menu-right {
    display: none;
  }
  .mobile-nav-panel a.active-link {
  color: var(--cor-destaque); 
  font-weight: 700; 
  position: relative;
}


  .nav-container {
    justify-content: space-between;
    position: relative;
  }

  .logo {
    position: static; 
    transform: none; 
    padding: 0;
  }

  .mobile-menu {
    display: block;
    cursor: pointer;
    z-index: 100;
    padding: 10px;
    margin: -10px; 
  }
  .mobile-menu div {
    width: 30px;
    height: 3px; 
    background-color: var(--texto-principal);
    margin: 6px 0;
    border-radius: 2px; 
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }


  .mobile-nav-panel {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--fundo-site); 
    justify-content: center;
    align-items: center;
    transform: translateY(-100%); 
    transition: transform 0.4s ease-in-out;
    z-index: 99;
  }
  .mobile-nav-panel.active {
    transform: translateY(0); 
  }
  .mobile-nav-panel ul {
    list-style: none;
    padding: 0;
    text-align: center;
  }
  .mobile-nav-panel li {
    margin: 2rem 0;
  }
  .mobile-nav-panel a {
    color: var(--texto-principal);
    text-decoration: none;
    font-size: 2.2rem;
    font-weight: 500;
  }

  .mobile-menu.active .line1 {
    transform: translateY(9px) rotate(-45deg);
  }

  .mobile-menu.active .line2 {
    transform: scaleX(0);
    opacity: 0;
  }

  .mobile-menu.active .line3 {
    transform: translateY(-9px) rotate(45deg);
  }
}

body.no-scroll {
  overflow: hidden;
}


.hero-section {
  position: relative;
  width: 100%;
  height: 70vh; 
  overflow: hidden;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; 
  object-fit: cover;
  z-index: 1;  
}


.hero-overlay-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  z-index: 10;
  width: 80%;
  max-width: 800px;
}

.hero-overlay-text h1 {
  font-family: 'Unbounded', sans-serif;
  font-size: 3.5rem;
  margin-bottom: 0.5rem;
  line-height: 1.1;
}

.hero-overlay-text p {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
}

@media (max-width: 768px) {
  .hero-overlay-text h1 {
    font-size: 2.5rem;
  }
  .hero-overlay-text p {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .hero-overlay-text h1 {
    font-size: 1.8rem;
  }
  .hero-overlay-text p {
    font-size: 1rem;
  }
  .hero-overlay-text {
    width: 90%;
  }
}

.services {
  padding: 4rem 2rem; 
  text-align: center;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--fundo-site);
  margin-bottom: 0.5rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--fundo-site);
  margin-bottom: 3rem;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); 
  gap: 2rem; 
}

.card {
  background-color: var(--fundo-card);
  border-radius: 8px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start; 
  text-align: left;
}

.card img {
  width: 100%;             
  aspect-ratio: 4 / 3;     
  object-fit: cover;     
  border-radius: 6px;     
  margin-bottom: 1.5rem;   
}

.card-image-placeholder {
  width: 100%;
  padding-top: 75%; 
  background-color: var(--borda-suave);
  border-radius: 6px;
  margin-bottom: 1.5rem;
}

.card-title {
  font-size: 1.3rem;
  color: var(--fundo-placeholder); 
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.card-summary {
  font-size: 1rem;
  color: var(--fundo-site);
  line-height: 1.6;
  flex-grow: 1; 
  margin-bottom: 1rem;
}

.card-learn-more {
  font-size: 1rem;
  font-weight: 700;
  color: var(--cor-destaque);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.card-learn-more:hover {
  opacity: 0.8;
}


@media (max-width: 992px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .services {
    padding: 3rem 1rem;
  }
  .cards-grid {
    grid-template-columns: 1fr;
  }
  .section-title {
    font-size: 2rem;
  }
}

.person-info {
  background-color: var(--borda-suave); 
  padding: 4rem 2rem;
}

.person-container {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center; 
}

.person-image {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 4rem; 
  flex-shrink: 0;
  border: 3px solid var(--cor-destaque);
}

.person-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; 
}

.person-details {
  color: var(--texto-principal); 
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-grow: 1; 
}

.person-name {
  font-size: 1.8rem; 
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--cor-destaque);
  text-align: left; 
}

.person-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--texto-secundario);
  text-align: left; 
}

@media (max-width: 768px) {
  .person-container {
    flex-direction: column; 
    text-align: center;
  }

  .person-image {
    width: 150px; 
    height: 150px;
    margin-right: 0;
    margin-bottom: 1.5rem;
  }

  .person-details {
    text-align: center;
  }
}

/* Services Section Styles */

.services-detailed {
  background-color: #ffffff; 
  padding: 4rem 2rem;
  text-align: center;
}

.services-detailed .container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title-underline {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--fundo-site);
  display: inline-block; 
  position: relative;
  margin-bottom: 3.5rem;
  padding-bottom: 0.5rem;
}

.section-title-underline::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0; 
  height: 3px;
  background-color: var(--cor-destaque);
  transition: width 0.4s ease;
}

.section-title-underline:hover::after {
  width: 100%; 
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); 
  gap: 2rem;
}

.service-card {
  background-color: var(--fundo-site);
  border-radius: 8px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center; 
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(45, 55, 72, 0.2);
}

.card-icon {
  width: 120px;
  height: 120px;
  border-radius: 50%; 
  background-color: var(--fundo-card);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  overflow: hidden;
}

.card-icon img {
  width: 60%; 
  height: auto;
}

.card-title1 {
  font-size: 1.3rem;
  color: var(--cor-destaque);
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.card-description {
  font-size: 1rem;
  color: var(--texto-secundario);
  line-height: 1.6;
}

.cta-container {
  margin-top: 3.5rem;
}

.cta-button {
  background: var(--cor-destaque);
  color: var(--fundo-site);
  padding: 0.8rem 2.5rem;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.3s, opacity 0.3s;
}

.cta-button:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr); 
  }
}

@media (max-width: 576px) {
  .services-grid {
    grid-template-columns: 1fr; 
  }
  .section-title-underline {
    font-size: 2rem;
  }
}


.image-text-section {
  background-color: var(--texto-principal); 
  padding: 6rem 2rem; 
}

.image-text-section .container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center; 
  gap: 4rem; 
}

.image-wrapper {
  flex: 1; 
  border-radius: 8px;
  overflow: hidden; 
  box-shadow: 0 10px 20px rgba(45, 55, 72, 0.1); 
}

.image-wrapper img {
  max-width: 100%;
  height: auto;
  display: block; 
  object-fit: cover; 
}

.content-wrapper {
  flex: 1; 
  text-align: left;
}

.content-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--fundo-site); 
  margin-bottom: 1.5rem;
  position: relative; 
  display: inline-block; 
}

.content-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px; 
  width: 100%;
  height: 4px; 
  background: linear-gradient(to right, var(--cor-destaque), transparent); 
  border-radius: 2px;
  opacity: 0.7;
}

.content-text {
  font-size: 1.1rem;
  color: var(--borda-suave);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.cta-button-small {
  background-color: var(--cor-destaque);
  color: var(--fundo-site);
  padding: 0.7rem 1.8rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  margin-top: 1rem;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.cta-button-small:hover {
  transform: translateY(-3px);
  background-color: #309b97; 
}

@media (max-width: 992px) {
  .image-text-section .container {
    flex-direction: column; 
    text-align: center;
  }

  .image-wrapper {
    margin-bottom: 3rem; 
  }

  .content-wrapper {
    text-align: center;
  }

  .content-title {
    font-size: 2.2rem;
  }

  .content-title::after {
    left: 50%; 
    transform: translateX(-50%);
  }
}

@media (max-width: 576px) {
  .image-text-section {
    padding: 4rem 1rem;
  }
  .content-title {
    font-size: 1.8rem;
  }
  .content-text {
    font-size: 1rem;
  }
}

.other-areas {
  background-color: #ffffff; 
  padding: 5rem 2rem;
  text-align: center;
}

.other-areas .container {
  max-width: 1200px;
  margin: 0 auto;
}

.other-areas .section-title {
  color: var(--fundo-site); 
  margin-bottom: 3rem;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); 
  gap: 2rem;
}

.area-card {
  background-color: var(--fundo-site);
  border-radius: 8px;
  padding: 2.5rem 2rem;
  text-align: center;
  border-top: 4px solid transparent;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.area-card:hover {
  transform: translateY(-10px);
  border-top-color: var(--cor-destaque);
  box-shadow: 0 20px 40px rgba(45, 55, 72, 0.15);
}

.area-icon {
  margin-bottom: 1.5rem;
  color: var(--cor-destaque); 
}

.area-title {
  font-size: 1.4rem;
  color: var(--texto-principal);
  margin-bottom: 1rem;
  font-weight: 500;
}

.area-description {
  font-size: 1rem;
  color: var(--texto-secundario);
  line-height: 1.6;
}

@media (max-width: 992px) {
  .areas-grid {
    grid-template-columns: 1fr; 
    max-width: 450px; 
    margin: 0 auto;
  }
}

.testimonials {
  background-color: var(--fundo-site); 
  padding: 5rem 2rem;
  text-align: center;
}

.testimonials .section-title {
  color: var(--texto-principal);
}

.testimonials .section-subtitle {
  color: var(--texto-secundario);
  margin-bottom: 3.5rem;
}

.testimonials-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr); 
  gap: 2rem;
}

.testimonial-card {
  background-color: var(--fundo-navbar);
  padding: 2.5rem;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  text-align: left;
  border-left: 4px solid var(--cor-destaque); 
}

.testimonial-card::before {
  content: '“';
  font-size: 5rem;
  font-family: serif;
  color: var(--cor-destaque);
  line-height: 1;
  height: 2rem;
  opacity: 0.5;
}

.testimonial-text {
  font-size: 1.1rem;
  color: var(--texto-secundario);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
  flex-grow: 1;
}

.testimonial-author {
  margin-top: auto;
}

.author-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--texto-principal);
}

@media (max-width: 992px) {
  .testimonials-grid {
    grid-template-columns: 1fr; 
    max-width: 600px;
  }
}


/* About /* Contact Section Styles */

.about-me-section {
  background-color: var(--texto-principal); 
  padding: 6rem 2rem;
}

.about-me-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center; 
  gap: 4rem; 
}

.about-image-wrapper {
  flex: 1; 
  min-width: 300px; 
  border-radius: 8px; 
  overflow: hidden; 
  box-shadow: 0 10px 25px rgba(45, 55, 72, 0.15); 
}

.about-image-wrapper img {
  width: 100%;
  height: auto;
  display: block; 
  object-fit: cover; 
}

.about-text-wrapper {
  flex: 1.5; 
  text-align: left;
}

.about-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--fundo-site); 
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block; 
}

.about-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, var(--cor-destaque), transparent);
  border-radius: 2px;
  opacity: 0.7;
}

.about-description {
  font-size: 1.1rem;
  color: var(--fundo-site); 
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

@media (max-width: 992px) {
  .about-me-content {
    flex-direction: column; 
    text-align: center;
  }

  .about-image-wrapper {
    margin-bottom: 3rem; 
    width: 80%; 
    min-width: unset; 
  }

  .about-title {
    font-size: 2.2rem;
  }

  .about-title::after {
    left: 50%; 
    transform: translateX(-50%);
  }
}

@media (max-width: 576px) {
  .about-me-section {
    padding: 4rem 1rem;
  }
  .about-title {
    font-size: 1.8rem;
  }
  .about-description {
    font-size: 1rem;
  }
  .about-image-wrapper {
    width: 100%;
  }
}

.qualifications-section {
  background: linear-gradient(135deg, var(--texto-principal) 0%, #F5F7FA 100%);
  padding: 6rem 2rem;
}

.qualifications-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 4rem;
  align-items: flex-start;
}

.specialties-wrapper,
.education-wrapper {
  flex: 1;
  background-color: #ffffff;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(45, 55, 72, 0.08);
  text-align: left;
  display: flex;
  flex-direction: column;
}

.section-title-qualifications {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--fundo-site);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.section-title-qualifications::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 3px;
  background-color: var(--cor-destaque);
  border-radius: 2px;
}

.qualifications-description {
  font-size: 1.05rem;
  color: var(--fundo-site);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.specialty-list {
  list-style: none;
  padding: 0;
  margin-bottom: 2.5rem;
}

.specialty-list li {
  font-size: 1.1rem;
  color: var(--fundo-site);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.specialty-list li i {
  color: var(--cor-destaque);
  margin-right: 0.8rem;
  font-size: 1.3rem;
}

.diplomas-button {
  background-color: var(--fundo-site);
  color: var(--cor-destaque);
  margin-top: auto;
  align-self: flex-start;
  box-shadow: 0 5px 15px rgba(45, 55, 72, 0.2);
  padding: 0.7rem 1.8rem; 
  border-radius: 25px; 
  text-decoration: none; 
  font-weight: 600; 
  transition: all 0.3s ease;
}


.diplomas-button:hover {
  background-color: var(--cor-destaque);
  color: var(--fundo-site);
  transform: translateY(-3px);
}

.education-item {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--borda-suave);
}

.education-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.education-title {
  font-size: 1.3rem;
  color: var(--cor-destaque);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.education-details {
  font-size: 1rem;
  color: var(--fundo-site);
  margin-bottom: 0.3rem;
}

.education-year {
  font-size: 0.9rem;
  color: var(--texto-secundario);
  font-style: italic;
}

@media (max-width: 992px) {
  .qualifications-content {
    flex-direction: column;
    gap: 3rem;
  }

  .specialties-wrapper,
  .education-wrapper {
    padding: 2.5rem;
    text-align: center;
    align-items: center;
  }

  .section-title-qualifications::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .specialty-list li {
    justify-content: center;
  }

  .diplomas-button {
    align-self: center;
  }
}

@media (max-width: 576px) {
  .qualifications-section {
    padding: 4rem 1rem;
  }
  .specialties-wrapper,
  .education-wrapper {
    padding: 2rem 1.5rem;
  }
  .section-title-qualifications {
    font-size: 1.8rem;
  }
  .qualifications-description,
  .specialty-list li,
  .education-details {
    font-size: 0.95rem;
  }
}

.popular-works-section {
  background-color: #ffffff;
  padding: 6rem 2rem;
  text-align: center;
  overflow-x: clip; 
}

.popular-works-section .container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative; 
}

.section-title-gradient {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--fundo-site);
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-title-gradient .highlight-underline {
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, var(--cor-destaque), transparent);
  border-radius: 2px;
  opacity: 0.7;
}

.popular-works-section .section-subtitle {
  font-size: 1.1rem;
  color: var(--fundo-site);
  margin-bottom: 3.5rem;
  max-width: 60ch;
  margin-left: auto;
  margin-right: auto;
}

.carousel-container {
  max-width: 1050px; 
  margin: 0 auto;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  gap: 2rem;
  padding-bottom: 1rem;
}

.work-card {
  width: calc(100% / 3 - 1.34rem);
  flex-shrink: 0;
  background-color: var(--fundo-site);
  border-radius: 8px;
  padding: 2rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border-top: 4px solid var(--cor-destaque);
  transition: transform 0.3s ease;
}

.work-card:hover {
  transform: translateY(-5px);
}

.work-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--cor-destaque);
  margin-bottom: 1rem;
}

.work-description {
  font-size: 1rem;
  color: var(--texto-secundario);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.work-description strong {
  color: var(--texto-principal);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.work-button {
  display: inline-block;
  background-color: var(--cor-destaque);
  color: var(--fundo-site);
  padding: 0.7rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.3s ease;
  align-self: flex-start;
}

.work-button:hover {
  opacity: 0.85;
}

.carousel-button {
  position: absolute;
  top: calc(50% - 22.5px); 
  transform: translateY(-50%);
  background-color: var(--fundo-site);
  color: var(--texto-principal);
  border: 1px solid var(--borda-suave);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 1.8rem;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}

.carousel-button:hover {
  background-color: var(--cor-destaque);
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  border-color: var(--cor-destaque);
}

.prev-button {
  left: -25px;
}

.next-button {
  right: -25px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
  gap: 0.75rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--borda-suave);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background-color: var(--cor-destaque);
  transform: scale(1.2);
}

@media (max-width: 1200px) {
  .carousel-container {
    max-width: 700px; 
  }
  .work-card {
    width: calc(100% / 2 - 1rem);
  }
}

@media (max-width: 768px) {
  .carousel-container {
    max-width: 100%; 
  }
  .work-card {
    width: 100%;
  }
  .carousel-button {
    display: none; 
  }
}



.contact-section {
  background-color: var(--fundo-site);
  padding: 6rem 2rem;
  color: var(--texto-principal);
}

.contact-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr; 
  gap: 4rem;
  align-items: flex-start;
}

.contact-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--texto-principal);
  margin-bottom: 0.5rem;
}

.contact-subtitle {
  font-size: 1.1rem;
  color: var(--texto-secundario);
  margin-bottom: 2.5rem;
}

.contact-form-wrapper .form-group {
  margin-bottom: 1.5rem;
}

.contact-form-wrapper label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--texto-secundario);
}

.contact-form-wrapper input,
.contact-form-wrapper textarea {
  width: 100%;
  padding: 0.9rem;
  background-color: var(--fundo-navbar);
  border: 1px solid var(--borda-suave);
  border-radius: 6px;
  color: var(--texto-principal);
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.contact-form-wrapper input:focus,
.contact-form-wrapper textarea:focus {
  outline: none;
  border-color: var(--cor-destaque);
  box-shadow: 0 0 0 3px rgba(61, 178, 173, 0.3);
}

.contact-form-wrapper textarea {
  resize: vertical;
}

.contact-form-wrapper .cta-button {
  width: 100%;
  border: none;
  cursor: pointer;
}

.contact-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-info-list li {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.contact-info-list i {
  font-size: 1.5rem;
  color: var(--cor-destaque);
  width: 30px;
  text-align: center;
}

.contact-info-list a,
.contact-info-list span {
  color: var(--texto-secundario);
  text-decoration: none;
  transition: color 0.3s;
}

.map-container {
  width: 100%;
  height: 250px;
  border-radius: 8px;
  overflow: hidden;
  margin-top: 2rem;
  border: 2px solid var(--borda-suave);
}



.contact-info-list a:hover {
  color: var(--cor-destaque);
}

@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .contact-info-wrapper {
    text-align: center;
  }
  .contact-info-list {
    align-items: center;
    display: inline-flex;
    flex-direction: column;
  }
  .contact-info-list li {
    flex-direction: column;
    gap: 0.75rem;
  }
  .contact-info-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .map-container {
    max-width: 500px;
  }
}

#back-to-portfolio-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 1000;
  background-color: #1E1E1E;
  color: #00A3FF;
  border: 1px solid #00A3FF;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

#back-to-portfolio-btn:hover {
  transform: translateY(-3px);
  background-color: #1E1E1E;
  color: white;
  border-color: #1E1E1E;
  box-shadow: 0 6px 15px rgba(0, 163, 255, 0.2);
}

@media (max-width: 768px) {
  #back-to-portfolio-btn span {
    display: none;
  }
  #back-to-portfolio-btn {
    padding: 12px 14px;
  }
}

 /* Footer Styles */

.site-footer {
  background-color: var(--cor-destaque);
  color: var(--fundo-site);
  padding: 4rem 2rem 0;
  font-size: 1rem;
  line-height: 1.6;
  animation: fadeInUp 0.8s ease forwards;
  opacity: 0;
}

.site-footer a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.footer-section h3 {
  font-size: 1.2rem;
  margin-bottom: 1.2rem;
  font-weight: 600;
  position: relative;
  display: inline-block;
}

.footer-section h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 40%;
  height: 2px;
  background-color: var(--fundo-site);
  opacity: 0.6;
}


.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--fundo-site);
  margin-bottom: 0.5rem;
}

.footer-tagline {
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  font-size: 1.2rem;
  margin-right: 1rem;
  display: inline-flex;
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-links a:hover {
  transform: translateY(-3px);
  color: var(--texto-principal);
}

.social-links svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-col-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--fundo-site);
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  display: block;
  margin: 0.4rem 0;
  position: relative;
}

.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 1.5px;
  background-color: var(--fundo-site);
  transition: width 0.3s ease;
  opacity: 0.7;
}

.footer-links a:hover::after {
  width: 100%;
}


.footer-links a:hover {
  color: var(--fundo-site);
}

.newsletter-desc {
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.newsletter-form input:focus {
  border-color: var(--texto-principal);
  box-shadow: 0 0 8px rgba(61, 178, 173, 0.3);
  outline: none;
}


.newsletter-form input {
  padding: 0.7rem;
  border: 1px solid #ddd;
  border-radius: 6px;
  flex: 1;
  min-width: 180px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.newsletter-form button {
  padding: 0.7rem 1.2rem;
  border: none;
  border-radius: 6px;
  background-color: var(--fundo-site);
  color: var(--cor-destaque);
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}


.newsletter-form button:hover {
  background-color: var(--texto-principal);
  color: var(--fundo-site);
}

.footer-bottom {
  text-align: center;
  margin-top: 3rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--fundo-site);
  font-size: 1rem;
  opacity: 0.85;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr; 
    text-align: center;
  }
  .social-links, .newsletter-form, .footer-links {
    justify-content: center;
    align-items: center;
  }
  .footer-col {
      align-items: center;
  }

}

