/* Updated: 1767705186 */
/* ========================================
   TEATIA HOMEPAGE - DESIGN MELHORADO 2026
   ======================================== */

/* === RESET WOOCOMMERCE GRID === */
.woocommerce ul.products,
.woocommerce-page ul.products {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
    width: auto !important;
    float: none !important;
    margin: 0 !important;
}

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

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

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes blob-float {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(30px, -30px); }
    66% { transform: translate(-20px, 20px); }
}

/* Remover glow de emojis e SVGs */
svg, img[src*=".svg"], .emoji, span:has(svg) {
    filter: none !important;
    text-shadow: none !important;
    box-shadow: none !important;
}

/* === HERO SECTION === */
.teatia-hero {
    position: relative;
    min-height: 600px;
    padding: 100px 20px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f4ff 0%, #fff9e6 100%);
}

.teatia-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(198, 163, 213, 0.15) 0%, rgba(178, 205, 214, 0.15) 100%);
}

.teatia-hero-content {
    position: relative !important;
    z-index: 1 !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.teatia-hero-title {
    font-family: 'Fredoka', 'Comic Sans MS', cursive, sans-serif !important;
    font-size: clamp(2rem, 5vw, 3.5rem) !important;
    line-height: 1.2 !important;
    color: #2d3748 !important;
    margin-bottom: 20px !important;
    font-weight: 700 !important;
}

.gradient-text {
    background: linear-gradient(135deg, #c6a3d5 0%, #b2cdd6 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    position: relative !important;
    display: inline-block !important;
}

.highlight-transform {
    position: relative;
}

.highlight-transform::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: -5%;
    width: 110%;
    height: 12px;
    background: rgba(255, 193, 7, 0.3);
    border-radius: 50%;
    z-index: -1;
    transform: skewY(-2deg);
}

.teatia-hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem) !important;
    color: #4a5568 !important;
    margin-bottom: 30px !important;
    line-height: 1.6 !important;
}

.teatia-hero-stats {
    display: flex !important;
    gap: clamp(20px, 4vw, 40px) !important;
    margin-bottom: 40px !important;
    flex-wrap: wrap !important;
}

.stat-item {
    display: flex !important;
    flex-direction: column !important;
    min-width: 100px !important;
}

.stat-number {
    font-family: 'Fredoka', sans-serif !important;
    font-size: clamp(1.5rem, 3vw, 2rem) !important;
    font-weight: 600 !important;
    color: #9c27b0 !important;
}

.stat-label {
    font-size: clamp(0.75rem, 1.5vw, 0.875rem) !important;
    color: #718096 !important;
}

.teatia-hero-buttons {
    display: flex !important;
    gap: 15px !important;
    flex-wrap: wrap !important;
}

.teatia-hero-image {
    position: relative !important;
    height: 450px !important;
}

.floating-card {
    position: absolute !important;
    background: white !important;
    padding: 18px 25px !important;
    border-radius: 20px !important;
    box-shadow: 0 10px 40px rgba(156, 39, 176, 0.15) !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    animation: float 4s ease-in-out infinite !important;
    transition: all 0.3s ease !important;
}

.floating-card:hover {
    transform: translateY(-5px) scale(1.05) !important;
    box-shadow: 0 15px 50px rgba(156, 39, 176, 0.25) !important;
}

.floating-card .emoji { font-size: 2rem !important; }
.floating-card .text {
    font-weight: 600 !important;
    color: #2d3748 !important;
    font-size: 0.95rem !important;
}

.card-1 {
    top: 50px !important;
    left: 0 !important;
    animation-delay: 0s !important;
}

.card-2 {
    top: 200px !important;
    right: 20px !important;
    animation-delay: 1s !important;
}

.card-3 {
    bottom: 80px !important;
    left: 60px !important;
    animation-delay: 2s !important;
}

/* === CONTAINER === */
.container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
}

.section-title {
    font-family: 'Fredoka', sans-serif !important;
    font-size: clamp(1.8rem, 4vw, 2.5rem) !important;
    text-align: center !important;
    margin-bottom: 20px !important;
    color: #2d3748 !important;
    font-weight: 700 !important;
}

.section-subtitle {
    text-align: center !important;
    color: #718096 !important;
    font-size: clamp(1rem, 2vw, 1.125rem) !important;
    margin-bottom: 60px !important;
}

/* === PARA QUEM É - COLORIDO INFANTIL === */
.teatia-for-who {
    position: relative !important;
    padding: 80px 20px !important;
    background: linear-gradient(135deg, #e8f5e9 0%, #fff9c4 50%, #f3e5f5 100%) !important;
    overflow: hidden !important;
}

.bg-decorations {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 0;
    opacity: 0.08;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    animation: blob-float 20s ease-in-out infinite;
}

.blob-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #9c27b0 0%, #e1bee7 100%);
    top: -100px;
    left: -100px;
}

.blob-2 {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, #ffc107 0%, #fff59d 100%);
    top: 50%;
    right: -100px;
    animation-delay: 5s;
}

.blob-3 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #00bcd4 0%, #b2ebf2 100%);
    bottom: -100px;
    left: 30%;
    animation-delay: 10s;
}

.deco-puzzle {
    position: absolute;
    top: 10%;
    right: 10%;
    color: #9c27b0;
    opacity: 0.1;
    transform: rotate(15deg);
}

