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

/* ================= TIPOGRAFIA ================= */
header,
section h2,
section h3,
form button {
    font-family: "Bungee", cursive;
    font-weight: normal;
}

body,
input,
textarea {
    font-family: "Roboto", sans-serif;
    padding-top: 80px;
}

/* ================= LAYOUT BASE ================= */
.container {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 0 16px;
}

section {
    padding: 24px 0;
    color: #a3468f;
}

section h2 {
    margin-bottom: 8px;
}

section h3 {
    margin-bottom: 16px;
}

section p {
    margin-bottom: 8px;
}


/* ================= HEADER ================= */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #a3468f;
    z-index: 1000;
}

header .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
}

header h1 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 12px;
    text-align: center;
}

header nav ul {
    display: flex;
    gap: 24px;
    justify-content: center;
}

header nav li {
    list-style: none;
}

header nav li a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
}


/* ================= HERO ================= */
.hero {
    background: linear-gradient(rgba(163, 70, 143, 0.9),
            rgba(163, 70, 143, 0.9)),
        url("./midia/IMG-20240914-WA0017.jpg") center/cover no-repeat;
    color: #fff;
    padding: 120px 0;
}

.hero-content {
    display: flex;
    justify-content: center;
    text-align: center;
}

.hero-text h2 {
    font-size: 32px;
    margin-bottom: 16px;
}

.hero-text p {
    font-size: 18px;
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ================= BOTÕES ================= */
.btn-primary,
.btn-secondary {
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
}

.btn-primary {
    background-color: #fff;
    color: #a3468f;
}

.btn-primary:hover {
    background-color: #f2f2f2;
}

.btn-secondary {
    border: 2px solid #fff;
    color: #fff;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* ================= SOBRE ================= */
.about-content {
    display: flex;
    align-items: center;
    text-align: center;
    flex-direction: column;
    gap: 32px;
}

.about-text {
    width: 100%;
    max-width: 800px;
    font-size: 16px;
    line-height: 1.5;
}

.about-list {
    list-style: none;
    margin-top: 16px;
}

.about-list li {
    margin-bottom: 8px;
}

/* ================= CARROSSEL ================= */
.carousel-loja {
    max-width: 1200px;
    width: 100%;
    height: 420px;
    margin: 40px auto;
    position: relative;
    overflow: hidden;
}



.carousel-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    display: none;
}

.carousel-image.active {
    display: block;
}



.carousel-buttons {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
}

.carousel-btn {
    background-color: rgba(163, 70, 143, 0.5);
    color: #fff;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 4px;
    cursor: pointer;
}

.carousel-btn:hover {
    background-color: rgba(131, 70, 118, 0.5);
}

/* ================= GALERIA ================= */
.brands-list {
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    list-style: none;
    justify-content: center;
}

.brands-list li {
    border-radius: 8px;
    overflow: hidden;
}

.brands-list img {
    width: 100%;
    height: 140px;
    ;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.brands-list img:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* ================= WORK CARD ================= */
.work-card {
    width: 180px;
    background: #fff;
    border-radius: 12px;
    padding: 8px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

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

.work-card span {
    margin: 8px 0;
    display: block;
    font-weight: bold;
}

.work-card a {
    display: inline-block;
    background-color: #a3468f;
    color: #fff;
    padding: 6px 12px;
    border-radius: 6px;
    text-decoration: none;
}

/* ================= FORM ================= */
form input,
form textarea,
form button {
    width: 320px;
    padding: 8px;
    margin-bottom: 8px;
}

form textarea {
    resize: none;
    height: 180px;
}

form button {
    background-color: #a3468f;
    color: #fff;
    border: none;
    cursor: pointer;
}

form button:hover {
    background-color: #834676;
}

input:focus,
textarea:focus {
    outline: 2px solid #a3468f;
}

/* ================= MODAL ================= */
.modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.modal-conteudo {
    max-width: 90%;
    max-height: 80vh;
    border-radius: 8px;
}

.modal-prev,
.modal-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    width: 30px;
    height: 30px;
    border: none;
    cursor: pointer;
}

.modal-prev {
    left: 10px;
}

.modal-next {
    right: 10px;
}

.fechar {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
}

/* ================= WHATSAPP ================= */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.whatsapp-float img {
    width: 32px;
}

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

    header .container,
    section .container,
    .about-content {
        flex-direction: column;
        text-align: center;
    }

    .about-text {
        width: 100%;
    }

    form input,
    form textarea,
    form button {
        width: 100%;
    }
}

/* ===== Layout correto da seção CONTATO ===== */

#contact .container {
    display: block;
}

#contact h2 {
    text-align: center;
}


#contact .contact-methods {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 24px;
    text-align: center;
    flex-wrap: wrap;
}

#contact .contact-methods>div {
    flex: 1;
}

/* Ícones das redes sociais */
.social-links li,
.social-contact li {
    display: inline-block;
    margin-right: 12px;
}

.social-links img,
.social-contact img {
    width: 24px;
    height: 24px;
}

/* ================= FOOTER ================= */
.footer-minimal {
    background-color: #9c4a8b;
    /* mesmo roxo */
    padding: 16px 0;
    text-align: center;
}

.footer-minimal p {
    margin: 0;
    color: #fff;
    font-size: 14px;
}



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

    #contact .contact-methods {
        flex-direction: column;
        /* UM EMBAIXO DO OUTRO */
        align-items: center;
        gap: 24px;
    }

    #contact .contact-methods>div {
        width: 100%;
        max-width: 320px;
    }

    #contact h2 {
        text-align: center;
    }

    .social-links,
    .social-contact {
        display: flex;
        justify-content: center;
        gap: 16px;
    }

    .social-links img,
    .social-contact img {
        width: 28px;
        height: 28px;
    }
}

.theme-toggle {
    margin-top: 12px;
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    font-size: 18px;
    padding: 6px 10px;
    border-radius: 8px;
    display: block;
    margin: 12px auto 0 auto;
    cursor: pointer;
}

.theme-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
}

body.dark {
    background-color: #121212;
    color: #eaeaea;
}

/* Header */
body.dark header {
    background-color: #2b1b27;
}

/* Seções */
body.dark section {
    color: #eaeaea;
}

/* Cards */
body.dark .work-card {
    background-color: #1e1e1e;
}

/* Botões */
body.dark .btn-primary {
    background-color: #a3468f;
    color: #fff;
}

body.dark .btn-secondary {
    border-color: #fff;
    color: #fff;
}

/* Footer */
body.dark footer {
    background-color: #2b1b27;
}