@charset "UTF-8";
a {
  text-decoration: none !important;
}

.btn a {
  display: inline-block;
  text-align: center;
  line-height: normal;
  font-family: "Ropa Sans", sans-serif;
  font-size: 15px;
  color: #c9bec9;
  background-color: #360B42;
  border: 2px solid black;
  border-radius: 6px;
  padding: 8px 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn a:hover {
  background-color: #c9bec9;
  color: black;
}

/* Tablet */
@media screen and (min-width: 768px) {
  .btn a {
    font-size: 18px;
    padding: 10px 15px;
  }
}
/* Desktop */
@media screen and (min-width: 1200px) {
  .btn {
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .btn a {
    font-size: 20px;
    padding: 10px 15px;
  }
}
body {
  background-color: #2d1633;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='199' viewBox='0 0 100 199'%3E%3Cg fill='%23c9bed0' fill-opacity='0.4'%3E%3Cpath d='M0 199V0h1v1.99L100 199h-1.12L1 4.22V199H0zM100 2h-.12l-1-2H100v2z'%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
  color: #c9bed0;
  font-family: "Ropa Sans", sans-serif;
  line-height: 1.6;
  margin: 0;
}

#main-header {
  background: transparent;
  margin-bottom: 20px;
  position: relative;
  top: 20px;
}
#main-header #logo-con {
  display: flex;
  justify-content: center;
  align-items: center;
}
#main-header #logo {
  margin-top: 20px;
  max-width: 250px;
  width: 100%;
}
#main-header {
  /*  Hamburger Button  */
}
#main-header #hamburger {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 32px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  z-index: 1100;
  transition: transform 0.3s;
}
#main-header #hamburger:hover {
  transform: scale(1.2);
}

/* Overlay Menu  */
.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(45, 22, 51, 0.95);
  color: white;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  z-index: 1000;
  transition: opacity 0.4s ease;
}
.overlay.open {
  display: flex;
}
.overlay ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.overlay li {
  margin: 20px 0;
}
.overlay a {
  color: white;
  font-size: 32px;
  text-decoration: none;
  transition: color 0.3s, transform 0.3s;
}
.overlay a:hover {
  color: #c9bed0;
  transform: scale(1.1);
}

/*  Close Button */
#close {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 32px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  z-index: 1100;
}
#close:hover {
  color: #c9bed0;
  transform: scale(1.2);
  transition: all 0.3s;
}

@media screen and (min-width: 768px) {
  .overlay a {
    font-size: 28px;
  }
}
@media screen and (min-width: 1200px) {
  .overlay a {
    font-size: 32px;
  }
  #hamburger, #close {
    font-size: 36px;
  }
}
#projects h2 {
  margin-top: 50px;
}

.project-card {
  margin-top: 100px;
  margin-left: 50px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.pro-video {
  border-radius: 10px;
}

#projects.btn-secondary {
  margin: 0 auto;
  margin-left: 10%;
}
@media screen and (min-width: 768px) {
  #projects.btn-secondary {
    margin-top: 50px;
    margin-left: 40%;
  }
}
@media screen and (min-width: 1200px) {
  #projects.btn-secondary {
    margin-top: 50px;
    margin-left: 10%;
  }
}

#player-container {
  position: relative;
  display: flex;
  flex-direction: column;
  margin-top: 15px;
  margin-bottom: 15px;
}

.video-controls.hidden {
  display: none;
}

.video-controls {
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0;
  padding: 20px;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
  display: flex;
  transition: all 0.2s ease-in-out;
}

.video-controls.hide {
  opacity: 0;
  pointer-events: none;
}

button {
  padding: 0;
  border: 0;
  background-color: transparent;
}

.fa, .fa-solid {
  color: #CABFD1;
  font-size: 28px;
  margin-left: 20px;
}

.fa-volume-up {
  margin-left: auto;
}

input[type=range] {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  background: transparent;
  cursor: pointer;
  width: 25rem;
}

/* Removes default focus */
input[type=range]:focus {
  outline: none;
}

/* slider track */
input[type=range]::-webkit-slider-runnable-track {
  background-color: #CABFD1;
  border-radius: 0.5rem;
  height: 0.5rem;
}

/* slider thumb */
input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  margin-top: -4px;
  background-color: #740A91;
  border-radius: 0.5rem;
  height: 1rem;
  width: 1rem;
}

input[type=range]:focus::-webkit-slider-thumb {
  outline: 3px solid #CABFD1;
  outline-offset: 0.125rem;
}

/* Firefox styles */
/* slider track */
input[type=range]::-moz-range-track {
  background-color: #CABFD1;
  border-radius: 0.5rem;
  height: 0.5rem;
}