.deco-star {
    position: absolute;
    top: 60%;
    left: 5%;
    color: #ffc107;
    opacity: 0.12;
    animation: float 6s ease-in-out infinite;
}

.deco-heart {
    position: absolute;
    bottom: 15%;
    right: 15%;
    color: #ff4081;
    opacity: 0.1;
    animation: pulse 3s ease-in-out infinite;
}

.for-who-grid {
    position: relative !important;
    z-index: 1 !important;
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)) !important;
    gap: 25px !important;
    max-width: 1100px !important;
    margin: 0 auto !important;
}

.for-who-card {
    text-align: center !important;
    padding: 35px 25px !important;
    border-radius: 25px !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    position: relative !important;
    background: white !important;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08) !important;
    overflow: hidden !important;
}

/* Efeito de brilho ao passar o mouse */
.for-who-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transform: translateX(-100%) translateY(-100%);
    transition: transform 0.6s ease;
}

.for-who-card:hover::after {
    transform: translateX(100%) translateY(100%);
}

.for-who-card:hover {
    transform: translateY(-12px) scale(1.02) !important;
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.15) !important,
        0 0 0 1px rgba(156, 39, 176, 0.1) !important;
}

.for-who-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    border-radius: 25px 25px 0 0;
}

.card-purple::before { background: linear-gradient(90deg, #9c27b0 0%, #ba68c8 100%) !important; }
.card-yellow::before { background: linear-gradient(90deg, #ffc107 0%, #ffd54f 100%) !important; }
.card-pink::before { background: linear-gradient(90deg, #ff4081 0%, #ff80ab 100%) !important; }
.card-blue::before { background: linear-gradient(90deg, #00bcd4 0%, #4dd0e1 100%) !important; }

.for-who-card .icon-wrapper {
    width: 90px !important;
    height: 90px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto 20px !important;
    color: white !important;
    transition: transform 0.3s ease !important;
}

.for-who-card .icon-wrapper img {
    background: transparent !important;
    filter: brightness(0) invert(1) !important;
}

.card-purple .icon-wrapper { background: linear-gradient(135deg, #9c27b0 0%, #7b1fa2 100%) !important; }
.card-yellow .icon-wrapper { background: linear-gradient(135deg, #ffc107 0%, #ffa000 100%) !important; }
.card-pink .icon-wrapper { background: linear-gradient(135deg, #ff4081 0%, #f50057 100%) !important; }
.card-blue .icon-wrapper { background: linear-gradient(135deg, #00bcd4 0%, #0097a7 100%) !important; }

.for-who-card:hover .icon-wrapper {
    transform: scale(1.1) rotate(5deg) !important;
}

.for-who-card h3 {
    font-family: 'Fredoka', sans-serif !important;
    font-size: 1.4rem !important;
    margin-bottom: 12px !important;
    color: #2d3748 !important;
    font-weight: 600 !important;
}

.for-who-card p {
    color: #4a5568 !important;
    line-height: 1.6 !important;
    font-size: 0.95rem !important;
}

/* === SEÇÃO: EXPLICAÇÃO DO PRODUTO === */
.teatia-product-explanation {
    padding: 100px 20px !important;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f3f5 100%) !important;
    position: relative !important;
    overflow: hidden !important;
}

.teatia-product-explanation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="%239c27b0" opacity="0.05"/></svg>') repeat;
    opacity: 0.3;
    z-index: 0;
}

.product-explanation-grid {
    position: relative !important;
    z-index: 1 !important;
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 60px !important;
    align-items: center !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
}

.product-explanation-content h2.section-title {
    font-family: 'Fredoka', sans-serif !important;
    font-size: 2rem !important;
    line-height: 1.4 !important;
    color: #2d3748 !important;
    margin-bottom: 40px !important;
    font-weight: 600 !important;
}

.product-explanation-content h2.text-left {
    text-align: left !important;
}

.product-users-list {
    margin-bottom: 35px !important;
}

.product-users-list h3 {
    font-family: 'Fredoka', sans-serif !important;
    font-size: 1.3rem !important;
    color: #9c27b0 !important;
    margin-bottom: 20px !important;
    font-weight: 600 !important;
}

.users-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.users-list li {
    display: flex !important;
    align-items: center !important;
    gap: 15px !important;
    padding: 15px 0 !important;
    font-size: 1.1rem !important;
    color: #4a5568 !important;
    border-bottom: 1px solid #e2e8f0 !important;
    transition: all 0.3s ease !important;
}

.users-list li:last-child {
    border-bottom: none !important;
}

.users-list li svg {
    flex-shrink: 0 !important;
    color: #9c27b0 !important;
    background: linear-gradient(135deg, #e1bee7 0%, #f3e5f5 100%) !important;
    padding: 8px !important;
    border-radius: 50% !important;
    width: 40px !important;
    height: 40px !important;
}

.users-list li:hover {
    padding-left: 10px !important;
    color: #2d3748 !important;
}

.product-focus {
    margin-top: 40px !important;
}

.focus-badge {
    display: flex !important;
    align-items: center !important;
    gap: 20px !important;
    background: linear-gradient(135deg, #9c27b0 0%, #7b1fa2 100%) !important;
    padding: 25px 30px !important;
    border-radius: 20px !important;
    box-shadow: 0 10px 30px rgba(156, 39, 176, 0.3) !important;
    position: relative !important;
    overflow: hidden !important;
}

.focus-badge::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

.focus-icon {
    width: 60px !important;
    height: 60px !important;
    flex-shrink: 0 !important;
    background: transparent !important;
    animation: pulse 2s ease-in-out infinite;
    object-fit: contain !important;
}

.focus-text {
    position: relative !important;
    z-index: 1 !important;
}

.focus-text strong {
    color: white !important;
    font-family: 'Fredoka', sans-serif !important;
    font-size: 1.15rem !important;
    line-height: 1.5 !important;
    font-weight: 600 !important;
    display: block !important;
}

/* Imagem da explicação */
.product-explanation-image {
    position: relative !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 20px !important;
}

/* Label do Carrossel */
.carousel-label {
    text-align: center !important;
    margin-bottom: 10px !important;
}

.carousel-label h3 {
    font-family: 'Fredoka', sans-serif !important;
    font-size: 1.5rem !important;
    color: #2d3748 !important;
    font-weight: 700 !important;
    margin: 0 !important;
    background: linear-gradient(135deg, #c6a3d5 0%, #b2cdd6 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

.users-illustration {
    width: 100% !important;
    max-width: 500px !important;
    height: auto !important;
    border-radius: 30px !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15) !important;
    transition: transform 0.3s ease !important;
}

.users-illustration:hover {
    transform: scale(1.02) !important;
}

.image-overlay-cards {
    position: absolute !important;
    width: 100% !important;
    height: 100% !important;
    top: 0 !important;
    left: 0 !important;
    pointer-events: none !important;
}

.overlay-card {
    position: absolute !important;
    background: white !important;
    padding: 12px 18px !important;
    border-radius: 15px !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    font-family: 'Fredoka', sans-serif !important;
    font-size: 0.85rem !important;
    font-weight: 500 !important;
    animation: float 4s ease-in-out infinite !important;
    pointer-events: all !important;
}

.overlay-card .card-icon {
    width: 40px !important;
    height: 40px !important;
    background: transparent !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
}

.overlay-card .card-icon img {
    width: 100% !important;
    height: 100% !important;
    background: transparent !important;
    filter: none !important;
    object-fit: contain !important;
}

.overlay-card .card-label {
    color: #2d3748 !important;
    line-height: 1.2 !important;
}

.card-teacher {
    top: 10% !important;
    left: -10% !important;
    background: linear-gradient(135deg, #fff9c4 0%, #ffffff 100%) !important;
    animation-delay: 0s !important;
}

.card-therapist {
    top: 45% !important;
    right: -12% !important;
    background: linear-gradient(135deg, #b2ebf2 0%, #ffffff 100%) !important;
    animation-delay: 1.5s !important;
}

.card-family {
    bottom: 12% !important;
    left: -8% !important;
    background: linear-gradient(135deg, #f8bbd0 0%, #ffffff 100%) !important;
    animation-delay: 3s !important;
}

/* Responsividade */
@media (max-width: 968px) {
    .product-explanation-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }
    
    .product-explanation-content h2.section-title {
        font-size: 1.6rem !important;
        text-align: center !important;
    }
    
    .product-users-list h3 {
        text-align: center !important;
    }
    
    .overlay-card {
        display: none !important;
    }
    
    .users-illustration {
        max-width: 400px !important;
    }
}

@media (max-width: 600px) {
    .teatia-product-explanation {
        padding: 60px 15px !important;
    }
    
    .product-explanation-content h2.section-title {
        font-size: 1.4rem !important;
    }
    
    .users-list li {
        font-size: 1rem !important;
    }
    
    .focus-badge {
        flex-direction: column !important;
        text-align: center !important;
        padding: 20px !important;
    }
    
    .focus-text strong {
        font-size: 1rem !important;
    }
}

/* === COMO FUNCIONA === */
.teatia-how-it-works {
    padding: 100px 20px !important;
    background: linear-gradient(135deg, #f8f4ff 0%, #e8f4f8 100%) !important;
    position: relative;
    overflow: hidden;
}

.teatia-how-it-works::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(198, 163, 213, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.teatia-how-it-works::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(178, 205, 214, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.teatia-how-it-works .container {
    position: relative;
    z-index: 1;
}

.steps-wrapper {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 30px !important;
    margin: 50px 0 !important;
    max-width: 1200px;
    margin-left: auto !important;
    margin-right: auto !important;
}

.step-card {
    text-align: center !important;
    padding: 40px 25px !important;
    background: white !important;
    border-radius: 25px !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08) !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative;
    border: 2px solid transparent;
}

.step-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #c6a3d5, #b2cdd6);
    border-radius: 25px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.step-card:hover {
    transform: translateY(-10px) scale(1.02) !important;
    box-shadow: 0 15px 50px rgba(198, 163, 213, 0.25) !important;
}

.step-card:hover::before {
    opacity: 1;
}

.step-arrow {
    display: none !important;
}

.step-number {
    width: 70px !important;
    height: 70px !important;
    border-radius: 50% !important;
    background: linear-gradient(135deg, #c6a3d5 0%, #b2cdd6 100%) !important;
    color: white !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-family: 'Fredoka', sans-serif !important;
    font-size: 2rem !important;
    margin: 0 auto 25px !important;
    font-weight: 700 !important;
    box-shadow: 0 8px 20px rgba(198, 163, 213, 0.3);
    position: relative;
}

.step-number::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 85px;
    height: 85px;
    border: 2px dashed rgba(198, 163, 213, 0.3);
    border-radius: 50%;
}

.step-card h3 {
    font-family: 'Fredoka', sans-serif !important;
    font-size: 1.3rem !important;
    margin-bottom: 15px !important;
    color: #2d3748 !important;
    font-weight: 700 !important;
}

.step-card p {
    color: #666 !important;
    font-size: 0.95rem !important;
    line-height: 1.7 !important;
    margin: 0;
}

/* Responsivo para Como Funciona */
@media (max-width: 968px) {
    .steps-wrapper {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 25px !important;
    }
}

@media (max-width: 640px) {
    .steps-wrapper {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    .step-card {
        padding: 30px 20px !important;
    }
}
.badge-text {
    font-weight: 600 !important;
    color: #2d3748 !important;
    font-size: 0.9rem !important;
}

/* === PRODUTOS === */
.teatia-featured-products {
    padding: 80px 20px !important;
    background: linear-gradient(135deg, #f9f7fa 0%, #faf9fb 100%) !important;
}

/* Grid de Produtos na Homepage - Mesmo Design da Loja */
.products-grid-homepage {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto;
}

.product-card-home {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.product-card-home:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(198, 163, 213, 0.25);
}

.product-link-home {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* Badge de Desconto */
.badge-sale-home {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #ff6b9d 0%, #ff4d88 100%);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-family: 'Fredoka', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    z-index: 5;
    box-shadow: 0 3px 10px rgba(255, 107, 157, 0.4);
}

/* Imagem */
.product-image-home {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: #f5f5f5;
}

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

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

/* Título */
.product-title-home {
    padding: 20px 20px 10px;
    font-family: 'Fredoka', sans-serif;
    font-size: 1.05rem;
    line-height: 1.4;
    color: #2d3748;
    margin: 0;
    font-weight: 600;
    min-height: 55px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Preço */
.product-price-home {
    padding: 0 20px 15px;
    font-family: 'Fredoka', sans-serif;
    font-size: 1.5rem;
    color: #c6a3d5;
    font-weight: 700;
    margin-top: auto;
}

.product-price-home del {
    opacity: 0.6;
    font-size: 1.1rem;
    margin-right: 8px;
    color: #999;
}

.product-price-home ins {
    text-decoration: none;
    color: #c6a3d5;
}

/* Botão Adicionar ao Carrinho */
.btn-add-cart-home {
    margin: 0 20px 20px;
    padding: 14px 25px;
    background: linear-gradient(135deg, #c6a3d5 0%, #b599c4 100%);
    color: white;
    border: none;
    border-radius: 25px;
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(198, 163, 213, 0.3);
}

.btn-add-cart-home:hover {
    background: linear-gradient(135deg, #b599c4 0%, #a388b3 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(198, 163, 213, 0.4);
}

.btn-add-cart-home img {
    filter: brightness(0) invert(1);
}

/* Responsivo */
@media (max-width: 968px) {
    .products-grid-homepage {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 640px) {
    .products-grid-homepage {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }
    
    .product-image-home {
        height: 220px;
    }
}

/* Força o grid - remove floats do WooCommerce */
.woocommerce ul.products {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 30px !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
    width: 100% !important;
    max-width: 1100px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
    content: none !important;
    display: none !important;
}

.woocommerce .products ul,
.woocommerce-page .products ul {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
}

.woocommerce ul.products li.product {
    margin: 0 !important;
    padding: 0 !important;
    border-radius: 20px !important;
    background: white !important;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08) !important;
    transition: all 0.3s ease !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
    position: relative !important;
    width: 100% !important;
    float: none !important;
    clear: none !important;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
    width: auto !important;
    float: none !important;
}

.woocommerce ul.products li.product:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 15px 40px rgba(156, 39, 176, 0.2) !important;
}

.woocommerce ul.products li.product a.woocommerce-LoopProduct-link {
    display: flex !important;
    flex-direction: column !important;
    text-decoration: none !important;
    flex: 1 !important;
}

.woocommerce ul.products li.product a img,
.woocommerce ul.products li.product img {
    width: 100% !important;
    height: 280px !important;
    object-fit: cover !important;
    display: block !important;
    margin: 0 !important;
    flex-shrink: 0 !important;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    padding: 20px 20px 10px !important;
    font-family: 'Fredoka', sans-serif !important;
    font-size: 1.05rem !important;
    line-height: 1.4 !important;
    color: #2d3748 !important;
    margin: 0 !important;
    font-weight: 600 !important;
    display: block !important;
    min-height: 55px !important;
    flex-shrink: 0 !important;
}

.woocommerce ul.products li.product .price {
    padding: 0 20px 15px !important;
    font-family: 'Fredoka', sans-serif !important;
    font-size: 1.5rem !important;
    color: #9c27b0 !important;
    font-weight: 700 !important;
    display: block !important;
    margin: 0 !important;
    margin-top: auto !important;
    flex-shrink: 0 !important;
}

.woocommerce ul.products li.product .price del {
    opacity: 0.6 !important;
    font-size: 1.1rem !important;
    margin-right: 8px !important;
}

.woocommerce ul.products li.product .price ins {
    text-decoration: none !important;
}

.woocommerce ul.products li.product .button {
    margin: 0 20px 20px !important;
    padding: 14px 25px !important;
    background: linear-gradient(135deg, #9c27b0 0%, #7b1fa2 100%) !important;
    color: white !important;
    border: none !important;
    border-radius: 25px !important;
    font-weight: 600 !important;
    font-size: 0.95rem !important;
    transition: all 0.3s ease !important;
    text-align: center !important;
    display: block !important;
    text-decoration: none !important;
    flex-shrink: 0 !important;
}

.woocommerce ul.products li.product .button:hover {
    background: linear-gradient(135deg, #7b1fa2 0%, #9c27b0 100%) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 15px rgba(156, 39, 176, 0.3) !important;
}

.woocommerce ul.products li.product .onsale {
    position: absolute !important;
    top: 15px !important;
    right: 15px !important;
    background: linear-gradient(135deg, #ff4081 0%, #f50057 100%) !important;
    color: white !important;
    padding: 8px 15px !important;
    border-radius: 20px !important;
    font-weight: 700 !important;
    font-size: 0.85rem !important;
    z-index: 10 !important;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15) !important;
}

.woocommerce ul.products li.product .download-icon {
    position: absolute !important;
    top: 15px !important;
    left: 15px !important;
    background: rgba(255, 255, 255, 0.95) !important;
    padding: 8px 12px !important;
    border-radius: 50% !important;
    font-size: 1.2rem !important;
    z-index: 10 !important;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1) !important;
}

/* Responsive Grid */
@media (max-width: 968px) {
    .woocommerce ul.products,
    .woocommerce-page ul.products {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 25px !important;
    }
}

@media (max-width: 640px) {
    .woocommerce ul.products,
    .woocommerce-page ul.products {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    .woocommerce ul.products li.product img,
    .woocommerce ul.products li.product a img {
        height: 240px !important;
    }
}

.view-all-products {
    text-align: center !important;
    margin-top: 40px !important;
}

/* === TESTIMONIALS === */
.teatia-testimonials {
    padding: 80px 20px !important;
    background: white !important;
}

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

.testimonial-card {
    background: linear-gradient(135deg, #fff 0%, #fafafa 100%) !important;
    padding: 30px !important;
    border-radius: 20px !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08) !important;
    transition: all 0.3s ease !important;
}

.testimonial-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 12px 35px rgba(156, 39, 176, 0.15) !important;
}

.stars {
    font-size: 1.2rem !important;
    margin-bottom: 18px !important;
}

.testimonial-text {
    color: #4a5568 !important;
    line-height: 1.7 !important;
    margin-bottom: 20px !important;
    font-style: italic !important;
    font-size: 0.95rem !important;
}

.testimonial-author {
    display: flex !important;
    flex-direction: column !important;
    gap: 5px !important;
}

.testimonial-author strong {
    color: #2d3748 !important;
    font-weight: 600 !important;
}

.testimonial-author span {
    color: #718096 !important;
    font-size: 0.85rem !important;
}

/* === FAQ === */
.teatia-faq {
    padding: 80px 20px !important;
    background: linear-gradient(135deg, #fff9e6 0%, #f8f4ff 100%) !important;
}

.faq-accordion {
    max-width: 800px !important;
    margin: 0 auto !important;
}

.faq-item {
    background: white !important;
    border: 2px solid #f0f0f0 !important;
    border-radius: 15px !important;
    margin-bottom: 15px !important;
    overflow: hidden !important;
    transition: all 0.3s ease !important;
}

.faq-item:hover {
    border-color: #9c27b0 !important;
    box-shadow: 0 5px 15px rgba(156, 39, 176, 0.1) !important;
}

.faq-item[open] {
    border-color: #9c27b0 !important;
    box-shadow: 0 5px 20px rgba(156, 39, 176, 0.15) !important;
}

.faq-question {
    padding: 20px 25px !important;
    cursor: pointer !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    font-weight: 600 !important;
    color: #2d3748 !important;
    list-style: none !important;
}

.faq-question::-webkit-details-marker {
    display: none !important;
}

.faq-icon {
    font-size: 1.5rem !important;
    color: #9c27b0 !important;
    transition: transform 0.3s ease !important;
    font-weight: 300 !important;
}

.faq-item[open] .faq-icon {
    transform: rotate(45deg) !important;
}

.faq-answer {
    padding: 0 25px 20px 25px !important;
    color: #4a5568 !important;
    line-height: 1.7 !important;
}

/* === CTA FINAL === */
.teatia-cta-final {
    padding: 80px 20px !important;
    background: linear-gradient(135deg, #9c27b0 0%, #ff4081 100%) !important;
    color: white !important;
    position: relative !important;
    overflow: hidden !important;
}

.teatia-cta-final::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.cta-content {
    text-align: center !important;
    max-width: 650px !important;
    margin: 0 auto !important;
    position: relative !important;
    z-index: 1 !important;
}

.cta-content h2 {
    font-family: 'Fredoka', sans-serif !important;
    font-size: clamp(2rem, 4vw, 2.5rem) !important;
    margin-bottom: 20px !important;
    font-weight: 700 !important;
}

.cta-content p {
    font-size: clamp(1rem, 2vw, 1.125rem) !important;
    margin-bottom: 30px !important;
    opacity: 0.95 !important;
}

.cta-content .teatia-button {
    background: white !important;
    color: #9c27b0 !important;
    font-weight: 700 !important;
}

.cta-content .teatia-button:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2) !important;
}

/* === BLOG SECTION (DICAS E IDEIAS) === */
.blog-section {
    padding: 100px 20px;
    background: #ffffff;
    position: relative;
}

.blog-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(180deg, #f8f4ff 0%, rgba(248, 244, 255, 0) 100%);
    z-index: 0;
}

.blog-section .container {
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-family: 'Fredoka', sans-serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: #2d3748;
    margin: 0 0 15px;
    font-weight: 700;
}

.section-header p {
    font-size: 1.15rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.blog-posts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 0 auto;
    max-width: 1000px;
    padding: 0 20px;
}

/* === CARROSSEL DE BLOG === */
.blog-posts-carousel-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.blog-posts-carousel {
    display: flex;
    overflow-x: hidden;
    scroll-behavior: smooth;
    gap: 30px;
    padding: 20px 0;
}

.blog-posts-carousel .blog-card {
    flex: 0 0 calc(33.333% - 20px);
    min-width: 300px;
    max-width: 380px;
}

/* Placeholders */
.blog-placeholder .placeholder-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    background: linear-gradient(135deg, #f8f4ff 0%, #e8f4f8 100%);
}

.blog-placeholder .blog-title a,
.blog-placeholder .blog-read-more {
    opacity: 0.7;
}

.blog-disabled {
    pointer-events: none;
    cursor: default;
}

/* Botões do carrossel */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: white;
    border: 2px solid #c6a3d5;
    color: #c6a3d5;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.carousel-btn:hover {
    background: #c6a3d5;
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: 0;
}

.carousel-next {
    right: 0;
}

.carousel-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.carousel-btn:disabled:hover {
    background: white;
    color: #c6a3d5;
    transform: translateY(-50%);
}

/* Indicadores */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.carousel-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d0d0d0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-indicator.active {
    background: #c6a3d5;
    width: 30px;
    border-radius: 5px;
}

.carousel-indicator:hover {
    background: #b292c4;
}

.blog-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.07);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    border: 1px solid #f0f0f0;
    position: relative;
    max-width: 420px;
    margin: 0 auto;
}

.blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #c6a3d5 0%, #ffc107 50%, #b2cdd6 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.blog-card:hover::before {
    transform: scaleX(1);
}

.blog-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(198, 163, 213, 0.25);
    border-color: #c6a3d5;
}

.blog-thumbnail {
    position: relative;
    overflow: hidden;
    height: 240px;
    background: linear-gradient(135deg, #f8f4ff 0%, #e8f4f8 100%);
}

.blog-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.blog-card:hover .blog-thumbnail img {
    transform: scale(1.1) rotate(1deg);
}

.blog-content {
    padding: 35px 40px 38px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 22px;
    flex-wrap: wrap;
    align-items: center;
}

.blog-date,
.blog-category {
    font-size: 0.875rem;
    color: #999;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-date img {
    opacity: 0.7;
}

.blog-category {
    background: linear-gradient(135deg, #f3e5f5 0%, #fff9c4 100%);
    padding: 4px 12px;
    border-radius: 12px;
    color: #666;
    font-size: 0.8rem;
    font-weight: 600;
}

.blog-title {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.35rem;
    margin: 0 0 20px;
    line-height: 1.4;
    font-weight: 600;
}

.blog-title a {
    color: #2d3748;
    text-decoration: none;
    transition: color 0.3s ease;
    background: linear-gradient(to right, #c6a3d5 0%, #c6a3d5 100%);
    background-size: 0% 2px;
    background-repeat: no-repeat;
    background-position: left bottom;
    padding-bottom: 2px;
}

.blog-card:hover .blog-title a {
    background-size: 100% 2px;
}

.blog-title a:hover {
    color: #c6a3d5;
}

.blog-excerpt {
    color: #666;
    line-height: 1.8;
    margin-bottom: 28px;
    flex: 1;
    font-size: 0.95rem;
}

.blog-read-more {
    color: #c6a3d5;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.blog-read-more::after {
    content: '→';
    transition: transform 0.3s ease;
}

.blog-read-more:hover {
    color: #b292c4;
}

.blog-read-more:hover::after {
    transform: translateX(5px);
}

.blog-cta {
    text-align: center;
    margin-top: 60px;
}

.btn-outline {
    display: inline-block;
    padding: 14px 35px;
    border: 2px solid #9c27b0;
    color: #9c27b0;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: #9c27b0;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(156, 39, 176, 0.3);
}

.no-posts {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 20px;
}

.no-posts p {
    font-size: 1.2rem;
    color: #666;
    margin: 0;
}

/* Responsive Blog Section */
@media (max-width: 968px) {
    .blog-posts {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .blog-posts-carousel-wrapper {
        padding: 0 50px;
    }
    
    .blog-posts-carousel .blog-card {
        flex: 0 0 calc(50% - 15px);
    }
}

@media (max-width: 640px) {
    .blog-section {
        padding: 60px 20px;
    }
    
    .blog-posts {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .blog-thumbnail {
        height: 200px;
    }
    
    .blog-posts-carousel-wrapper {
        padding: 0 45px;
    }
    
    .blog-posts-carousel .blog-card {
        flex: 0 0 100%;
        min-width: 280px;
    }
    
    .carousel-btn {
        width: 38px;
        height: 38px;
    }
}

/* === RESPONSIVE === */
@media (max-width: 968px) {
    .teatia-hero-content {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }
    
    .teatia-hero {
        min-height: auto !important;
        padding: 60px 20px !important;
    }
    
    .teatia-hero-image {
        height: 350px !important;
    }
    
    .floating-card {
        padding: 12px 18px !important;
    }
    
    .card-3 {
        bottom: 50px !important;
        left: 40px !important;
    }
    
    .steps-wrapper {
        flex-direction: column !important;
    }
    
    .step-arrow {
        transform: rotate(90deg) !important;
    }
    
    .step-card {
        max-width: 100% !important;
    }
    
    .trust-badges {
        flex-direction: column !important;
        align-items: center !important;
    }
    
    .for-who-grid {
        grid-template-columns: 1fr !important;
        max-width: 100% !important;
        gap: 20px !important;
    }
    
    .for-who-card {
        padding: 32px 24px !important;
        margin: 0 auto !important;
        max-width: 400px !important;
    }
    
    .for-who-card .icon-wrapper {
        width: 80px !important;
        height: 80px !important;
        margin-bottom: 16px !important;
    }
    
    .for-who-card h3 {
        font-size: 1.3rem !important;
        margin-bottom: 10px !important;
    }
    
    .for-who-card p {
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
    }
}

@media (max-width: 640px) {
    .teatia-hero {
        padding: 50px 16px !important;
        min-height: auto !important;
    }
    
    .teatia-hero-title {
        font-size: 1.75rem !important;
        margin-bottom: 16px !important;
    }
    
    .teatia-hero-subtitle {
        font-size: 1rem !important;
        margin-bottom: 24px !important;
    }
    
    .teatia-hero-stats {
        justify-content: space-around !important;
        width: 100% !important;
        gap: 16px !important;
        margin-bottom: 28px !important;
    }
    
    .stat-item {
        min-width: 80px !important;
    }
    
    .stat-number {
        font-size: 1.5rem !important;
    }
    
    .stat-label {
        font-size: 0.75rem !important;
    }
    
    .teatia-hero-buttons {
        flex-direction: column !important;
        width: 100% !important;
        gap: 12px !important;
    }
    
    .teatia-button {
        width: 100% !important;
        justify-content: center !important;
        padding: 16px 28px !important;
        font-size: 1rem !important;
    }
    
    .floating-card {
        font-size: 0.85rem !important;
        padding: 10px 14px !important;
    }
    
    .floating-card .emoji {
        font-size: 1.5rem !important;
    }
    
    .floating-card .text {
        font-size: 0.85rem !important;
    }
    
    .card-1 {
        top: 20px !important;
        left: 10px !important;
    }
    
    .card-2 {
        top: 120px !important;
        right: 10px !important;
    }
    
    .card-3 {
        bottom: 30px !important;
        left: 20px !important;
    }
}
/* === CARROSSEL DE PRODUTOS === */
.product-carousel-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: visible;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.product-carousel {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    background: #f8f9fa;
    border-radius: 20px;
    overflow: hidden;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    cursor: pointer;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide:hover {
    transform: scale(1.02);
}

.carousel-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 3px solid #fff;
}

/* Ícone Clicável */
.click-indicator {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(198, 163, 213, 0.95);
    color: white;
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    animation: bounce 2s ease-in-out infinite;
    z-index: 5;
    pointer-events: none;
}

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

/* Floating Cards no Carrossel */
.product-carousel-container .image-overlay-cards {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.product-carousel-container .overlay-card {
    position: absolute;
    background: white;
    padding: 14px 20px;
    border-radius: 15px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    z-index: 10;
    animation: float 3s ease-in-out infinite;
    pointer-events: all;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.product-carousel-container .card-teacher {
    top: -15%;
    left: -8%;
    background: linear-gradient(135deg, #fff9c4 0%, #ffffff 100%);
}

.product-carousel-container .card-therapist {
    top: 45%;
    right: -10%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #b2ebf2 0%, #ffffff 100%);
    animation-delay: 1s;
}

.product-carousel-container .card-family {
    bottom: -12%;
    left: -5%;
    background: linear-gradient(135deg, #c8e6c9 0%, #ffffff 100%);
    animation-delay: 2s;
}

.product-carousel-container .card-icon {
    width: 40px;
    height: 40px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.product-carousel-container .card-icon img {
    width: 100%;
    height: 100%;
    background: transparent;
    object-fit: contain;
}

.product-carousel-container .card-label {
    line-height: 1.3;
    color: #2d3748;
}

.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.carousel-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid white;
}

.carousel-dots .dot.active {
    background: #c6a3d5;
    width: 30px;
    border-radius: 6px;
}

.carousel-dots .dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* === MODAL DE PRODUTO === */
.product-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: white;
    border-radius: 20px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.4s ease;
}

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

.modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 35px;
    font-weight: bold;
    color: #666;
    cursor: pointer;
    z-index: 10;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #c6a3d5;
}

.modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 40px;
}

.modal-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.modal-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.modal-info h3 {
    font-size: 28px;
    color: #2d3748;
    margin: 0;
    font-family: 'Fredoka', sans-serif;
}

.modal-info p {
    color: #666;
    line-height: 1.8;
    font-size: 16px;
}

.modal-price {
    font-size: 32px;
    font-weight: bold;
    color: #c6a3d5;
}

.modal-actions {
    display: flex;
    gap: 15px;
    margin-top: auto;
}

.btn-modal {
    flex: 1;
    padding: 15px 25px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-view-more {
    background: #e8e1ea;
    color: #7a5a8a;
}

.btn-view-more:hover {
    background: #d8d1da;
    transform: translateY(-2px);
}

.btn-add-cart {
    background: #c6a3d5;
    color: white;
}

.btn-add-cart:hover {
    background: #b292c4;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(198, 163, 213, 0.4);
}

@media (max-width: 768px) {
    .modal-body {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 30px 20px;
    }
    
    .modal-actions {
        flex-direction: column;
    }
}

/* === FAIXA PROMOCIONAL PLANNER === */
.teatia-planner-promo {
    background: linear-gradient(135deg, #e8e1ea 0%, #b1c5cb 100%);
    padding: 60px 20px;
    position: relative;
    overflow: hidden;
}

.teatia-planner-promo::before {
    content: '🎁';
    position: absolute;
    font-size: 200px;
    opacity: 0.05;
    top: -50px;
    right: -50px;
    transform: rotate(15deg);
}

.promo-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 30px;
    align-items: center;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.promo-content * {
    max-width: 100%;
    box-sizing: border-box;
}

.promo-icon {
    font-size: 80px;
    animation: pulse 2s ease-in-out infinite;
}

.promo-text h2 {
    font-family: 'Fredoka', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: #2d3748;
    margin: 0 0 10px 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

.promo-text p {
    color: #666;
    margin: 0;
    font-size: 1.1rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

.btn-planner {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 35px;
    background: linear-gradient(135deg, #c6a3d5 0%, #b292c4 100%);
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(198, 163, 213, 0.3);
    white-space: nowrap;
    max-width: 100%;
}

.btn-planner:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(198, 163, 213, 0.5);
}

@media (max-width: 968px) {
    .promo-content {
        grid-template-columns: 1fr !important;
        text-align: center;
        gap: 20px;
        padding: 30px 20px !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }
    
    .promo-text {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
    }
    
    .promo-text h2 {
        font-size: clamp(1.2rem, 5vw, 1.8rem) !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }
    
    .promo-text p {
        font-size: 0.95rem !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }
    
    .promo-icon {
        font-size: 60px !important;
        margin: 0 auto !important;
        display: block !important;
    }
    
    .btn-planner {
        white-space: normal !important;
        text-align: center !important;
        padding: 15px 25px !important;
        font-size: 1rem !important;
        width: auto !important;
        max-width: 100% !important;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }
}

@media (max-width: 640px) {
    .benefits-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    .benefit-card {
        padding: 28px 24px !important;
        width: 100% !important;
    }
    
    .benefit-card h3 {
        font-size: 1.2rem;
    }
    
    .benefit-card p {
        font-size: 0.95rem;
    }
}

/* === SEÇÃO DE LABELS DE BENEFÍCIOS === */
.teatia-benefits-labels {
    padding: 80px 20px;
    background: #fafafa;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.benefit-card {
    padding: 30px 20px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    font-size: 48px;
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #2d3748;
}

.benefit-card h3 {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.3rem;
    color: #2d3748;
    margin: 0 0 15px 0;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.benefit-card p {
    color: #4a5568;
    line-height: 1.8;
    margin: 0;
    font-size: 0.95rem;
}

/* === MELHORIAS NA SEÇÃO DE BLOG/DICAS === */
.blog-section {
    background: linear-gradient(135deg, #f8f4ff 0%, #e8f4f8 100%);
}

.blog-card {
    background: white;
    border: 2px solid #e8e1ea;
    transition: all 0.3s ease;
}

.blog-card:hover {
    border-color: #c6a3d5;
    box-shadow: 0 10px 40px rgba(198, 163, 213, 0.2);
}

.blog-meta span {
    background: #e8e1ea;
    color: #7a5a8a;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
}

.blog-title a {
    color: #2d3748;
    transition: color 0.3s ease;
}

.blog-title a:hover {
    color: #c6a3d5;
}

.blog-read-more {
    color: #c6a3d5;
}

.blog-read-more:hover {
    color: #b292c4;
}

.btn-outline {
    border-color: #c6a3d5;
    color: #c6a3d5;
}

.btn-outline:hover {
    background: #c6a3d5;
    color: white;
    box-shadow: 0 5px 20px rgba(198, 163, 213, 0.3);
}

/* === MOBILE OVERFLOW FIX === */
@media (max-width: 968px) {
    .container {
        padding: 0 15px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow-x: hidden !important;
    }
    
    * {
        max-width: 100%;
        box-sizing: border-box;
    }
}