/*
Theme Name: Lolliplanner
Theme URI: https://lolliplanner.com
Author: ChatGPT
Description: Tema moderno para papelaria criativa.
Version: 1.0
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@500;600;700;800&display=swap');

/* =========================
RESET
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    background:#FFF9FC;
    color:#2A2A2A;
    overflow-x:hidden;
    line-height:1.6;
    padding-top:90px;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

.container{
    width:90%;
    max-width:1200px;
    margin:0 auto;
}

h1,h2,h3,h4,h5,h6{
    font-family:'Poppins',sans-serif;
}

/* =========================
HEADER
========================= */

header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:999;
    background:rgba(255,255,255,0.92);
    backdrop-filter:blur(12px);
    border-bottom:1px solid #FFE5F1;
}

.header-container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
    padding:20px 0;
}

.logo a{
    display:flex;
    align-items:center;
    color:#FF8FC7;
    font-weight:800;
    font-size:30px;
}

.logo img{
    max-height:55px;
    width:auto;
}

.logo span{
    font-size:30px;
    font-weight:800;
}

/* =========================
MENU
========================= */

.main-menu ul{
    display:flex;
    align-items:center;
    gap:35px;
    list-style:none;
}

.main-menu a{
    color:#8B5CF6; !important;
    font-weight:600;
    transition:0.3s;
}

.main-menu a:hover{
    color:#FF5FA2; !important;
}

/* =========================
BUTTONS
========================= */

.btn-primary{
    display:inline-block;
    padding:14px 28px;
    background:linear-gradient(135deg,#FF8FC7,#CDB4FF);
    color:#fff;
    border-radius:14px;
    font-weight:600;
    transition:0.3s;
    box-shadow:0 10px 30px rgba(255,143,199,0.20);
}

.btn-primary:hover{
    transform:translateY(-3px);
}

/* =========================
HERO
========================= */

/* =========================
HERO
========================= */

.hero{
    min-height:700px;
    display:flex;
    align-items:center;
    background:linear-gradient(135deg,#FFF0F7,#F6F1FF);
}

.hero-content{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.hero-text h1{
    font-size:64px;
    line-height:1.1;
    margin-bottom:25px;
}

.hero-text p{
    font-size:20px;
    margin-bottom:35px;
    color:#5B5B5B;
}

.hero-image img{
    width:100%;
    border-radius:32px;
    box-shadow:0 20px 60px rgba(0,0,0,0.08);
}
/* =========================
SECTIONS
========================= */

section{
    padding:90px 0;
}

.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title h2{
    font-size:42px;
    margin-bottom:15px;
}

/* =========================
PRODUCTS
========================= */

.featured-products{
    background:#fafafa;
    text-align:center;
}

.products-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
    margin-top:40px;
}

.product-card{
    background:white;
    padding:24px;
    border-radius:24px;
    box-shadow:0 4px 15px rgba(0,0,0,0.05);
    transition:0.3s;
}

.product-card:hover{
    transform:translateY(-6px);
}

.product-image{
    height:220px;
    border-radius:18px;
    overflow:hidden;
    margin-bottom:20px;
}

.product-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* =========================
DEFAULT PAGES
========================= */

.page-banner{
    padding:120px 20px 80px;
    background:linear-gradient(135deg,#ff5fa2,#ff89c2);
    color:white;
    text-align:center;
}

.page-banner h1{
    font-size:52px;
}

.page-content{
    padding:80px 20px;
}

.page-content .container{
    max-width:1000px;
}

.page-content p{
    margin-bottom:20px;
    font-size:18px;
    line-height:1.8;
}

/* =========================
FOOTER
========================= */

footer{
    background:white;
    padding:60px 0;
    border-top:1px solid #FFE5F1;
}

.footer-content{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
}

.footer-links{
    display:flex;
    gap:25px;
}

.footer-links a{
    color:#5B5B5B;
    transition:0.3s;
}

.footer-links a:hover{
    color:#FF8FC7;
}

.footer-brand a{
    color:#8B5CF6; !important;
}

/* =========================
MOBILE MENU
========================= */

.menu-toggle{
    display:none;
    font-size:30px;
    cursor:pointer;
}

.mobile-menu{
    position:fixed;
    top:0;
    right:-100%;
    width:300px;
    height:100vh;
    background:white;
    z-index:9999;
    padding:120px 40px;
    transition:0.4s;
    box-shadow:-10px 0 30px rgba(0,0,0,0.08);
}

.mobile-menu.active{
    right:0;
}

.mobile-menu ul{
    list-style:none;
    display:flex;
    flex-direction:column;
    gap:30px;
}

.mobile-menu a{
    color:#8B5CF6; !important;
    font-size:22px;
    font-weight:600;
    transition:0.3s;
}

.mobile-menu a:hover{
    color:#FF5FA2; !important;
}

.overlay{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100vh;
    background:rgba(0,0,0,0.3);
    opacity:0;
    visibility:hidden;
    transition:0.4s;
    z-index:9998;
}

.overlay.active{
    opacity:1;
    visibility:visible;
}

/* =========================
RESPONSIVE
========================= */

@media(max-width:992px){

    .main-menu{
        display:none;
    }

    .menu-toggle{
        display:block;
    }

    .desktop-btn{
        display:none;
    }

    .category-grid,
    .products-grid{
        grid-template-columns:1fr;
    }

    .footer-content{
        flex-direction:column;
        text-align:center;
    }

    .hero h1{
        font-size:42px;
    }

    .page-banner h1{
        font-size:40px;
    }
}

@media(max-width:768px){

    body{
        padding-top:80px;
    }

    section{
        padding:70px 0;
    }

    .hero{
        min-height:500px;
    }

    .hero h1{
        font-size:36px;
    }

    .hero p{
        font-size:18px;
    }

    .btn-primary{
        width:100%;
        text-align:center;
    }

    .mobile-menu{
        width:100%;
    }
}

/* =========================
WHATSAPP FLOAT
========================= */

.whatsapp-float{
    position:fixed;
    right:25px;
    bottom:25px;
    background:#25D366;
    color:white;
    padding:16px 22px;
    border-radius:999px;
    font-weight:700;
    z-index:9999;

    display:flex;
    align-items:center;
    gap:12px;

    box-shadow:0 10px 30px rgba(37,211,102,0.30);
    transition:0.3s;

    animation:whatsappPulse 2s infinite;
}

.whatsapp-float i{
    font-size:28px;
}

.whatsapp-float:hover{
    transform:translateY(-4px) scale(1.05);
}

/* =========================
SOCIAL LINKS
========================= */

.footer-social{
    display:flex;
    gap:20px;
}

.footer-social a{
    display:flex;
    align-items:center;
    gap:8px;
    color:#5B5B5B;
    font-weight:600;
    transition:0.3s;
}

.footer-social a:hover{
    color:#FF8FC7;
}

.footer-social i{
    font-size:20px;
}