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

body {
    overflow-x: hidden;
    background-color: #1abc9c;
}

/* NAVBAR */
.header {
    width: 100%;
    top: 0;
    z-index: 10;
}

.nav {
    margin: auto;
    padding: 12px 30px;
    display: flex;
    background-color: #fff;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.logo-header img {
    width: 200px;
    height: 100px;
    object-fit: cover;
}

.menu {
    display: flex;
    gap: 25px;
    align-items: center;
}

.menu a {
    text-align: center;
    text-decoration: none;
    color: #333;
    font-weight: 600;
    transition: 300ms;
}

.menu a:hover {
    transform: translateY(-2px);
}

.menu .active {
    color: #1abc9c;
}

.menu .btn-contato img {
    width: 20px;
    margin-right: 8px;
}

.menu .btn-contato {
    display: flex;
    align-items: center;
    background: #1abc9c;
    color: #fff;
    padding: 10px 18px;
    border-radius: 20px;
}

/* MOBILE MENU */
.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    z-index: 99;
}

@media (max-width: 768px) {

    .menu {
        position: absolute;
        top: 70px;
        right: 20px;
        background: #fff;
        flex-direction: column;
        width: 200px;
        padding: 20px;
        border-radius: 10px;
        display: none;
    }

    .menu.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
        z-index: 99;
    }

}

/* DROPDOWN */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    background: none;
    border: none;
    font-weight: 600;
    cursor: pointer;
    color: #333;
    font-size: 16px;
}

/* MENU ESCONDIDO */
.dropdown-menu {
    position: absolute;
    top: 120%;
    left: 0;
    background: #fff;
    min-width: 200px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.3s;

    display: flex;
    flex-direction: column;
    z-index: 99;
}

.dropdown-menu a {
    padding: 12px 15px;
    text-decoration: none;
    color: #333;
    transition: 0.3s;
}

.dropdown-menu a:hover {
    background: #f5f5f5;
}

/* QUANDO ATIVO */
.dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* PRODUTO */
/* CONTAINER */
.container {
    display: flex;
    gap: 50px;
    padding: 60px;
    max-width: 1200px;
    margin: auto;
}

/* GALERIA */
.galeria {
    width: 50%;
}

.principal {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
}

.thumbs {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.thumbs img {
    width: 80px;
    object-fit: cover;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
}

.thumbs img:hover {
    transform: scale(1.05);
}

/* INFO */
.info {
    width: 50%;
}

.info h1 {
    font-size: 28px;
    color: #fff;
    margin-bottom: 15px;
}

.descricao {
    color: #fff;
    margin-bottom: 20px;
}

.dados p {
    color: #fff;
    margin-bottom: 8px;
    font-size: 14px;
}

/* APLICAÇÕES */
.aplicacoes {
    margin: 20px 0;
}

.box {
    border: 1px solid #fff;
    color: #fff;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 10px;
}

/* BOTÕES */
.acoes {
    width: 100%;
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.acoes img {
    width: 20px;
    margin-right: 8px;
}

.btn {
    padding: 12px 20px;
    text-decoration: none;
    border-radius: 6px;
    margin-right: 10px;
    font-weight: bold;
    transition: 0.3s;
}

.btn img {
    width: 20px;
    margin-right: 8px;
}

/* CORES LPTA */
.primary {
    background: #fff;
    color: #16a085;
    display: flex;
    align-items: center;
}

.primary:hover {
    background: #ededed;
    transform: scale(0.97);
}

.secondary {
    display: flex;
    align-items: center;
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.secondary:hover {
    color: #fff;
    transform: scale(0.97);
}

/* CTA */
.cta {
    background: url('img/bg.jpg') center/cover no-repeat;
    padding: 80px 20px;
    text-align: center;
    color: white;
}

.cta-content {
    background: rgba(0,0,0,0.6);
    padding: 40px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta h2 {
    margin-bottom: 10px;
}

.cta p {
    margin-bottom: 20px;
    font-size: 18px;
}

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

/* TABLET */
@media (max-width: 1024px) {
    .container {
        gap: 30px;
        padding: 40px 20px;
    }

    .principal {
        height: 300px;
    }

    .info h1 {
        font-size: 24px;
    }
}

/* MOBILE */
@media (max-width: 768px) {

    .container {
        flex-direction: column;
        padding: 30px 20px;
        gap: 25px;
    }

    .galeria,
    .info {
        width: 100%;
    }

    .principal {
        height: 250px;
    }

    .thumbs {
        justify-content: center;
        flex-wrap: wrap;
    }

    .thumbs img {
        width: 60px;
    }

    .info h1 {
        font-size: 22px;
        text-align: center;
    }

    .descricao,
    .dados p {
        text-align: center;
    }

    .aplicacoes {
        text-align: center;
    }

    .box {
        text-align: left;
    }

    /* BOTÕES EM COLUNA */
    .acoes {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }
}

/* MOBILE PEQUENO */
@media (max-width: 480px) {

    .principal {
        height: 200px;
    }

    .info h1 {
        font-size: 18px;
    }

    .descricao {
        font-size: 14px;
    }

    .dados p {
        font-size: 13px;
    }

    .thumbs img {
        width: 50px;
    }
}

/* ===================== FOOTER ===================== */
.footer {
    background-color: #101010;
    color: #fff;
    padding-top: 60px;
}

.logo-footer img {
    width: 100%;
    max-width: 2000px;
    height: 200px;
    object-fit: cover;
    margin-bottom: 20px;
}

.footer-container {
    display: flex;
    gap: 40px;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0 20px 40px;
}

.footer-col {
    flex: 1;
    min-width: 180px;
}

.footer-col h4 {
    margin-bottom: 15px;
}

.footer-col p {
    font-size: 14px;
    margin-bottom: 10px;
    line-height: 1.5;
}

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

.footer-col ul li {
    margin-bottom: 8px;
    font-size: 14px;
}

.footer-col a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    transition: 0.3s;
}

.footer-col a img {
    width: 24px;
    height: 24px;
}

.footer-col a:hover {
    opacity: 0.7;
}

.socials {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 100px;
}

.footer-bottom {
    text-align: center;
    padding: 15px;
    background: rgba(0, 0, 0, 0.2);
    font-size: 13px;
}

.footer-bottom a {
    color: #1abc9c;
    text-decoration: none;
    font-weight: bold;
    transition: 300ms;
}

.footer-bottom a:hover {
    color: #ff3131;
}

/* ===================== RESPONSIVO ===================== */
@media (max-width: 768px) {
    .hero {
        height: 70vh;
    }

    .processo-wrapper {
        flex-direction: column;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .socials {
        align-items: center;
    }

    .footer-col h4,
    .footer-col p,
    .footer-col ul,
    .footer-col li,
    .footer-col a {
        text-align: center;
        display: flex;
        justify-content: center;
        flex-direction: column;
    }
}
