@font-face {
    font-family: 'Autography';
    src: url('../Assets/fonts/Autography.otf') format('opentype');
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #2e75b3;
}

html {
    scroll-behavior: smooth;
}

.container {
    width: 80%;
    margin: 0 auto;
    max-width: 1100px;
}

.titulo {
    color: #FFF;
}

.paragraphy {
    color: #FFF;
}


header {
    background: #ffffff;
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: background-color 0.4s ease, color 0.4s ease;
}

header.transparent-header {
    background: transparent;
    box-shadow: none;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 60px;
    width: auto;
    transition: filter 0.4s ease;
}

header.transparent-header .logo-img {
    filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.5));
}

.logo-text {
    display: flex;
    flex-direction: column;
    margin-left: 12px;
    line-height: 1.2;
}

.brand-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #003B4E;
    transition: color 0.4s ease;
}

.brand-tagline {
    font-size: 0.9rem;
    font-weight: 500;
    color: #DAA520;
    transition: color 0.4s ease;
}

header.transparent-header .brand-name,
header.transparent-header .brand-tagline {
    color: #ffffff;
}


header nav.main-nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

header nav.main-nav ul li {
    margin: 0;
}

header nav.main-nav a {
    color: #19a5d4;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 5px;
    transition: color 0.4s ease;
}

header.transparent-header nav.main-nav a {
    color: #ffffff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

header nav.main-nav a:hover {
    color: #005f73;
}

header.transparent-header nav.main-nav a:hover {
    color: #dddddd;
}


.hamburger-menu {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: #19a5d4;
    cursor: pointer;
    z-index: 1001;
}

header.transparent-header .hamburger-menu {
    color: #ffffff;
}



.hero {
    position: relative;
    color: #fff;
    text-align: center;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #02acee;
    padding-top: 92px;
}

#hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 1;
}

.hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(52, 143, 204, 0.3);
    z-index: 2;
}

.hero .container {
    position: relative;
    z-index: 3;
}

.hero h2 {
    font-size: 4rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero h2 .slogan {
    font-family: 'Autography', cursive;
    display: block;
    font-size: 3rem;
    font-weight: normal;
    margin-top: 10px;
}

.hero p {
    font-size: 1.2rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
    margin-bottom: 30px;
}

.btn {
    background: #4DA6FF;
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1rem;
    transition: background-color 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn:hover {
    background: #3385FF;
}


.section {
    padding: 60px 0;
    text-align: center;
}

.section h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.bg-light {
    background-color: #f4f4f4;
}

.grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.card {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-10px);
}

.card .icon {
    font-size: 3rem;
    color: #3399FF;
    margin-bottom: 20px;
}

.card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.card-peca {
    background: #19a5d4;
    color: #ffff;
    padding: 20px;
    border-radius: 5px;
}


.grid-produtos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin: 40px auto 0;
    padding: 0 15px;
    max-width: 800px;
}

.card-produto {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    flex-basis: 350px;

}

