/*
Theme Name: Dental Goods
Theme URI: https://dentalgoods.com.br
Author: DentalGoods
Author URI: https://dentalgoods.com.br
Description: Tema para venda de páginas de colorir personalizadas para dentistas. Visual fofo, infantil e profissional.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: dental-goods
Tags: one-page, custom-logo, landing-page

Dental Goods Theme - Páginas de colorir para dentistas
*/

/* ========================================
   DENTAL GOODS - LANDING PAGE STYLES
   Visual fofo, infantil e confiável
   ======================================== */

/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Cores principais - tons suaves e acolhedores */
    --primary: #4ECDC4;
    --primary-dark: #3BA99C;
    --primary-light: #A8E6CF;
    
    --secondary: #FF6B6B;
    --secondary-dark: #E85555;
    --secondary-light: #FFB3B3;
    
    --accent: #FFD93D;
    --accent-dark: #E5C235;
    
    /* Neutros */
    --dark: #2D3436;
    --gray: #636E72;
    --gray-light: #B2BEC3;
    --cream: #FFF9F0;
    --white: #FFFFFF;
    
    /* Gradientes */
    --gradient-primary: linear-gradient(135deg, #4ECDC4 0%, #44A08D 100%);
    --gradient-hero: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #4ECDC4 100%);
    --gradient-soft: linear-gradient(180deg, #FFF9F0 0%, #FFFFFF 100%);
    
    /* Sombras */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.15);
    --shadow-glow: 0 0 30px rgba(78, 205, 196, 0.3);
    
    /* Tipografia */
    --font-main: 'Nunito', sans-serif;
    --font-display: 'Fredoka', sans-serif;
    
    /* Espaçamentos */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Border radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 50px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--dark);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   HEADER
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    
    box-shadow: var(--shadow-sm);
    padding: 10px 0;
    transition: all 0.3s ease;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon {
    font-size: 32px;
    animation: bounce 2s infinite;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
}

.logo-highlight {
    color: var(--primary);
}

/* Logo Imagem */
.logo-img {
    height: auto;
    width: 180px;
    max-width: 180px;
    object-fit: contain;
}

.footer-logo-img {
    height: auto;
    width: 150px;
    max-width: 150px;
    object-fit: contain;
    margin-bottom: 15px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav a {
    text-decoration: none;
    color: var(--gray);
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: var(--primary);
}

.btn-nav {
    background: var(--primary);
    color: white !important;
    padding: 10px 20px;
    border-radius: var(--radius-full);
    transition: all 0.3s ease !important;
}

.btn-nav:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--dark);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* ========================================
   BOTÕES
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-md), var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg), 0 0 40px rgba(78, 205, 196, 0.4);
}

.btn-secondary {
    background: var(--secondary);
    color: white;
}

.btn-secondary:hover {
    background: var(--secondary-dark);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.btn-lg {
    padding: 18px 36px;
    font-size: 18px;
}

.btn-xl {
    padding: 22px 44px;
    font-size: 20px;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    min-height: 0vh;
    background: var(--gradient-hero);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M30 30c0-5.5-4.5-10-10-10s-10 4.5-10 10 4.5 10 10 10 10-4.5 10-10zm10 0c0-5.5-4.5-10-10-10s-10 4.5-10 10 4.5 10 10 10 10-4.5 10-10z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero-container {
    margin-top: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    color: white;
}



.hero h1 {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    margin-top: 50px;
    animation: fadeInUp 0.6s ease 0.1s both;
}

.hero .highlight {
    color: var(--accent);
    position: relative;
}

.hero-description {
    font-size: 18px;
    opacity: 0.95;
    margin-bottom: 30px;
    animation: fadeInUp 0.6s ease 0.2s both;
}

.hero-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 35px;
    animation: fadeInUp 0.6s ease 0.3s both;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    padding: 10px 18px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
}

.benefit-icon {
    font-size: 18px;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    animation: fadeInUp 0.6s ease 0.4s both;
}

.cta-subtext {
    font-size: 14px;
    opacity: 0.8;
}

/* Hero Visual - Animação do desenho sendo colorido */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 0.8s ease 0.3s both;
    margin-top: 30px;
}