/* slider thumb */
input[type=range]::-moz-range-thumb {
  background-color: #740A91;
  border: none;
  border-radius: 0.5rem;
  height: 1rem;
  width: 1rem;
}

input[type=range]:focus::-moz-range-thumb {
  outline: 3px solid #CABFD1;
  outline-offset: 0.125rem;
}

footer {
  background-color: #740a91;
  color: #C9BED0;
  padding: 20px 10px;
  text-align: center;
  position: relative;
}
footer .hidden {
  display: none;
}
footer .footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
footer .footer-logo {
  width: 70px;
  height: auto;
}
footer .social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 5px;
}
footer .social-icons a {
  color: #c9bec9;
  font-size: 0.8rem;
  transition: color 0.3s ease;
}
footer .social-icons a:hover {
  color: white;
}
footer p {
  font-size: 8px;
  line-height: 1.3;
  max-width: 600px;
}
@media screen and (min-width: 768px) {
  footer {
    padding: 30px 20px;
  }
  footer .footer-logo {
    width: 90px;
  }
  footer .social-icons a {
    font-size: 0.8rem;
  }
  footer p {
    font-size: 10px;
  }
}
@media screen and (min-width: 1200px) {
  footer {
    padding: 30px 40px;
  }
  footer .footer-logo {
    width: 90px;
  }
  footer .social-icons a {
    font-size: 1rem;
  }
  footer p {
    font-size: 12px;
  }
}

.vertical-decor {
  position: relative;
  width: 4px;
  height: 120px;
  background-color: #c9bed0;
  margin: 0 auto;
  margin-bottom: 20px;
  margin-top: 20px;
}

.circle {
  position: absolute;
  border-radius: 50%;
  background-color: #c9bed0;
}

.circle-top {
  width: 25px;
  height: 25px;
  top: -2px;
  left: -30px;
}

.circle-middle {
  width: 20px;
  height: 20px;
  top: 50%;
  left: 10px;
  transform: translateY(-80%);
}

.circle-bottom {
  width: 15px;
  height: 15px;
  bottom: -2px;
  left: -20px;
}

/*Tablet*/
@media screen and (min-width: 768px) {
  .vertical-decor {
    position: relative;
    width: 4px;
    height: 200px;
    background-color: #c9bed0;
    margin: 0 auto;
    margin-bottom: 20px;
  }
  .circle {
    position: absolute;
    border-radius: 50%;
    background-color: #c9bed0;
  }
  .circle-top {
    width: 35px;
    height: 35px;
    top: -2px;
    left: -40px;
  }
  .circle-middle {
    width: 25px;
    height: 25px;
    top: 50%;
    left: 10px;
    transform: translateY(-80%);
  }
  .circle-bottom {
    width: 20px;
    height: 20px;
    bottom: -2px;
    left: -25px;
  }
}
/* Desktop */
@media screen and (min-width: 1200px) {
  .vertical-decor {
    position: relative;
    width: 4px;
    height: 200px;
    background-color: #c9bed0;
    margin: 0 auto;
    margin-bottom: 20px;
  }
  .circle {
    position: absolute;
    border-radius: 50%;
    background-color: #c9bed0;
  }
  .circle-top {
    width: 35px;
    height: 35px;
    top: -2px;
    left: -40px;
  }
  .circle-middle {
    width: 25px;
    height: 25px;
    top: 50%;
    left: 10px;
    transform: translateY(-80%);
  }
  .circle-bottom {
    width: 20px;
    height: 20px;
    bottom: -2px;
    left: -25px;
  }
}
.about-wrapper {
  display: flex;
  flex-direction: column;
  padding: 2rem 1rem;
}
.about-wrapper .about-title {
  font-family: "Ropa Sans", sans-serif;
  font-size: 1rem;
  text-align: center;
  color: #d4cfe3;
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .about-wrapper .about-title {
    font-size: 2rem;
  }
}
@media screen and (min-width: 1200px) {
  .about-wrapper .about-title {
    font-size: 2.5rem;
  }
}
.about-wrapper .photo-card img.photo-main {
  margin-bottom: 30px;
  width: 100%;
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}
.about-wrapper .photo-card img.photo-main:hover {
  transform: scale(1.05);
}
.about-wrapper .about-text p {
  margin-top: 20px;
  font-family: "Ropa Sans", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #d4cfe3;
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .about-wrapper .about-text p {
    margin-top: 20px;
    font-size: 1.2rem;
  }
}
@media screen and (min-width: 1200px) {
  .about-wrapper .about-text p {
    margin-top: 20px;
    font-size: 1.5rem;
  }
}
.about-wrapper .about-btn-box {
  display: flex;
  margin-left: 37%;
}
@media screen and (min-width: 768px) {
  .about-wrapper .about-btn-box {
    display: flex;
    margin-left: 30%;
  }
}
@media screen and (min-width: 1200px) {
  .about-wrapper .about-btn-box {
    display: flex;
    margin-left: -30%;
  }
}
.about-wrapper .about-btn-box .btn a {
  display: inline-block;
  text-align: center;
  line-height: normal;
  font-family: "Ropa Sans", sans-serif;
  font-size: 15px;
  color: #c9bec9;
  background-color: #360B42;
  border: 2px solid black;
  border-radius: 6px;
  padding: 8px 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.about-wrapper .about-btn-box .btn a:hover {
  background-color: #c9bec9;
  color: black;
}
@media screen and (min-width: 768px) {
  .about-wrapper .about-btn-box .btn a {
    font-size: 18px;
    padding: 10px 15px;
  }
}
@media screen and (min-width: 1200px) {
  .about-wrapper .about-btn-box .btn a {
    font-size: 20px;
    padding: 10px 15px;
  }
}

#contact {
  text-align: left;
  color: #d4cfe3;
  font-family: "Ropa Sans", sans-serif;
  padding: 4rem 1rem;
}
#contact h1 {
  font-size: 25px;
  letter-spacing: 8px;
  text-align: left;
  margin-bottom: 2rem;
  color: #d4cfe3;
}
@media (min-width: 768px) {
  #contact h1 {
    font-size: 2.3rem;
    margin-left: 2rem;
  }
}
@media screen and (min-width: 768px) {
  #contact h2 {
    margin-left: 35px;
  }
}
@media screen and (min-width: 768px) {
  #contact p {
    margin-left: 35px;
  }
}