.card-produto:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.produto-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.produto-conteudo {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.produto-titulo {
    font-size: 1.5rem;
    color: #003366;
    margin-top: 0;
    margin-bottom: 10px;
}

.produto-descricao {
    font-size: 1rem;
    color: #555;
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}

.btn-detalhes {
    display: inline-block;
    background-color: #003366;
    color: #fff;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: bold;
    text-align: center;
    transition: background-color 0.3s ease;
}

.btn-detalhes:hover {
    background-color: #002244;
}


.acordeon-vagas {
    margin-top: 40px;
    text-align: left;
}

.vaga-item {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 5px rgba(235, 231, 231, 0.05);
    overflow: hidden;
}

.vaga-header {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.vaga-header:hover {
    background-color: #f9f9f9;
}

.vaga-header h3 {
    margin: 0;
    font-size: 1.2rem;
    color: #0ca6ee;
}

.vaga-header span i {
    font-size: 1.1rem;
    color: #2575ca;
    transition: transform 0.3s ease;
}

.vaga-header.active span i {
    transform: rotate(45deg);
}

.vaga-detalhes {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
    padding: 0 25px;
    color: #000000;
}

.vaga-header.active+.vaga-detalhes {
    padding: 10px 25px 30px 25px;
}

.vaga-detalhes h4 {
    margin-top: 20px;
    margin-bottom: 10px;
    border-left: 4px solid #9ec3e7;
    padding-left: 10px;
}

.vaga-detalhes ul {
    list-style-position: inside;
    margin-left: 10px;
}


.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    transition: transform 0.3s;
    z-index: 100;
}

.whatsapp-button:hover {
    transform: scale(1.1);
}

.btn-forms {
    display: inline-flex;
    align-items: center;
    background: #02acee;
    color: #fff;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1rem;
    margin-top: 15px;
    transition: background-color 0.3s;
}

.btn-forms:hover {
    background: #19a5d4;
}

.btn-forms .fas {
    margin-right: 10px;
    font-size: 1.2rem;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #25D366;
    color: #ffffff;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    margin-top: 20px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    background-color: #1DAA53;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.btn-whatsapp .fab {
    font-size: 1.2rem;
    margin-right: 10px;
}


.typewriter {
    border-right: 4px solid white;
    white-space: nowrap;
    overflow: hidden;
    animation: blinking-cursor .75s step-end infinite;
}

@keyframes blinking-cursor {

    from,
    to {
        border-color: transparent
    }

    50% {
        border-color: white;
    }
}

.hero h2 .slogan {
    opacity: 0;
    transition: opacity 1s ease-in-out;
    transition-delay: 0.5s;
}

.hero h2 .slogan.visible {
    opacity: 1;
}

.typing-done .typewriter {
    border-right: 4px solid transparent;
    animation: none;
}


.gallery-section {
    padding-bottom: 0;
}

.swiper-container {
    width: 100%;
    margin-top: 40px;
    padding: 0 0 40px 0;
}

.swiper {
    width: 90%;
    max-width: 1200px;
    height: 600px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img,
.swiper-slide video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

:root {
    --swiper-navigation-color: #ffffff;
    --swiper-pagination-color: #ffffff;
    --swiper-navigation-size: 30px;
}

.swiper-button-next,
.swiper-button-prev {
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}


.contato-section .container {
    max-width: 800px;
}

.contact-form {
    margin-top: 40px;
    text-align: left;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #ffffff;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #19a5d4;
    box-shadow: 0 0 5px rgba(25, 165, 212, 0.5);
}

.btn-submit {
    display: block;
    width: 100%;
    padding: 15px;
    background-color: #19a5d4;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #0077b6;
}


.note-block {
    max-width: 400px;
    margin: 50px auto;
    padding: 20px;
    background: #fff8dc;
    border: 2px solid #d4af37;
    border-radius: 8px;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.1);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    position: relative;
}

.note-block::before {
    content: "";
    position: absolute;
    top: 0;
    left: 40px;
    width: 2px;
    height: 100%;
    background: rgba(255, 0, 0, 0.3);
}

.note-block h2 {
    margin: 0;
    font-size: 1.2rem;
    text-align: center;
    color: #333;
}

.card-empresas {
    max-width: 900px;
    margin: 60px auto;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    padding: 30px;
    text-align: center;
}

.card-empresas h2 {
    margin-bottom: 20px;
    font-size: 22px;
    color: #333;
}

.grid-empresas {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    justify-items: center;
    align-items: center;
}

.grid-empresas img {
    width: 150px;
    height: 100px;
    border-radius: 10px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.grid-empresas img:hover {
    transform: scale(1.05);
}


.carrossel-credenciadas {
    text-align: center;
    padding: 40px 20px;
}

.carrossel-credenciadas h2 {
    margin-bottom: 20px;
    font-size: 1.8rem;
    font-weight: 600;
    color: #ffffff;
}

.carrossel-container {
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.carrossel-track {
    display: flex;
    align-items: center;
    animation: scroll 20s linear infinite;
}

.carrossel-track img {
    width: 120px;
    height: auto;
    margin: 15px 25px;
    flex-shrink: 0;
    transition: transform 0.3s;
}

.carrossel-track img:hover {
    transform: scale(1.1);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}


footer {
    background-color: #002333;
    color: #e0e0e0;
    padding: 60px 0 20px 0;
    line-height: 1.7;
    text-align: left;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h4 {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: #19a5d4;
}

.footer-column p {
    margin: 0;
    color: #b0b0b0;
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-list li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.footer-contact-list a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-list a:hover {
    color: #19a5d4;
}

.footer-contact-list i {
    font-size: 1.1rem;
    color: #19a5d4;
    margin-right: 15px;
    width: 20px;
}

.footer-social-icons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.footer-social-icons a {
    color: #ffffff;
    font-size: 2rem;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.footer-social-icons a:hover {
    color: #19a5d4;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid #334;
    font-size: 0.9rem;
    color: #888;
}


@media (max-width: 992px) {
    .grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width: 768px) {
    .container {
        width: 90%;
    }

    .hero h2 {
        font-size: 3rem;
    }

    .hero h2 .slogan {
        font-size: 2.2rem;
    }

    .section h2 {
        font-size: 2rem;
    }

    .brand-name {
        font-size: 1.2rem;
    }

    .brand-tagline {
        font-size: 0.8rem;
    }

    .hamburger-menu {
        display: block;
    }

    nav.main-nav {
        display: none;
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background: #ffffff;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.4s ease-in-out;
    }

    nav.main-nav.active {
        display: flex;
        right: 0;
    }

    nav.main-nav ul {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }

    nav.main-nav ul li {
        margin: 20px 0;
        text-align: center;
    }

    nav.main-nav a,
    header.transparent-header nav.main-nav a {
        color: #19a5d4;
        text-shadow: none;
    }

    .grid-empresas {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-column h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-contact-list li,
    .footer-social-icons {
        justify-content: center;
    }
}

@media (max-width: 576px) {


    .grid,
    .grid-empresas {
        grid-template-columns: 1fr;
    }

    .card-produto {
        flex-basis: 100%;
        max-width: 350px;
    }

    .hero h2 {
        font-size: 2.5rem;
    }

    .hero h2 .slogan {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }
}


#hero-video {
    display: block;
}


@media (max-width: 768px) {
    #hero-video {
        display: none;
    }

    .hero {
        background: url('../Assets/img/banner_piscinaFOTO.jpg') no-repeat center center;
        background-size: cover;
        min-height: 100vh;
        padding-top: 92px;
    }
}
/* ======== MENU DE CATEGORIAS ======== */
.menu-categorias {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
    justify-items: center;
    margin-top: 40px;
}

.categoria {
    background: #003B4E;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    padding: 14px 18px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.categoria:hover {
    background: #005f73;
    transform: translateY(-3px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.3);
}

.categoria i {
    font-size: 1.1rem;
}

/* Ajuste para telas menores */
@media (max-width: 768px) {
    .menu-categorias {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 12px;
    }

    .categoria {
        font-size: 0.9rem;
        padding: 12px;
    }
}

/* Créditos do Rodapé (Bourbaki) */
.footer-credits {
  margin-top: 1.5rem; /* mt-6 */
  font-size: 0.875rem; /* text-sm */
  color: #9ca3af; /* text-gray-400 */
  text-align: center;
}

.footer-credits p {
  margin-bottom: 0.5rem; /* mb-2 */
}

.footer-credits a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem; /* gap-2 */
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.footer-credits a:hover {
  opacity: 0.8; /* hover:opacity-80 */
}

.footer-credits img {
  height: 1.75rem; /* h-7 */
}

.footer-credits span {
  color: #f59e0b; /* text-amber-400 */
  font-weight: 600; /* font-semibold */
}

/* Responsividade */
@media (min-width: 768px) {
  .footer-credits {
    text-align: right;
  }
}
