/* VARIÁVEIS DE COR */
:root {
    --roxo: #6A0DAD;
    --roxo-claro: #8A2BE2;
    --amarelo: #FFD700;
    --azul: #1E90FF;
    --azul-escuro: #0D1B2A;
    --branco: #FFFFFF;
    --cinza-claro: #F5F5F5;
    --sombra: 0 4px 20px rgba(0,0,0,0.1);
}

/* RESET E ESTILOS GERAIS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: var(--cinza-claro);
    overflow-x: hidden;
}

/* Acessibilidade: link para pular conteúdo */
.skip-to-content {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.skip-to-content:focus {
    position: fixed;
    left: 20px;
    top: 20px;
    width: auto;
    height: auto;
    padding: 10px 14px;
    background: #000;
    color: #fff;
    border-radius: 6px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.25);
    z-index: 10000;
}

h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    color: var(--roxo);
}

a {
    text-decoration: none;
    color: var(--roxo-claro);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--azul);
}

a[target="_blank"] {
    cursor: alias;
}

img {
    max-width: 100%;
    border-radius: 8px;
    height: auto;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--roxo), var(--azul));
    color: var(--branco);
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 600;
    text-align: center;
    border: none;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    margin: 10px 0;
}

.btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(106, 13, 173, 0.4);
}

.btn-amarelo {
    background: linear-gradient(135deg, var(--amarelo), #FFA500);
    color: #000;
}

section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    display: inline-block;
    position: relative;
    margin-bottom: 15px;
}

.section-title h2:after {
    content: "";
    position: absolute;
    width: 70%;
    height: 4px;
    background: linear-gradient(to right, var(--amarelo), var(--roxo));
    bottom: -10px;
    left: 15%;
    border-radius: 2px;
}

/* HEADER */
header {
    background: linear-gradient(135deg, var(--roxo), var(--azul-escuro));
    color: var(--branco);
    padding: 15px 0;
    box-shadow: var(--sombra);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo h1 {
    font-size: 1.8rem;
    color: var(--branco);
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.logo span {
    color: var(--amarelo);
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    color: var(--branco);
    font-weight: 600;
    font-size: 1.05rem;
}

nav ul li a:hover {
    color: var(--amarelo);
}

/* HERO SECTION */
.hero {
    background: linear-gradient(rgba(26, 26, 46, 0.8), rgba(26, 26, 46, 0.9)), url('https://blog.miess.com.br/wp-content/uploads/2023/08/Produtos-sex-shop.jpg') center/cover no-repeat;
    color: var(--branco);
    text-align: center;
    padding: 120px 0;
}

.hero h2 {
    font-size: 3rem;
    color: var(--branco);
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    line-height: 1.2;
}

.hero p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

/* PRODUTOS */
.produtos {
    background-color: var(--branco);
}

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

.produto-card {
    background: var(--branco);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--sombra);
    transition: transform 0.3s;
}

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

.produto-img {
    height: 220px;
    background-color: #f8f8f8;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.produto-img img {
    max-height: 180px;
    width: auto;
    aspect-ratio: 1 / 1;
    object-fit: contain;
}

.produto-info {
    padding: 20px;
    background: linear-gradient(to bottom, var(--roxo), var(--azul-escuro));
    color: var(--branco);
}

.produto-info h3 {
    margin-bottom: 10px;
    font-size: 1.4rem;
    color: var(--amarelo);
}

.produto-info p {
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.produto-info .btn {
    width: 100%;
    padding: 10px;
    font-size: 0.9rem;
}

/* SOBRE */
.sobre {
    background: linear-gradient(to bottom, var(--cinza-claro), var(--branco));
}

.sobre-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.sobre-texto h2 {
    font-size: 2.3rem;
    margin-bottom: 20px;
}

.sobre-texto p {
    margin-bottom: 15px;
}

.sobre-img {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--sombra);
    position: relative;
}

.sobre-img:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--roxo), var(--azul));
    opacity: 0.3;
    z-index: 1;
}

.sobre-img img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.destaques {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.destaque-item {
    text-align: center;
    padding: 20px;
    background: var(--branco);
    border-radius: 10px;
    box-shadow: var(--sombra);
}

.destaque-item i {
    font-size: 2.5rem;
    color: var(--roxo);
    margin-bottom: 15px;
}

/* MIDIA */
.midia {
    background-color: var(--branco);
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.media-card {
    background: var(--cinza-claro);
    border-left: 5px solid var(--azul);
    padding: 25px;
    border-radius: 0 8px 8px 0;
    transition: all 0.3s;
}

.media-card:hover {
    transform: translateX(10px);
    box-shadow: var(--sombra);
}

.media-card h3 {
    color: var(--azul-escuro);
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.media-card p {
    margin-bottom: 15px;
    color: #444;
}

.media-card a {
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

.media-card a:after {
    content: "→";
    margin-left: 5px;
    transition: transform 0.3s;
}

.media-card a:hover:after {
    transform: translateX(3px);
}

/* FAQ */
.faq {
    background: var(--branco);
}

.faq-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.faq-item {
    background: var(--cinza-claro);
    border-radius: 10px;
    padding: 20px;
    box-shadow: var(--sombra);
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--azul-escuro);
}

.faq-item p {
    margin: 0;
}

/* SEO Curitiba Section */
.seo-curitiba {
    background: linear-gradient(to bottom, var(--branco), #fafafa);
}

.seo-curitiba article p + h3 {
    margin-top: 18px;
}

.seo-curitiba article p {
    margin-bottom: 12px;
}

.cta-grid {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.cta-card {
    background: var(--branco);
    border-radius: 10px;
    box-shadow: var(--sombra);
    padding: 20px;
}

.cta-card h3 {
    color: var(--azul-escuro);
    margin-bottom: 8px;
}

.cta-card p {
    margin-bottom: 12px;
}

.cta-card .microcopy {
    margin: 8px 0 0 18px;
    padding: 0;
    color: #444;
    font-size: 0.92rem;
    list-style: disc;
}

.cta-card .microcopy li + li {
    margin-top: 4px;
}

/* FOOTER */
footer {
    background: linear-gradient(135deg, var(--azul-escuro), var(--roxo));
    color: var(--branco);
    padding: 60px 0 30px;
}

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

.footer-col h4 {
    color: var(--amarelo);
    font-size: 1.4rem;
    margin-bottom: 20px;
}

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

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: var(--branco);
    opacity: 0.9;
}

.footer-col ul li a:hover {
    opacity: 1;
    color: var(--amarelo);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
    opacity: 0.8;
}

/* BOTÃO WHATSAPP */
.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: none; /* controlado por JS */
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    z-index: 100;
}

/* RESPONSIVIDADE */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        text-align: center;
    }

    nav ul {
        margin-top: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    nav ul li {
        margin: 5px 10px;
    }

    .hero {
        padding: 80px 0;
    }

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

    .sobre-content {
        grid-template-columns: 1fr;
    }

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

/* ANIMAÇÕES */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animated {
    animation: fadeIn 0.8s ease-out forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }
.delay-5 { animation-delay: 1.0s; }
