* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}

.navbar-toggler {
    border-color: rgba(255,255,255,0.3);
}

.navbar-toggler-icon {
    filter: invert(1);
}

.h1 {
    margin: 24px 0 8px;
    text-align: center;
    color: #0b3b5c;
    font-size: 2rem;
}


.p{
    margin: 0px;
    text-align: center;
    color: #000000;
    font-size: 1.1rem;
}

.produtos {
    line-height: 1.7;
    font-size: 1.05rem;
    text-align: center;
}

.simbolo-peixe{
    margin: 24px 0 8px;
    text-align: center;
    color: #0b3b5c;
    font-size: 2rem;
}
.h2-produtos {
    margin: 24px 0 8px;
    text-align: center;
    color: #0b3b5c;
    font-size: 1.5rem;
}

.b {
    font-weight: bold;
    color:#3e83b5
}

.lista-produtos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  padding: 20px;
}


/*estilo dos produtos*/

.card-polaroid {
  background: #fff;
  padding: 10px 10px 25px;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
  position: relative;
  text-align: center;
  transition: transform 0.2s ease;
}


.card-polaroid:hover {
  transform: rotate(-2deg) scale(1.03);
}


.card-polaroid img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 10px;
}


.card-polaroid h3 {
  margin-top: 10px;
  font-size: 18px;
}

.preco {
  margin-top: 5px;
  font-weight: bold;
  color: #2e7d32;
  font-size: 16px;
}


.selos {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  gap: 6px;
  z-index: 2;
}


.selo {
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(4px);
}


.encomenda {
  background: rgb(65, 83, 153);
  color: white;
}

.branco {
  background: #eee;
  color: black;
}

.rosa {
  background: pink;
  color: black;
}

.branca {
  background: #eee;
  color: black;
}

.amarela {
  background: #ebde72;
  color: black;
}

/* header */
.nav-item {
	display: inline-block;
	margin-right: 20px;
	font-size: 20px;
}

.nav-link {
	transition: 0.3s;
}

.nav-link.nav-link:hover {
	transform: translateY( -2px) scale(1.05);
}

 .nav-link:active {
    transform: scale(0.95);
}

.navbar {
    background-color: #081b2c!important;
}

.navbar .nav-link {
    color: #ffffff !important;
}

.navbar .nav-link:hover {
    color: #4db8ff!important;
}

/*footer */ 
.footer-custom {
    background-color: #072033;
}

.footer-custom h5 {
    color: #ffffff;
    margin-bottom: 15px;
}

.footer-custom li {
    color: #d1e7ff
}

.footer-custom a {
    color: #ffffff
}

.footer-custom a:hover {
    color: #4db8ff
}


/* Estilos para o carrossel */

.carousel {
    width: 100%;
    margin: 16px 0 32px;
    padding: 0 clamp(12px, 2vw, 28px) 52px;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    gap: 22px;
    align-items: stretch;
    will-change: transform;
}

.slide {
    flex: 0 0 clamp(220px, 22vw, 320px);
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.14);
}

.slide img {
    display: block;
    width: 100%;
    height: clamp(280px, 30vw, 420px);
    object-fit: cover;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    border: none;
    width: 52px;
    height: 68px;
    border-radius: 16px;
    background: rgba(11, 59, 92, 0.95);
    color: #fff;
    font-size: 36px;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(11, 59, 92, 0.22);
}

.carousel-btn.prev {
    left: 18px;
}

.carousel-btn.next {
    right: 18px;
}

.carousel-btn:hover {
    background: #08324f;
}

.carousel-btn:focus {
    outline: 2px solid rgba(11, 59, 92, 0.55);
    outline-offset: 3px;
}

.carousel-dots {
    position: absolute;
    left: 50%;
    bottom: 16px;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.carousel-dots button {
    width: 11px;
    height: 11px;
    border: none;
    border-radius: 999px;
    padding: 0;
    background: rgba(11, 59, 92, 0.24);
    cursor: pointer;
}

.carousel-dots button.active {
    background: #0b3b5c;
    transform: scale(1.2);
}

main,
.Diferenciais {
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
}

.produtos {
    line-height: 1.7;
    font-size: 1.05rem;
}

.h2,
.h2-diferenciais {
    color: #0b3b5c;
}

.diferenciais-lista {
    line-height: 1.7;
}

@media (max-width: 1100px) {
    .slide {
        flex-basis: clamp(240px, 30vw, 300px);
    }
}

@media (max-width: 860px) {
    .carousel {
        padding-left: 10px;
        padding-right: 10px;
    }

    .slide {
        flex-basis: min(70vw, 320px);
    }

    .carousel-btn.prev {
        left: 8px;
    }

    .carousel-btn.next {
        right: 8px;
    }
}

@media (max-width: 560px) {
    .slide {
        flex-basis: 86vw;
    }

    .slide img {
        height: 320px;
    }

    .carousel-btn {
        width: 44px;
        height: 58px;
        font-size: 30px;
    }
}

.cursor-water {
    position: fixed;
    width: 90px;
    height: 90px;
    border-radius: 50%;

    border: 2px solid rgba(0, 174, 255, 0.35);

    pointer-events: none;
    z-index: 9999;

    transform: translate(-50%, -50%);

    backdrop-filter: blur(2px);

    box-shadow:
        0 0 20px rgba(0,174,255,0.25),
        0 0 40px rgba(0,174,255,0.15);

    animation: waterWave 2s infinite ease-out;
}

@keyframes waterWave {

    0% {
        transform: translate(-50%, -50%) scale(0.9);
        opacity: 0.8;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.4);
        opacity: 0;
    }
}