@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --primary-color: #0a0d14;
    --primary-color-light: #20242f;
    --secondary-color: #f49e09;
    --extra-light: rgba(255, 255, 255, 0.5);
    --white: #ffffff;
    --max-width: 1200px;
    --header-font: "Lisu Bosa", serif;
        --font-semi-bold: 600;
     --white-color: #fff;
}

* {
    margin: 0;
    padding: 0;
    font-family: "Open Sans", sans-serif;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-direction: column;
}

.about-section {
    background: url(/assets/peixeWell.jpeg) no-repeat left;
    background-size: 51%;
    background-color: #fdfdfd;
    overflow: hidden;
    padding: 27px 0;
}

.inner-container {
    width: 59%;
    float: right;
    background-image: linear-gradient(to top, #171c26, #171c26);
    padding: 100px;
}

.inner-container h1 {
    margin-bottom: 30px;
    font-size: 30px;
    font-weight: 900;
    color: white;
}

.text {
    color: white;
    line-height: 30px;
    text-align: justify;
    margin-bottom: 40px;
    font-family: var(--header-font);
    font-size: 16px;
    font-weight: 900;
}

.skills {
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    font-size: 13px;
}

@media screen and (max-width:1200px) {
    .inner-container {
        padding: 80px;
    }
}

@media screen and (max-width:1000px) {
    .about-section {
        background-size: 100%;
        padding: 100px 40px;
    }

    .inner-container {
        width: 100%;
    }
}

@media screen and (max-width:600px) {
    .about-section {
        padding: 0;
    }

    .inner-container {
        padding: 25px;
    }
}

.textCriativoSobreEmpresa {
    font-size: 17px;
    font-weight: 900;
    color: white;
}

.click {
    text-transform: uppercase;
    color: white;
    font-family: var(--header-font);

}



body{
    margin: 0;
    background-color: #000;
    color: #eee;
    font-family: Poppins;
    font-size: 12px;
}

/* slider section  */

.slider{
    height: 100vh;
    overflow: hidden;
    position: relative;
}
.slider .list .item{
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0 0 0 0;
}
.slider .list .item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.slider .list .item .content{
    position: absolute;
    top: 31%;
    width: 1140px;
    max-width: 80%;
    left: 50%;
    transform: translateX(-50%);
    padding-right: 30%;
    box-sizing: border-box;
    color: #fff;
    text-shadow: 0 5px 10px #000000;
}

.slider .list .item .content .title,
.slider .list .item .content .type{
    font-size: 4em;
    font-weight: bold;
    line-height: 1.3em;
}
.slider .list .item .type{
    color: #ffffff;
}
.slider .list .item .button{
    display: grid;
    grid-template-columns: repeat(2, 130px);
    grid-template-rows: 40px;
    gap: 5px;
    margin-top: 20px;
}
.slider .list .item .button button{
    border: none;
    background-color: #eee;
    font-family: Poppins;
    font-weight: 500;
    cursor: pointer;
    transition: 0.4s;
    letter-spacing: 2px;
}

.slider .list .item .button button:hover{
    letter-spacing: 3px;
}
.slider .list .item .button button:nth-child(2){
    background-color: transparent;
    border: 1px solid #fff;
    color: #eee;
}

/* Thumbnail Section  */
.thumbnail{
    position: absolute;
    bottom: 50px;
    left: 50%;
    width: max-content;
    z-index: 100;
    display: flex;
    gap: 20px;
}

.thumbnail .item{
    width: 150px;
    height: 220px;
    flex-shrink: 0;
    position: relative;
}

.thumbnail .item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 5px 0 15px rgba(0, 0, 0, 0.3);
}


/* nextPrevArrows Section  */
.nextPrevArrows{
    position: absolute;
    top: 80%;
    right: 52%;
    z-index: 100;
    width: 300px;
    max-width: 30%;
    display: flex;
    gap: 10px;
    align-items: center;
}
.nextPrevArrows button{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #14ff72cb;
    border: none;
    color: #fff;
    font-family: monospace;
    font-weight: bold;
    transition: .5s;
    cursor: pointer;
}
.nextPrevArrows button:hover{
    background-color: #fff;
    color: #000;
}