.coloring-animation {
    position: relative;
    width: 100%;
    max-width: 400px;
}

.paper {
    background: white;
    border-radius: var(--radius-lg);
    padding: 20px;
    box-shadow: var(--shadow-lg);
    transform: rotate(-3deg);
    transition: transform 0.3s ease;
}

.paper:hover {
    transform: rotate(0deg) scale(1.02);
}

.paper-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 2px dashed var(--gray-light);
}

.logo-placeholder {
    background: var(--primary);
    color: white;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
}

.paper-fields {
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-size: 11px;
    color: var(--gray);
}

.drawing-area {
    display: flex;
    justify-content: center;
    padding: 20px;
}

.tooth-drawing {
    width: 180px;
    height: 180px;
}

.tooth-fill {
    clip-path: inset(100% 0 0 0);
    animation: colorFill 4s ease-in-out infinite;
}

/* Mão com lápis */
.hand-pencil {
    position: absolute;
    bottom: 20%;
    right: 5%;
    width: 100px;
    animation: drawingMotion 4s ease-in-out infinite;
    z-index: 10;
}

.pencil-svg {
    width: 100%;
    filter: drop-shadow(2px 4px 6px rgba(0,0,0,0.2));
}

/* Elementos flutuantes */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-star {
    position: absolute;
    font-size: 24px;
    left: var(--x);
    top: var(--y);
    animation: float 3s ease-in-out infinite;
    animation-delay: var(--delay);
}

/* Wave do hero */
.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: 80px;
}

/* ========================================
   SEÇÕES GERAIS
   ======================================== */
.section {
    padding: var(--spacing-xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-badge {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary-dark);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
}

.section-header .highlight {
    color: var(--primary);
}

.section-header p {
    font-size: 18px;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================
   SEÇÃO PERSONALIZE
   ======================================== */
.personalize-section {
    background: var(--gradient-soft);
}

.personalize-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: var(--spacing-lg);
}

.personalize-card {
    background: white;
    padding: 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.personalize-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.card-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.personalize-card h3 {
    font-family: var(--font-display);
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--dark);
}

.personalize-card p {
    color: var(--gray);
    font-size: 15px;
}

.personalize-demo {
    text-align: center;
}

.demo-image {
    max-width: 400px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* ========================================
   CARROSSEL DE DESENHOS
   ======================================== */
.drawings-section {
    background: white;
}

.carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.carousel-track-container {
    overflow: hidden;
    flex: 1;
}

.carousel-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
}

.drawing-card {
    flex: 0 0 200px;
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 3px solid var(--cream);
}

.drawing-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.card-image {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-image svg {
    width: 100%;
    height: 100%;
}

.card-title {
    display: block;
    text-align: center;
    padding: 15px;
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--dark);
    background: var(--cream);
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: 2px solid var(--primary);
    color: var(--primary);
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.carousel-btn:hover {
    background: var(--primary);
    color: white;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-light);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

/* ========================================
   SEÇÃO PLANOS
   ======================================== */
.plans-section {
    background: linear-gradient(180deg, var(--cream) 0%, white 100%);
}

.plans-hero-image {
    text-align: center;
    margin-bottom: var(--spacing-md);
}

.dentist-illustration {
    width: 200px;
    height: auto;
    animation: float 3s ease-in-out infinite;
}

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

.plan-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 35px 30px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    position: relative;
    border: 3px solid transparent;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.plan-featured {
    border-color: var(--primary);
    transform: scale(1.05);
    z-index: 1;
}

.plan-featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.plan-ribbon {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary);
    color: white;
    padding: 6px 20px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}

.plan-badge {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary-dark);
    padding: 6px 18px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 15px;
}

.plan-pages {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 5px;
}

.plan-bonus {
    color: var(--secondary);
    font-weight: 700;
    font-size: 16px;
}