/* CONTACT FORM */
.contact-form {
  background-color: #2b0834;
  border: 1px solid #2e1538;
  padding: 2rem;
  border-radius: 5px;
  max-width: 100%;
  width: 90%;
  margin: 0 auto 4rem auto;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
  position: relative;
}
@media screen and (min-width: 768px) {
  .contact-form {
    left: 8%;
  }
}
.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-form form input,
.contact-form form textarea {
  background-color: #c7c6c9;
  border: none;
  border-radius: 5px;
  padding: 0.8rem 1rem;
  font-size: 15px;
  font-family: "Ropa Sans", sans-serif;
  color: #740A91;
}
.contact-form form input::-moz-placeholder, .contact-form form textarea::-moz-placeholder {
  color: #4b006e;
}
.contact-form form input::placeholder,
.contact-form form textarea::placeholder {
  color: #4b006e;
}
.contact-form form input:focus,
.contact-form form textarea:focus {
  outline: 2px solid #7a43a3;
}
.contact-form form textarea {
  height: 200px;
  resize: none;
}
.contact-form form button {
  align-self: flex-end;
  background-color: #c7c6c9;
  color: #2b0834;
  border: none;
  padding: 0.6rem 1.5rem;
  border-radius: 5px;
  cursor: pointer;
  font-family: "Ropa Sans", sans-serif;
  transition: all 0.3s ease;
}
.contact-form form button:hover {
  background-color: #d4cfe3;
}

/* CONTACT INFO */
.contact-info {
  text-align: center;
  margin-bottom: 4rem;
}
.contact-info h2 {
  font-size: 18px;
  color: #d4cfe3;
  margin-bottom: 1.5rem;
  margin-top: 4rem;
  text-align: center;
}
.contact-info .info-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.contact-info .info-item i {
  color: #d4cfe3;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.contact-info .info-item p {
  color: #d4cfe3;
  line-height: 1.4;
  font-size: 13px;
}

.contact-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
}

.btn-secondary {
  margin: 0 auto;
  margin-left: 44%;
}

#lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
#lightbox.active {
  opacity: 1;
  pointer-events: auto;
}
#lightbox .container-lightbox {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px 30px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  animation: fadeInUp 0.4s ease;
}
#lightbox .container-lightbox h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: #222;
}
#lightbox .container-lightbox p {
  font-size: 1rem;
  margin-bottom: 25px;
  color: #555;
}
#lightbox .container-lightbox .lightbox-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: #4CAF50;
  border-radius: 50%;
  position: relative;
}
#lightbox .container-lightbox .lightbox-icon::before {
  content: "✓";
  color: #fff;
  font-size: 32px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#lightbox .container-lightbox .lightbox-close {
  padding: 10px 25px;
  font-size: 1rem;
  border: none;
  border-radius: 10px;
  background: #000;
  color: #fff;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}