/* Animation Part */
.slider .list .item:nth-child(1){
    z-index: 1;
}


/* animation text in first item */
.slider .list .item:nth-child(1) .content .title,
.slider .list .item:nth-child(1) .content .type,
.slider .list .item:nth-child(1) .content .description,
.slider .list .item:nth-child(1) .content .buttons
{
    transform: translateY(50px);
    filter: blur(20px);
    opacity: 0;
    animation: showContent .5s 1s linear 1 forwards;
}
@keyframes showContent{
    to{
        transform: translateY(0px);
        filter: blur(0px);
        opacity: 1;
    }
}
.slider .list .item:nth-child(1) .content .title{
    animation-delay: 0.4s !important;
}
.slider .list .item:nth-child(1) .content .type{
    animation-delay: 0.6s !important;
}
.slider .list .item:nth-child(1) .content .description{
    animation-delay: 0.8s !important;
}
.slider .list .item:nth-child(1) .content .buttons{
    animation-delay: 1s !important;
}

/* Animation for next button click */
.slider.next .list .item:nth-child(1) img{
    width: 150px;
    height: 220px;
    position: absolute;
    bottom: 50px;
    left: 50%;
    border-radius: 30px;
    animation: showImage .5s linear 1 forwards;
}

@keyframes showImage{
    to{
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 0;
    }
}

.slider.next .thumbnail .item:nth-last-child(1){
    overflow: hidden;
    animation: showThumbnail .5s linear 1 forwards;
}
.slider.prev .list .item img{
    z-index: 100;
}


@keyframes showThumbnail{
    from{
        width: 0;
        opacity: 0;
    }
}


.slider.next .thumbnail{
    animation: effectNext .5s linear 1 forwards;
}

@keyframes effectNext{
    from{
        transform: translateX(150px);
    }
}


/* Animation for prev button click */
.slider.prev .list .item:nth-child(2){
    z-index: 2;
}

.slider.prev .list .item:nth-child(2) img{
    animation: outFrame 0.5s linear 1 forwards;
    position: absolute;
    bottom: 0;
    left: 0;
}
@keyframes outFrame{
    to{
        width: 150px;
        height: 220px;
        bottom: 50px;
        left: 50%;
        border-radius: 20px;
    }
}

.slider.prev .thumbnail .item:nth-child(1){
    overflow: hidden;
    opacity: 0;
    animation: showThumbnail .5s linear 1 forwards;
}
.slider.next .nextPrevArrows button,
.slider.prev .nextPrevArrows button{
    pointer-events: none;
}

.slider.prev .list .item:nth-child(2) .content .title,
.slider.prev .list .item:nth-child(2) .content .type,
.slider.prev .list .item:nth-child(2) .content .description,
.slider.prev .list .item:nth-child(2) .content .buttons
{
    animation: contentOut 1.5s linear 1 forwards!important;
}

@keyframes contentOut{
    to{
        transform: translateY(-150px);
        filter: blur(20px);
        opacity: 0;
    }
}
@media screen and (max-width: 678px) {
    .slider .list .item .content{
        padding-right: 0;
    }
    .slider .list .item .content .title{
        font-size: 50px;
    }
}




.img-area {
	display: flex;
	overflow: hidden;
	justify-content: center;
}


@media (min-width:768px) {
        .imgLogo {
        border-radius: 50%;
        width: 12%;
        display: flex;
        position: relative;
        margin: 10px;
    }
}

@media (max-width:767px) {

        .imgLogo {
        border-radius: 50%;
        width: 30%;
        display: flex;
        position: relative;
        margin: 10px;
    }
  
}