.plan-price {
    margin: 25px 0;
}

.price-old {
    display: block;
    color: var(--gray);
    text-decoration: line-through;
    font-size: 16px;
    margin-bottom: 5px;
}

.price-new {
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--primary);
}

.price-new strong {
    font-size: 48px;
}

.plan-features {
    list-style: none;
    text-align: left;
    margin: 25px 0;
}

.plan-features li {
    padding: 8px 0;
    color: var(--gray);
    font-size: 14px;
    border-bottom: 1px solid var(--cream);
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-card .btn {
    width: 100%;
}

/* ========================================
   SEÇÃO POR QUE COMPRAR
   ======================================== */
.why-section {
    background: white;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.why-card {
    text-align: center;
    padding: 30px;
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.why-card:hover {
    background: var(--cream);
    transform: translateY(-5px);
}

.why-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.why-card h3 {
    font-family: var(--font-display);
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--dark);
}

.why-card p {
    color: var(--gray);
    font-size: 15px;
}

/* ========================================
   SEÇÃO COMO FUNCIONA
   ======================================== */
.how-section {
    background: var(--gradient-soft);
}

.steps-container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.step {
    background: white;
    padding: 30px 25px;
    border-radius: var(--radius-lg);
    text-align: center;
    width: 180px;
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.step-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.step h3 {
    font-family: var(--font-display);
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--dark);
}

.step p {
    color: var(--gray);
    font-size: 13px;
}

.step-arrow {
    font-size: 24px;
    color: var(--primary);
    align-self: center;
    margin-top: 30px;
}

/* ========================================
   SEÇÃO GARANTIA
   ======================================== */
.guarantee-section {
    background: var(--primary);
    color: white;
}

.guarantee-content {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 900px;
    margin: 0 auto;
}

.guarantee-badge {
    flex-shrink: 0;
}

.guarantee-icon {
    width: 150px;
    height: 150px;
}

.guarantee-label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 10px;
    opacity: 0.9;
}

.guarantee-text h2 {
    font-family: var(--font-display);
    font-size: 32px;
    margin-bottom: 20px;
}

.guarantee-text p {
    font-size: 16px;
    margin-bottom: 15px;
    opacity: 0.95;
}

.guarantee-small {
    font-size: 14px !important;
    opacity: 0.8 !important;
    font-style: italic;
}

/* ========================================
   SEÇÃO CTA FINAL
   ======================================== */
.cta-section {
    background: linear-gradient(135deg, var(--cream) 0%, white 100%);
    text-align: center;
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: 40px;
    margin-bottom: 15px;
}

.cta-content .highlight {
    color: var(--primary);
}

.cta-content p {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 30px;
}

.cta-note {
    display: block;
    margin-top: 15px;
    color: var(--gray);
    font-size: 14px;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--dark);
    color: white;
    padding: var(--spacing-lg) 0 var(--spacing-md);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: var(--spacing-md);
}

.footer-logo .logo-icon {
    font-size: 40px;
}

.footer-logo .logo-text {
    color: white;
    font-size: 28px;
}

