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

:root {
    --bg-main: #ffffff;
    --bg-secondary: #ffffff;

    --gradient-main: linear-gradient(135deg, #fff 0%, #f8ecfb 40%, #f3ead9 100%);
    --gradient-soft: linear-gradient(180deg, #ffffff 0%, #f8ecfb 100%);

    --accent: #c060cd;
    --accent-hover: #a84ab5;

    --text-main: #2d1b10;
    --text-muted: #7a5c3a;

    --border: rgba(192, 96, 205, 0.25);

    --footer-bg: #2c1a0e;
    --footer-text: #f1dfc7;
}

/* MODO NOTURNO */
body.dark {
    --bg-main: #1a1a2e;
    --bg-secondary: #16213e;
    --gradient-main: linear-gradient(135deg, #1a1a2e 0%, #2d1b3d 40%, #1a1a2e 100%);
    --gradient-soft: linear-gradient(180deg, #1a1a2e 0%, #2d1b3d 100%);
    --text-main: #f0e6ff;
    --text-muted: #b8a0d0;
    --border: rgba(192, 96, 205, 0.3);
}

body.dark .navbar {
    background: linear-gradient(180deg, #1a1a2e 0%, #2d1b3d 100%);
}

body.dark .navbar-search {
    background: #2d1b3d;
    color: #f0e6ff;
}

body.dark .navbar-search input {
    color: #f0e6ff;
}

body.dark .mobile-menu {
    background: #1a1a2e;
}

body.dark .msg-bubble {
    background: #2d1b3d;
}

body.dark .sobre-card {
    background: rgba(45, 27, 61, 0.8);
}

body.dark .cat-card {
    background: #2d1b3d;
}

body.dark .recipe-card {
    background: #2d1b3d;
}

body.dark .recipe-ingredients,
body.dark .recipe-method {
    background: #2d1b3d;
}

body.dark .recipe-action-btn {
    background: #2d1b3d;
}

body.dark .contato-section {
    background: #1a1a2e;
}

body.dark .sobre-section {
    background: linear-gradient(180deg, #1a1a2e 0%, #2d1b3d 100%);
}

body.dark .categorias-section {
    background: linear-gradient(180deg, #2d1b3d 0%, #1a1a2e 100%);
}

body.dark .receitas-section {
    background: linear-gradient(180deg, #2d1b3d 0%, #1a1a2e 100%);
}

body.dark .recipe-page {
    background: linear-gradient(135deg, #1a1a2e 0%, #2d1b3d 40%, #1a1a2e 100%);
}

body.dark .filtro-pill {
    background: #2d1b3d;
}

body.dark .msgs-section {
    background: linear-gradient(180deg, #1a1a2e 0%, #2d1b3d 100%);
}

/* Botão modo noturno */
.dark-toggle {
    background: none;
    border: 1.5px solid var(--border);
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-muted);
}

.dark-toggle:hover {
    border-color: var(--accent);
    color: var(--accent);
}

* {
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32'%3E%3Ccircle cx='16' cy='16' r='6' fill='%23c060cd'/%3E%3Ccircle cx='16' cy='16' r='6' fill='none' stroke='white' stroke-width='2'/%3E%3C/svg%3E") 16 16, auto;
}
a, button, [role="button"], input, label, select {
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32'%3E%3Ccircle cx='16' cy='16' r='9' fill='%23c060cd' opacity='0.25'/%3E%3Ccircle cx='16' cy='16' r='5' fill='%23c060cd' stroke='white' stroke-width='2'/%3E%3C/svg%3E") 16 16, pointer;
}

body { 
    font-family: 'Nunito', sans-serif; 
    background: var(--gradient-main);
    color: var(--text-main); 
}

/*ANIMAÇÕES */
@keyframes pulse-circle {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.09); opacity: 0.65; }
}

@keyframes float-bubble {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

@keyframes scroll-msgs {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@keyframes blobMove {
    0% {
        transform: translate(-20px, 0px) scale(1.11);
    }
    50% {
        transform: translate(30px, -20px) scale(0.6);
    }
    100% {
        transform: translate(-10px, 25px) scale(0.95);
    }
}

/*SCROLL REVEAL */
.reveal { 
    opacity: 0; 
    transform: translateY(32px); 
    transition: opacity 0.7s ease, transform 0.7s ease; 
}

.reveal.visible { 
    opacity: 1; 
    transform: translateY(0); 
}


/* NAVBAR */

.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: linear-gradient(180deg, #ffffff 0%, #f8ecfb 100%);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(192, 96, 205, 0.15);
    box-shadow: 0 2px 16px rgba(192, 96, 205, 0.07);
    height: 80px;
    display: flex;
    align-items: center;
    padding: 0 48px;
    gap: 24px;
}

.navbar-logo img { 
    height: 58px; 
}

.navbar-search {
    flex: 1;
    max-width: 380px;
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 1px solid rgba(192, 96, 205, 0.25);
    border-radius: 999px;
    padding: 10px 18px;
    gap: 8px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.navbar-search:focus-within {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(192, 96, 205, 0.1);
}

.navbar-search input {
    border: none;
    outline: none;
    background: transparent;
    font-family: 'Nunito', sans-serif;
    font-size: 14px;
    width: 100%;
    color: var(--text-main);
}

.navbar-links {
    display: flex;
    gap: 28px;
    margin-left: auto;
    list-style: none;
}

.navbar-links a {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
    position: relative;
}

.navbar-links a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    border-radius: 999px;
    transition: width 0.25s;
}

.navbar-links a:hover { 
    color: var(--accent); 
}

.navbar-links a:hover::after { 
    width: 100%; 
}

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 4px; margin-left: auto; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text-main); border-radius: 2px; transition: all 0.3s; }
.mobile-menu { display: none; flex-direction: column; background: #fff; border-bottom: 1px solid rgba(192,96,205,0.15); padding: 16px 24px; gap: 16px; position: sticky; top: 80px; z-index: 99; }
.mobile-menu.open { display: flex; }
.mobile-menu a { font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 15px; color: var(--text-muted); text-decoration: none; }
.mobile-menu a:hover { color: var(--accent); }

/*HERO  */
.hero {
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 80px 0;
    min-height: 580px;
    gap:300px;
    overflow: hidden;
}

.hero-left {
    flex: 1;
    padding-bottom: 0;
    max-width: 520px;
}

.hero-pill {
    display: inline-block;
    background: rgba(192, 96, 205, 0.12);
    color: var(--accent);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 20px;
    border: 1px solid rgba(192, 96, 205, 0.2);
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 58px;
    font-weight: 700;
    line-height: 1.25;
    color: var(--text-main);
    margin-bottom: 18px;
}

.hero-title em { 
    color: var(--accent); 
    font-style: italic; 
}

.hero-subtitle {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 420px;
    margin-bottom: 36px;
}

.btn-primary {
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 14px 36px;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 15px;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 18px rgba(192, 96, 205, 0.35);
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(192, 96, 205, 0.45);
}



/* Hero direita */

.hero-right {
    width: 400px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    overflow: visible;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    align-self: flex-end;
    margin-left: 0;
}

.hero-right::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle at 30% 30%, #c060cd, #e8b6f0, #f8ecfb);
    border-radius: 50%;
    filter: blur(60px);
    opacity: 4.5;
    animation: blobMove 6s ease-in-out infinite alternate;
    z-index: 0;
}

.pulse-ring {
    position: absolute;
    border-radius: 50%;
    background: rgba(192, 96, 205, 0.15);
}

.pulse-ring:nth-child(1) { width: 340px; height: 340px; opacity: 0.5; animation: pulse-circle 4s ease-in-out infinite; bottom: 60px; }
.pulse-ring:nth-child(2) { width: 260px; height: 260px; opacity: 0.4; animation: pulse-circle 4s ease-in-out infinite 0.9s; bottom: 60px; }
.pulse-ring:nth-child(3) { width: 180px; height: 180px; opacity: 0.3; animation: pulse-circle 4s ease-in-out infinite 1.8s; bottom: 60px; }

.hero-character {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.hero-character img {
    height: 500px;
    object-fit: contain;
    display: block;
}

/* Balão ao lado da cabeça */
.bubble {
    position: absolute;
    top: 81px;
    right: 300px;
    background: var(--accent);
    color: #fff;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 15px;
    padding:15px 20px;
    border-radius: 12px 12px 0 12px;
    white-space: nowrap;
    animation: float-bubble 3s ease-in-out infinite;
    z-index: 3;
    box-shadow: 0 4px 14px rgba(192, 96, 205, 0.35);
}

/* MENSAGENS */

.msgs-section {
    background: #ffffff;
    padding: 96px 0;
    overflow: hidden;
    background: var(--gradient-soft);
}

.msgs-label { text-align: center; font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--accent); margin-bottom: 10px; }
.msgs-title { font-family: 'Playfair Display', serif; font-size: 34px; font-weight: 700; text-align: center; color: var(--text-main); margin-bottom: 8px; }
.msgs-subtitle { text-align: center; font-size: 15px; color: var(--text-muted); margin-bottom: 52px; }

.msgs-track-wrapper {
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    overflow: hidden;
}

.msgs-track { display: flex; gap: 24px; width: max-content; animation: scroll-msgs 35s linear infinite; }
.msgs-track:hover { animation-play-state: paused; }

.msg-bubble {
    background: #ffffff;
    border: 1px solid var(--accent);
    border-radius: 20px;
    padding: 24px 28px;
    min-width: 280px;
    max-width: 320px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    box-shadow: 0 2px 12px rgba(192, 96, 205, 0.07);
}

.msg-avatar { width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 16px; color: #fff; flex-shrink: 0; }
.msg-name { font-weight: 700; font-size: 15px; color: var(--text-main); margin-bottom: 6px; }
.msg-text { font-size: 14px; color: var(--text-muted); line-height: 1.5; }

/*SOBRE */

.sobre-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8ecfb 100%);
    padding: 100px 80px;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.sobre-left { width: 340px; flex-shrink: 0; }

.section-label { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }
.section-title { font-family: 'Playfair Display', serif; font-size: 34px; font-weight: 700; color: var(--text-main); margin-bottom: 14px; line-height: 1.3; }
.section-subtitle { font-size: 15px; color: var(--text-muted); line-height: 1.7; }

.sobre-slider { flex: 1; position: relative; overflow: hidden; }
.sobre-cards { display: flex; transition: transform 0.5s ease; }

.sobre-card {
    min-width: 100%;
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(192, 96, 205, 0.2);
    border-radius: 20px;
    padding: 52px;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 4px 24px rgba(192, 96, 205, 0.08);
}

.sobre-card-num { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; }
.sobre-card-text { font-family: 'Playfair Display', serif; font-size: 22px; font-style: italic; color: var(--text-main); line-height: 1.7; }

.sobre-dots { display: flex; gap: 8px; margin-top: 24px; }
.sobre-dot { width: 8px; height: 8px; border-radius: 999px; background: rgba(192, 96, 205, 0.2); border: none; transition: background 0.3s, width 0.3s; }
.sobre-dot.active { background: var(--accent); width: 20px; }

/* CATEGORIAS */

.categorias-section {
    background: #ffffff;
    padding: 80px;
    background: linear-gradient(180deg, #f8ecfb 0%, #ffffff 100%);
}

.categorias-header { 
    text-align: center; 
    margin-bottom: 48px; 
}

.categorias-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.cat-card {
    background: #fff;
    border: 1.5px solid var(--accent);
    border-radius: 16px;
    padding: 28px;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.cat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(192, 96, 205, 0.18);
    border-color: var(--accent);
}

.cat-icon { 
    width: 48px; 
    height: 48px; 
    border-radius: 10px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 22px; 
    margin-bottom: 14px; 
}

.cat-name { 
    font-family: 'Playfair Display', serif; 
    font-size: 20px; 
    font-weight: 700; 
    color: var(--text-main); 
    margin-bottom: 8px; 
}

.cat-desc { 
    font-size: 13px; 
    color: var(--text-muted);
    line-height: 1.5; 
    margin-bottom: 14px; 
}

.cat-pill { 
    display: inline-block; 
    font-size: 15px; 
    font-weight: 700; 
    padding: 4px 12px; 
    border-radius: 999px; 
}

/*RECEITAS */

.receitas-section {
    background: linear-gradient(180deg, #f8ecfb 0%, #ffffff 100%);
    padding: 80px;
}

.receitas-header { margin-bottom: 40px; }

.receitas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.recipe-card {
    background: #ffffff;
    border: 1.5px solid var(--accent);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
}

.recipe-card:hover, 
.cat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(192, 96, 205, 0.2);
}

.recipe-card-img { width: 100%; height: 160px; object-fit: cover; flex-shrink: 0; }

.recipe-card-img-placeholder {
    width: 100%;
    height: 160px;
    background: linear-gradient(135deg, #f8eafc, #eedcf7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    flex-shrink: 0;
}

.recipe-card-body { 
    padding: 16px; 
    display: flex; 
    flex-direction: column; 
    flex: 1; 
}

.recipe-card-time { 
    font-size: 12px; 
    color: var(--text-muted); 
    margin-bottom: 6px; 
}

.recipe-card-name { 
    font-family: 'Playfair Display', serif; 
    font-size: 16px; 
    font-weight: 700; 
    color: var(--text-main); 
    margin-bottom: 6px; 
}

.recipe-card-desc { font-size: 12px; 
    color: var(--text-muted); 
    line-height: 1.5; 
    margin-bottom: 12px; 
    flex: 1; 
}

.recipe-card-tags { 
    display: flex; 
    flex-wrap: wrap;
    gap: 4px; 
    margin-bottom: 14px;
}

.recipe-tag { font-size: 10px; 
    font-weight: 700; 
    padding: 3px 10px; 
    border-radius: 999px;
 }

.btn-outline {
    display: block;
    width: 100%;
    text-align: center;
    border: 2px solid var(--accent);
    color: var(--accent);
    border-radius: 999px;
    padding: 12px;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    margin-top: auto;
}

.btn-outline:hover {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 4px 14px rgba(192, 96, 205, 0.35);
}

/* PÁGINA DE RECEITA */
.recipe-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #fff 0%, #f8ecfb 40%, #ffffff 100%);
    padding: 60px 0;
}

.recipe-page-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}

.recipe-back {
    display: inline-block;
    color: var(--accent);
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    margin-bottom: 32px;
    transition: transform 0.2s;
}

.recipe-back:hover { transform: translateX(-4px); }

.recipe-header {
    display: flex;
    gap: 48px;
    align-items: flex-start;
    margin-bottom: 56px;
}

.recipe-header-left { flex: 1; }

.recipe-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.recipe-time {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-muted);
    background: rgba(192, 96, 205, 0.08);
    border: 1px solid rgba(192, 96, 205, 0.2);
    padding: 4px 12px;
    border-radius: 999px;
}

.recipe-page-title {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.2;
    margin-bottom: 16px;
}

.recipe-page-desc {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
}

.recipe-header-right { flex-shrink: 0; }

.recipe-page-img {
    width: 320px;
    height: 240px;
    object-fit: cover;
    border-radius: 20px;
    border: 1.5px solid var(--accent);
    box-shadow: 0 8px 32px rgba(192, 96, 205, 0.15);
}

.recipe-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.recipe-ingredients,
.recipe-method {
    background: #fff;
    border: 1.5px solid var(--accent);
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(192, 96, 205, 0.08);
}

.recipe-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(192, 96, 205, 0.2);
}

.recipe-text {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.8;
    white-space: pre-line;
}

.recipe-img-info {
    margin-top: 12px;
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

/* GRID 4 COLUNAS - PÁGINA RECEITAS */
.receitas-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.4rem;
}

.receitas-grid-4 .recipe-card {
    opacity: 1 !important;
    transform: none !important;
}

/* FILTROS */
.filtros {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.filtro-pill {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 13px;
    padding: 8px 16px;
    border-radius: 999px;
    text-decoration: none;
    border: 1.5px solid var(--accent);
    color: var(--accent);
    background: #fff;
    transition: all 0.2s;
}

.filtro-pill:hover { background: var(--accent); color: #fff; }
.filtro-pill.active { background: var(--accent); color: #fff; }

.filtro-pill.economica { border-color: #1a6632; color: #1a6632; }
.filtro-pill.economica:hover,
.filtro-pill.economica.active { background: #1a6632; color: #fff; }

.filtro-pill.rapida { border-color: #0d4c8a; color: #0d4c8a; }
.filtro-pill.rapida:hover,
.filtro-pill.rapida.active { background: #0d4c8a; color: #fff; }

.filtro-pill.fitness { border-color: #59ac6d; color: #59ac6d; }
.filtro-pill.fitness:hover,
.filtro-pill.fitness.active { background: #59ac6d; color: #fff; }

.filtro-pill.vegana { border-color: #7a5c00; color: #7a5c00; }
.filtro-pill.vegana:hover,
.filtro-pill.vegana.active { background: #7a5c00; color: #fff; }

.filtro-pill.vegetariana { border-color: #5a1a7a; color: #5a1a7a; }
.filtro-pill.vegetariana:hover,
.filtro-pill.vegetariana.active { background: #5a1a7a; color: #fff; }

.filtro-pill.elaborada { border-color: #8a1a55; color: #8a1a55; }
.filtro-pill.elaborada:hover,
.filtro-pill.elaborada.active { background: #8a1a55; color: #fff; }

/* AÇÕES DA RECEITA */
.recipe-actions {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.recipe-action-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1.5px solid var(--accent);
    color: var(--accent);
    border-radius: 999px;
    padding: 10px 20px;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 13px;
    transition: all 0.2s;
}

.recipe-action-btn:hover {
    background: var(--accent);
    color: #fff;
}

.recipe-action-btn svg {
    flex-shrink: 0;
}

.recipe-share-toast {
    display: none;
    text-align: center;
    background: var(--accent);
    color: #fff;
    padding: 12px 24px;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.3s;
}

.recipe-share-toast.show {
    display: block;
    opacity: 1;
}


/* CONTATO */
.contato-section {
    background: #ffffff;
    padding: 80px;
    text-align: center;
}

.contato-cards { display: flex; 
    gap: 20px; 
    justify-content: center; 
    margin-top: 40px; 
}

.contato-card {
    background: #faf5ff;
    border: 1.5px solid rgba(192, 96, 205, 0.25);
    border-radius: 14px;
    padding: 28px 40px;
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
    min-width: 260px;
}

.contato-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(192, 96, 205, 0.18);
    border-color: var(--accent);
}

.contato-icon { 
    width: 90px; 
    height: 60px; 
    border-radius: 12px; 
    display: flex; 
    align-items: center;
    justify-content: center; 
    font-size: 22px; 
    flex-shrink: 0; 
    overflow: hidden;

}

.contato-icon img {
    width: 60px;
    height: 80px;
    object-fit: contain;
}

.contato-label { 
    font-size: 11px; 
    font-weight: 700; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
    color: var(--text-muted); 
    margin-bottom: 2px; 
}

.contato-value { 
    font-weight: 700; 
    font-size: 15px; 
    color: var(--text-main); 
}

/* FOOTER */
footer {
    background: linear-gradient(135deg, #621c65 0%, #3d0640 60%, #c060cd 140%);
    color: #eeedef;
    padding: 64px 80px 32px;
}

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

.footer-logo img {
    height: 80px;
    width: auto;
    display: block;
}

.footer-bio { 
    font-size: 16px; 
    line-height: 1.7; 
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 20px; 
}

.footer-socials { 
    display: flex; 
    gap: 10px; 
}

.footer-social-btn {
    width: 38px; 
    height: 38px; 
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.08);
    display: flex; 
    align-items: center; 
    justify-content: center;
    transition: background 0.2s, border-color 0.2s;
    text-decoration: none;
}

.footer-social-btn:hover { 
    background: var(--accent); 
    border-color: var(--accent); 
}

.footer-social-btn svg { 
    width: 20px; 
    height: 20px; 
    fill: var(--footer-text); 
}

.footer-nav-title { 
    font-weight: 700; 
    font-size: 22px; 
    letter-spacing: 1px; 
    text-transform: uppercase; 
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 16px; 
}

.footer-nav-links { 
    list-style: none; 
    display: flex; 
    flex-direction: column; 
    gap: 10px; 
}

.footer-nav-links a { 
    text-decoration: none; 
    color: #ffffff;
    font-size: 18px; 
    transition: color 0.2s; 
}

.footer-nav-links a:hover { 
    color: var(--accent); 
}

.footer-contact-list { 
    list-style: none; 
    display: flex; 
    flex-direction: column; 
    gap: 10px; 
}

.footer-contact-list li { 
    font-size: 18px; 
    color: #ffffff; 
}

.footer-contact-list a { 
    color: #ffffff; 
    text-decoration: none; 
    transition: color 0.2s; 
}

.footer-contact-list a:hover { 
    color: var(--accent);
 }

.footer-divider { 
    border: none; 
    border-top: 1px solid rgba(255,255,255,0.1); 
    margin-bottom: 24px; 
}

.footer-bottom { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    font-size: 15px;
    color: #ffffff;
}

/* TABLET */
@media (max-width: 1024px) {
    .navbar { padding: 0 32px; }
    .hero { padding: 60px 48px 0; gap: 60px; }
    .hero-title { font-size: 44px; }
    .hero-character img { height: 400px; }
    .hero-left { padding-bottom: 48px; }
    .sobre-section { padding: 80px 48px; gap: 48px; }
    .categorias-section { padding: 60px 48px; }
    .receitas-section { padding: 60px 48px; }
    .receitas-grid-4 { grid-template-columns: repeat(3, 1fr); }
    .contato-section { padding: 60px 48px; }
    footer { padding: 48px 48px 24px; }
}

@media (max-width: 1280px) {
    .hero { padding: 60px 48px 0; gap: 80px; }
    .hero-left { padding-bottom: 60px; }
    .hero-title { font-size: 48px; }
    .hero-character img { height: 420px; }
}

/* MOBILE */
@media (max-width: 768px) { 
    .navbar { padding: 0 16px; height: 64px; }
    .navbar-logo img { height: 40px; }
    .navbar-search { 
    max-width: 120px; 
    padding: 8px 12px;
    font-size: 12px; 
    }
    .navbar-search input { font-size: 12px; }
    .navbar-links { display: none; }
    .hamburger { display: flex; }

 /* HERO */
.hero {
    padding: 40px 24px 0;
    gap: 16px;
    min-height: auto;
}
.hero-left {
    max-width: 52%;
    overflow: hidden;
    padding-bottom: 32px;
}
.hero-title { font-size: 22px; }
.hero-subtitle { font-size: 13px; margin-bottom: 12px; }
.btn-primary {
    margin-top: 10px;
    margin-bottom: 0;
    padding: 10px 20px;
    font-size: 13px;
}
.hero-right {
    width: 45%;
    flex-shrink: 0;
}
.hero-right::before {
    width: 200px;
    height: 200px;
    filter: blur(40px);
    opacity: 0.6;
}
.hero-character img { height: 220px; }
.pulse-ring:nth-child(1) { width: 180px; height: 180px; bottom: 30px; }
.pulse-ring:nth-child(2) { width: 140px; height: 140px; bottom: 30px; }
.pulse-ring:nth-child(3) { width: 100px; height: 100px; bottom: 30px; }
.bubble {
    font-size: 10px;
    padding: 8px 10px;
    top: 30px;
    right: auto;
    left: -10px;
}
    /* SOBRE */
    .sobre-section { flex-direction: column; padding: 60px 24px; gap: 40px; }
    .sobre-left { width: 100%; }
    .sobre-card { 
        padding: 24px; 
        overflow: hidden;
    }
    .sobre-card-text { 
        font-size: 18px; 
        overflow-wrap: break-word;
        word-break: break-word;
    }
    .sobre-slider {
        overflow: hidden;
        width: 100%;
    }

    /* CATEGORIAS */
    .categorias-section { padding: 60px 24px; }
    .categorias-grid { grid-template-columns: repeat(2, 1fr); }

    /* RECEITAS */
    .receitas-section { padding: 60px 24px; }
    .receitas-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
    .receitas-grid-4 { grid-template-columns: repeat(2, 1fr); }

    /* PÁGINA RECEITA */
    .recipe-page-inner { padding: 0 24px; }
    .recipe-header { flex-direction: column; gap: 24px; }
    .recipe-page-img { width: 100%; height: 220px; }
    .recipe-page-title { font-size: 28px; }
    .recipe-body { grid-template-columns: 1fr; }

    /* CONTATO */
    .contato-section { padding: 60px 24px; }
    .contato-cards { flex-direction: column; align-items: center; }
    .contato-card { width: 100%; max-width: 340px; }
    .contato-value { font-size: 13px; word-break: break-all; }

    /* FOOTER */
    footer { padding: 48px 24px 24px; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* MOBILE PEQUENO */
@media (max-width: 480px) {
    .navbar-search { display: flex; max-width: 140px; }   
    .navbar-logo img { height: 36px; }

    .hero-title { font-size: 26px; }
    .hero-subtitle { font-size: 14px; }
    .hero-character img { height: 240px; }
    .bubble { font-size: 11px; padding: 8px 12px; }

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

    .sobre-card-text { font-size: 16px; }

    .recipe-page-title { font-size: 24px; }
    .recipe-ingredients, .recipe-method { padding: 20px; }

    .contato-card { padding: 20px 24px; }
    .contato-value { font-size: 12px; }

    .footer-nav-title { font-size: 18px; }
    .footer-nav-links a { font-size: 15px; }
    .footer-contact-list li { font-size: 15px; }
}