.dropdown__link,
.dropdown__sublink {
    padding: 1.25rem 1.25rem 1.25rem 2.5rem;
    color: var(--white-color);
    background-color: #8bb2c9;
    display: flex;
    align-items: center;
    column-gap: .5rem;
    font-weight: var(--font-semi-bold);
    transition: background-color .3s;
}

.dropdown__link i,
.dropdown__sublink i {
    font-size: 1.25rem;
    font-weight: initial;
}

.dropdown__link:hover,
.dropdown__sublink:hover {
    background-color: var(--black-color);
}

.dropdown__menu,
.dropdown__submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease-out;
}

.dropdown__item:hover .dropdown__menu,
.dropdown__subitem:hover>.dropdown__submenu {
    max-height: 1000px;
    padding: 0;
    transition: max-height .4s ease-in;
}

.dropdown__item:hover .dropdown__arrow {
    transform: rotate(180deg);
}

.dropdown__sublink {
    background-color: var(--black-color-lighten);
}

@media screen and (max-width:340px) {
    .nav__link {
        padding-inline: 1rem;
    }
}



.mobile-menu {
    display: none;
    cursor: pointer;
}

.mobile-menu div {
    width: 32px;
    height: 2px;
    background: #fff;
    margin: 8px;
    transition: 0.3s;
}


.mobile-menu.active .line1 {
    transform: rotate(-45deg) translate(-8px, 8px);
}

.mobile-menu.active .line2 {
    opacity: 0;
}

.mobile-menu.active .line3 {
    transform: rotate(45deg) translate(-5px, -7px);
}


/* --- NAVBAR --- */
nav {
    position: relative;
    top: 0;
    width: 100%;
    background-image: linear-gradient(to top, #0a0d14, #0a0d14);
    box-shadow: 0 0px 7px rgba(0, 0, 0, 0.15);
    z-index: 1;
}

.nav.container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  padding: 0rem 2rem;
}

.nav__menu {
  display: flex;
  align-items: center;
}

.nav__list {
  list-style: none;
  display: flex;
  gap: 2rem;
}


.nav__link:hover {
  color: var(--hover-color);
}

/* --- DROPDOWN --- */
.dropdown__item {
  position: relative;
}

.dropdown__menu {
  position: absolute;
  top: 120%;
  left: 0;
  background: #8bb2c9;
  padding: 0.75rem 0;
  border-radius: 10px;
  min-width: 200px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-speed) ease;
}

.dropdown__item:hover .dropdown__menu {
  opacity: 1;
  visibility: visible;
  top: 100%;
  background: #00639b;
}

.dropdown__link {
    display: block;
    padding: 1.50rem 1.25rem;
    color: var(--text-color);
    text-decoration: none;
    transition: background var(--transition-speed);
}

.dropdown__link:hover {
  background-color: #1c3985;
}

.dropdown__arrow {
  margin-left: 10px;
  transition: transform var(--transition-speed);
}

.dropdown__item:hover .dropdown__arrow {
  transform: rotate(180deg);
}

/* --- MOBILE --- */
.nav__toggle {
  display: none;
  font-size: 1.5rem;
  color: white;
  cursor: pointer;
  user-select: none;
}

@media (max-width: 900px) {
  .nav__toggle {
    display: block;
  }

  .dropdown__arrow {
  margin-left: 14rem;
  transition: transform var(--transition-speed);
}

  .nav__menu {
    position: fixed;
    top: 110px;
    left: 0;
    width: 100%;
    background: #055160;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    display: none;
  }

  .nav__menu.active {
        display: flex;
        flex-direction: row;  }

  .nav__list {
    flex-direction: column;
    gap: 0.5rem;
  }

  .dropdown__menu {
    position: static;
    opacity: 1;
    visibility: visible;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
  }

  .dropdown__link {
    padding: 1.5rem 1rem;
  }
}

.nav__link {
    color: var(--white-color);
    font-weight: var(--font-semi-bold);
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color .3s;
    text-decoration: none;
}