.footer-logo p {
    margin-top: 15px;
    color: var(--gray-light);
    font-size: 14px;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-display);
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-links a {
    display: block;
    color: var(--gray-light);
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

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

.footer-contact p {
    color: var(--gray-light);
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    color: var(--gray-light);
    font-size: 14px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    color: #ffffff !important;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
}

.footer-social a:hover {
    transform: scale(1.1);
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.footer-social a svg {
    width: 22px;
    height: 22px;
    fill: #ffffff !important;
}

.footer-social a:hover svg {
    fill: #ffffff !important;
}

/* Ícones do footer contact */
.footer-icon {
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
    opacity: 0.8;
}

/* Seção Desenvolvido por */
.footer-developer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding-top: var(--spacing-md);
    margin-top: var(--spacing-md);
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-developer span {
    color: var(--gray-light);
    font-size: 13px;
}

.developer-link {
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.developer-link:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.developer-logo {
    height: 30px;
    width: 30px;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.developer-link:hover .developer-logo {
    opacity: 1;
    transform: scale(1.05);
}

/* ========================================
   WHATSAPP FLOAT
   ======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
}

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

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

@keyframes colorFill {
    0% {
        clip-path: inset(0 100% 0 0);
    }
    40% {
        clip-path: inset(0 0% 0 0);
    }
    60% {
        clip-path: inset(0 0% 0 0);
    }
    100% {
        clip-path: inset(0 100% 0 0);
    }
}

@keyframes drawingMotion {
    0% {
        transform: translate(0, 0) rotate(-5deg);
    }
    25% {
        transform: translate(-20px, 30px) rotate(5deg);
    }
    50% {
        transform: translate(10px, 60px) rotate(-3deg);
    }
    75% {
        transform: translate(-10px, 40px) rotate(3deg);
    }
    100% {
        transform: translate(0, 0) rotate(-5deg);
    }
}

/* ========================================
   RESPONSIVO
   ======================================== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-visual {
        order: -1;
    }
    
    .hero-cta {
        align-items: center;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .personalize-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .plan-featured {
        transform: none;
    }
    
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .steps-container {
        flex-direction: column;
        align-items: center;
    }
    
    .step-arrow {
        transform: rotate(90deg);
        margin: 10px 0;
    }
    
    .guarantee-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-developer {
        flex-direction: column;
        gap: 8px;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-md);
    }
    
    .nav.active {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .logo-img {
        width: 140px;
        max-width: 140px;
    }
    
    .footer-logo-img {
        width: 120px;
        max-width: 120px;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    .hero-benefits {
        flex-direction: column;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .personalize-grid {
        grid-template-columns: 1fr;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .coloring-animation {
        max-width: 300px;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
    
    .btn-xl {
        padding: 16px 24px;
        font-size: 16px;
    }
    
    /* Carrossel Mobile - 1 card por vez centralizado */
    .carousel-container {
        padding: 0;
        overflow: hidden;
    }
    
    .carousel-btn {
        display: none; /* Esconde botões no mobile */
    }
    
    .carousel-track-container {
        width: 100%;
        overflow: visible;
    }
    
    .carousel-track {
        gap: 20px;
        display: flex;
        padding: 0 10px;
    }
    
    .drawing-card {
        flex: 0 0 250px;
        min-width: 250px;
        margin: 0;
    }
    
    .carousel-dots {
        margin-top: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero h1 {
        font-size: 24px;
    }
    
    .paper {
        padding: 15px;
    }
    
    .tooth-drawing {
        width: 120px;
        height: 120px;
    }
    
    .hand-pencil {
        width: 70px;
    }
    
    .section {
        padding: var(--spacing-lg) 0;
    }
    
    .step {
        width: 100%;
        max-width: 280px;
    }
}

/* WordPress specific overrides */
.wp-block-post-content {
    max-width: none;
}

body.page-template-front-page {
    padding: 0;
    margin: 0;
}



/* ========================================
   MODAL PARA DESENHOS AMPLIADOS
   ======================================== */
.drawing-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.drawing-modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    
}

.modal-content {
    position: relative;
    z-index: 1;
    background: white;
    border-radius: var(--radius-lg);
    padding: 20px;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: modalZoomIn 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-image-container {
    max-width: 100%;
    max-height: 70vh;
    min-width: 300px;
    min-height: 300px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-image-container img {
    max-width: 100%;
    max-height: 70vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: var(--radius-md);
}

.modal-close {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--secondary);
    color: white;
    border: none;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

.modal-close:hover {
    background: var(--secondary-dark);
    transform: scale(1.1);
}

.modal-title {
    margin-top: 15px;
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    color: var(--dark);
    text-align: center;
}

@keyframes modalZoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Tornar os cards de desenho clicáveis */
.drawing-card {
    cursor: pointer;
}

.drawing-card:hover .card-image {
    transform: scale(1.05);
}

.drawing-card .card-image {
    transition: transform 0.3s ease;
}

/* Responsivo para modal */
@media (max-width: 768px) {
    .modal-content {
        padding: 15px;
        margin: 15px;
    }
    
    .modal-close {
        top: -10px;
        right: -10px;
        width: 35px;
        height: 35px;
        font-size: 20px;
    }
    
    .modal-title {
        font-size: 16px;
    }
}

/* ========================================
   DROPDOWN MENU (Sobre)
   ======================================== */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    cursor: pointer;
    position: relative;
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 180px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    margin-top: 10px;
    z-index: 1000;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--dark);
    text-decoration: none;
    transition: background 0.2s ease;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.nav-dropdown-menu a:last-child {
    border-bottom: none;
}

.nav-dropdown-menu a:hover {
    background: var(--cream);
    color: var(--primary);
}

/* ========================================
   PRODUTOS - GRID E CARDS
   ======================================== */
.featured-products-section,
.products-section {
    background: var(--cream);
    padding: var(--spacing-xl) 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.product-card {
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    opacity: 1;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.product-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    background: var(--cream);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 6px 12px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: bold;
    color: white;
    z-index: 10;
}

.sale-badge {
    background: var(--secondary);
}

.outofstock-badge {
    background: var(--gray);
}

.product-info {
    padding: 20px;
}

.product-title {
    margin: 0 0 10px 0;
    font-size: 16px;
    font-weight: 600;
}

.product-title a {
    color: var(--dark);
    text-decoration: none;
    transition: color 0.2s ease;
}

.product-title a:hover {
    color: var(--primary);
}

.product-price {
    font-size: 20px;
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 15px;
}

.product-price del {
    font-size: 16px;
    color: var(--gray-light);
    margin-right: 8px;
}

.btn-block {
    width: 100%;
    text-align: center;
}

.btn-disabled {
    background: var(--gray-light);
    cursor: not-allowed;
    opacity: 0.6;
}

.no-products {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
}

.no-products-content {
    max-width: 400px;
    margin: 0 auto;
}

.no-products-icon {
    font-size: 80px;
    display: block;
    margin-bottom: 20px;
}

.no-products h3 {
    font-size: 24px;
    color: var(--dark);
    margin-bottom: 10px;
}

.no-products p {
    color: var(--gray);
}

.section-cta {
    text-align: center;
    margin-top: 50px;
}

/* ========================================
   FILTROS DE PRODUTOS
   ======================================== */
.products-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 30px;
}

.filter-btn {
    padding: 10px 24px;
    border: 2px solid var(--primary-light);
    background: white;
    color: var(--primary);
    border-radius: var(--radius-full);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-main);
    font-size: 14px;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* ========================================
   PÁGINAS INSTITUCIONAIS
   ======================================== */
.page-hero {
    background: var(--gradient-primary);
    color: white;
    padding: 120px 0 80px 0;
    text-align: center;
}

.page-hero-content h1 {
    font-family: var(--font-display);
    font-size: 48px;
    margin-bottom: 15px;
}

.page-hero-content p {
    font-size: 20px;
    opacity: 0.95;
}

.page-content {
    padding: var(--spacing-xl) 0;
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.content-box {
    background: white;
    padding: 40px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    margin-bottom: 30px;
}

.content-box h2 {
    color: var(--primary);
    font-family: var(--font-display);
    font-size: 28px;
    margin-bottom: 20px;
}

.content-box h3 {
    color: var(--dark);
    font-size: 20px;
    margin: 20px 0 10px 0;
}

.content-box p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 15px;
}

.content-box ul {
    margin: 15px 0;
    padding-left: 25px;
}

.content-box ul li {
    color: var(--gray);
    margin-bottom: 10px;
    line-height: 1.6;
}

.features-list {
    list-style: none;
    padding: 0;
}

.features-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.features-list li:last-child {
    border-bottom: none;
}

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

.value-item {
    text-align: center;
    padding: 25px;
    background: var(--cream);
    border-radius: var(--radius-md);
}

.value-icon {
    font-size: 40px;
    display: block;
    margin-bottom: 15px;
}

.value-item h3 {
    font-size: 18px;
    color: var(--dark);
    margin: 10px 0;
}

.value-item p {
    font-size: 14px;
    color: var(--gray);
}

.cta-box {
    text-align: center;
    background: var(--gradient-primary);
    color: white;
}

.cta-box h2 {
    color: white;
}

.cta-box p {
    color: white;
    opacity: 0.95;
}

/* Página de Contato */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 25px;
}

.contact-method {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: var(--cream);
    border-radius: var(--radius-md);
    align-items: flex-start;
}

.method-icon {
    font-size: 40px;
    flex-shrink: 0;
}

.method-content h3 {
    font-size: 18px;
    color: var(--dark);
    margin: 0 0 8px 0;
}

.method-content p {
    color: var(--gray);
    margin: 0 0 12px 0;
}

.contact-faq {
    background: white;
    padding: 40px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.contact-faq h2 {
    font-family: var(--font-display);
    color: var(--primary);
    margin-bottom: 25px;
}

.faq-item {
    padding: 20px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    color: var(--dark);
    font-size: 16px;
    margin-bottom: 10px;
}

.faq-item p {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.6;
}

.contact-cta {
    text-align: center;
    margin-top: 60px;
    padding: 50px;
    background: var(--cream);
    border-radius: var(--radius-lg);
}

.contact-cta h2 {
    font-family: var(--font-display);
    color: var(--primary);
    font-size: 32px;
    margin-bottom: 15px;
}

.contact-cta p {
    color: var(--gray);
    font-size: 18px;
    margin-bottom: 25px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-success {
    background: #25D366;
    color: white;
}

.btn-success:hover {
    background: #1ebe57;
}

/* Página de Privacidade */
.legal-content .content-box {
    padding: 30px;
}

.legal-content h2 {
    font-size: 22px;
    margin-top: 20px;
}

.legal-content p,
.legal-content li {
    font-size: 15px;
}

.highlight-box {
    background: var(--cream);
    border-left: 4px solid var(--primary);
}

.highlight-box h3 {
    color: var(--primary);
}

/* Hero Brinquedos */
.brinquedos-hero {
    background: var(--gradient-primary);
}

/* ========================================
   WOOCOMMERCE - GRID DE PRODUTOS
   ======================================== */

/* Grid de produtos em destaque */
.woocommerce ul.products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.woocommerce ul.products li.product {
    margin: 0 !important;
    padding: 0 !important;
    list-style: none;
}

/* Cards de produto personalizados */
.dental-product-card {
    transition: all 0.3s ease;
}

/* Remove estilos padrão do WooCommerce */
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product .price,
.woocommerce ul.products li.product .button {
    display: none !important;
}

/* Garante que imagens não quebrem */
.woocommerce ul.products li.product img {
    max-width: 100%;
    height: auto;
}

/* ========================================
   RESPONSIVO
   ======================================== */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .page-hero-content h1 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 20px;
    }
    
    .nav-dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: transparent;
        margin-top: 0;
    }
    
    .nav-dropdown-menu a {
        padding: 10px 25px;
    }
    
    .page-hero {
        padding: 100px 0 60px 0;
    }
    
    .page-hero-content h1 {
        font-size: 32px;
    }
    
    .page-hero-content p {
        font-size: 16px;
    }
    
    .content-box {
        padding: 25px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-method {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .page-hero-content h1 {
        font-size: 28px;
    }
    
    .contact-cta {
        padding: 30px 20px;
    }
    
    .contact-cta h2 {
        font-size: 24px;
    }
}

/* ========================================
   FIX: Remove ::before que causa espaço vazio
   ======================================== */
.woocommerce ul.products::before,
.woocommerce ul.products::after,
.woocommerce ul.products li.product::before,
.woocommerce ul.products li.product::after {
    display: none !important;
    content: none !important;
}

/* Força grid sem float */
.woocommerce ul.products li.product {
    float: none !important;
    width: auto !important;
    margin: 0 !important;
}