#lightbox .container-lightbox .lightbox-close:hover {
  transform: scale(1.05);
  background: #333;
}

/* Animação do card subindo */
@keyframes fadeInUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
/* TABLET & DESKTOP */
@media screen and (min-width: 768px) {
  .contact-container {
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 3rem;
    padding: 0 3rem;
  }
  .contact-form {
    flex: 1 1 55%;
    margin: 0;
    padding: 3rem;
  }
  .contact-info {
    flex: 1 1 40%;
    text-align: left;
  }
  .contact-info h2 {
    font-size: 1.5rem;
  }
  .contact-info .info-item p {
    font-size: 1.1rem;
  }
  .btn-secondary {
    margin: 0 auto;
    margin-left: 46%;
  }
}
@media screen and (min-width: 1200px) {
  #contact {
    padding: 5rem 6rem;
  }
  .contact-form {
    padding: 3.5rem;
    max-width: 1200px;
    width: 100%;
  }
  .btn-secondary {
    margin: 0 auto;
    margin-left: 47%;
  }
}
@media screen and (min-width: 1200px) {
  /* ===== HEADING ===== */
  #heading {
    margin-top: 160px;
    margin-bottom: 100px;
  }
  #heading h1 {
    font-size: 3.5rem;
  }
  #heading h2 {
    font-size: 2.2rem;
  }
  #heading p {
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 800px;
  }
  /* ===== GALLERY ===== */
  #project-gallery {
    gap: 50px;
  }
  .project-image {
    border-radius: 14px;
  }
}
/* ------------------------
   Heading Section
------------------------ */
#heading {
  margin-top: 120px;
  margin-bottom: 80px;
}

#heading h1 {
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 20px;
}

#heading h2 {
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 25px;
}

#heading p {
  font-size: 1rem;
  line-height: 1.7;
  max-width: 700px;
  margin-bottom: 60px;
}

/* ------------------------
   Project Gallery
------------------------ */
#project-gallery {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}

#project-gallery > div {
  overflow: hidden;
  border-radius: 10px;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}
/* ------------------------
   Case Content Section
------------------------ */
#case-content {
  margin-top: 40px;
  margin-bottom: 40px;
}

#case-content h3 {
  font-size: 1.6rem;
  margin-top: 60px;
  margin-bottom: 20px;
  font-weight: 600;
}

#case-content p {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 100%;
}

#case-content ul {
  margin-bottom: 30px;
  padding-left: 20px;
}

#case-content li {
  margin-bottom: 10px;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* ------------------------
   Process Content Section
------------------------ */
#process-content {
  margin-top: 40px;
  margin-bottom: 40px;
}

#process-content h3 {
  font-size: 1.6rem;
  margin-top: 60px;
  margin-bottom: 20px;
  font-weight: 600;
}

#process-content p {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 100%;
}

#process-content ul {
  margin-bottom: 30px;
  padding-left: 20px;
}

#process-content li {
  margin-bottom: 10px;
  line-height: 1.6;
  font-size: 0.95rem;
}

@media screen and (min-width: 768px) {
  #heading {
    margin-top: 120px;
    margin-bottom: 80px;
  }
  #heading h1 {
    font-size: 3rem;
  }
  #heading h2 {
    font-size: 2rem;
  }
  #heading p {
    font-size: 1.5rem;
    max-width: 700px;
  }
  #project-gallery {
    flex-direction: row;
    gap: 30px;
  }
  #project-gallery > div {
    flex: 1;
  }
  #case-content,
  #process-content {
    margin-top: 50px;
    margin-bottom: 50px;
  }
  #case-content h3,
  #process-content h3 {
    font-size: 2rem;
  }
  #case-content p,
  #process-content p {
    font-size: 1rem;
    max-width: 750px;
  }
  #case-content li,
  #process-content li {
    font-size: 1rem;
  }
}
@media screen and (min-width: 1200px) {
  #heading {
    margin-top: 50px;
    margin-bottom: 50px;
  }
  #heading h1 {
    font-size: 3.5rem;
  }
  #heading h2 {
    font-size: 2.5rem;
  }
  #heading p {
    font-size: 1.5rem;
    line-height: 1.8;
    max-width: 800px;
  }
  #project-gallery {
    gap: 50px;
  }
  #project-gallery > div {
    border-radius: 14px;
  }
  #case-content h3,
  #process-content h3 {
    font-size: 2.3rem;
  }
  #case-content p,
  #process-content p {
    font-size: 1.5rem;
    line-height: 1.8;
    max-width: 800px;
  }
  #case-content ul,
  #process-content ul {
    max-width: 800px;
  }
}/*# sourceMappingURL=main.css.map */