.numberTel{
    text-decoration: none;
    color: #3e6fff;
}

.numberTel:hover{
    color: #d4d9ea;
}


.textContatoWppAbout{
    text-decoration: none;
    color: white;
}



.footer {
  background: #171c26;
  color: #fff;
  padding: 60px 20px 0;
}

.footer-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.footer-col h4 {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.footer-col p,
.footer-col li {
  font-size: 0.95rem;
  opacity: 0.85;
  margin: 4px 0;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col.center {
  text-align: center;
}

.footer-col.right {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.payments {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}

.payments img {
  max-width: 280px;
  background: #fff;
  padding: 10px 20px;
  border-radius: 10px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  margin-top: 40px;
  text-align: center;
  padding: 20px;
  font-size: 0.85rem;
  opacity: 0.6;
}

/* RESPONSIVO */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-col.right {
    text-align: center;
  }
}

.footer-col {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
}

.letras{
    font-size: 1.6rem!important;
}

.textContatoWppAbout{
       font-size: 0.95rem;
    opacity: 0.85;
    margin: 4px 0;
}

.footer a {
  color: #d0d3d8;        /* mesma cor do texto */
  text-decoration: none; /* tira o sublinhado */
}

.footer a:visited {
  color: #d0d3d8;        /* tira o roxo */
}

.footer a:hover {
  color: #ffffff;        /* efeito elegante no hover */
}


/* ================= ABOUT HERO ================= */

.about-hero {
  display: flex;
  min-height: 60vh;
  background: #0a0d14;
}

.about-hero__image {
  flex: 1;
  background: url("/assets/peixeWell.jpeg") center/cover no-repeat;
}

.about-hero__content {
  flex: 1;
  padding: 100px 80px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-hero__content h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.about-hero__content h2 {
  font-size: 1.3rem;
  font-weight: 400;
  color: #f49e09;
  margin-bottom: 30px;
}

.about-hero__content p {
  font-size: 1rem;
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 30px;
  opacity: 0.9;
}

/* Highlights */
.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 40px;
}

.about-highlights span {
  font-size: 0.95rem;
  background: rgba(255,255,255,0.05);
  padding: 10px 14px;
  border-radius: 8px;
}

/* Buttons */
.about-cta {
  display: flex;
  gap: 15px;
}

.btn-primary {
  background: #f49e09;
  color: #000;
  padding: 14px 26px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-primary:hover {
  background: #ffb733;
}

.btn-secondary {
  border: 1px solid #ffffff;
  color: #ffffff;
  padding: 14px 26px;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-secondary:hover {
  background: #ffffff;
  color: #000;
}

/* ================= STORY ================= */

.about-story {
  background: #f8f8f8;
  padding: 20px 20px;
}

.story-container {
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.story-container h2 {
  font-size: 2.4rem;
  margin-bottom: 30px;
}

.story-container p {
  font-size: 1rem;
  line-height: 1.9;
  color: #333;
  margin-bottom: 20px;
}

/* ================= CTA FINAL ================= */

.about-cta-final {
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
    url("/assets/riverBanner3.png") center/cover no-repeat;
  padding: 120px 20px;
  text-align: center;
  color: #ffffff;
}

.about-cta-final h2 {
  font-size: 2.6rem;
  color: white;
  margin-bottom: 20px;
}

.about-cta-final p {
  font-size: 1.1rem;
  color: white;
  margin-bottom: 40px;
  opacity: 0.9;
}

/* ================= RESPONSIVO ================= */

@media (max-width: 900px) {
  .about-hero {
    flex-direction: column;
  }

  .about-hero__image {
    height: 50vh;
  }

  .about-hero__content {
    padding: 60px 30px;
  }

  .about-highlights {
    grid-template-columns: 1fr;
  }
}

.emailShip{
    text-decoration: none;
    color: #000;
}

.emailShip:hover{
    text-decoration: none;
    color: #3e6fff;
}