/* ============================================
   HOME.CSS - ESTILOS DA PÁGINA INICIAL
   ============================================ */
/* ============================================ */
/* FAQ SECTION STYLES */
/* ============================================ */
.faq-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #eef2f7 100%);
    position: relative;
}

.faq-section .container {
    max-width: 900px;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 40px;
}

.faq-item {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(37, 99, 235, 0.08);
}

.faq-item:hover {
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.10);
    border-color: rgba(37, 99, 235, 0.15);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    cursor: pointer;
    transition: background 0.3s ease;
    gap: 16px;
}

.faq-question:hover {
    background: rgba(37, 99, 235, 0.03);
}

.faq-question h3 {
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
    flex: 1;
    line-height: 1.4;
}

.faq-toggle {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f5f9;
    border-radius: 50%;
    transition: all 0.3s ease;
    color: #64748b;
}

.faq-item.active .faq-toggle {
    background: #2563eb;
    color: white;
    transform: rotate(180deg);
}

.faq-toggle i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
    padding: 0 24px;
}

.faq-item.active .faq-answer {
    max-height: 400px;
    padding: 0 24px 24px 24px;
}

.faq-answer p {
    font-size: 15px;
    line-height: 1.7;
    color: #475569;
    margin: 0 0 12px 0;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul {
    list-style: none;
    padding: 0;
    margin: 8px 0 0 0;
}

.faq-answer ul li {
    padding: 6px 0;
    font-size: 15px;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1.5;
}

.faq-answer ul li strong {
    color: #1e293b;
}

.faq-answer strong {
    color: #2563eb;
}

/* Responsive */
@media (max-width: 768px) {
    .faq-section {
        padding: 50px 20px;
    }
    
    .faq-question {
        padding: 16px 18px;
    }
    
    .faq-question h3 {
        font-size: 14px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 18px 18px 18px;
    }
    
    .faq-answer p,
    .faq-answer ul li {
        font-size: 14px;
    }
}
/* ============================================
   SEÇÃO DE AVALIAÇÕES GOOGLE
   ============================================ */
.google-reviews {
    padding: 80px 0;
    background: #f8fafc;
    position: relative;
    overflow: hidden;
}

.google-reviews::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4285f4, #ea4335, #fbbc04, #34a853);
}

.google-reviews .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.google-reviews .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(66, 133, 244, 0.1);
    color: #4285f4;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.google-reviews .section-badge i {
    font-size: 1rem;
}

.google-reviews .section-header h2 {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 15px;
}

.google-reviews .section-header h2 .highlight {
    background: linear-gradient(135deg, #4285f4, #ea4335);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.google-reviews .rating-summary {
    text-align: center;
    margin-bottom: 40px;
}

.google-rating-stars {
    display: inline-flex;
    gap: 8px;
    margin-bottom: 10px;
}

.google-rating-stars i {
    font-size: 28px;
}

.google-rating-stars i.fa-star,
.google-rating-stars i.fa-star-half-alt {
    color: #fbbc04;
}

.google-rating-stars i.fa-star-o {
    color: #cbd5e1;
}

.google-reviews .rating-average {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary);
}

.google-reviews .rating-count {
    color: var(--gray);
    font-size: 0.9rem;
}

/* Grid de Avaliações */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.review-card {
    background: white;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,  ㅤ 0, 0, 0.1);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4285f4, #34a853);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
}

.reviewer-info h4 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: var(--secondary);
}

.review-stars {
    color: #fbbc04;
    font-size: 0.8rem;
}

.review-stars i {
    margin-right: 2px;
}

.review-date {
    font-size: 0.7rem;
    color: var(--gray);
    margin-left: 5px;
}

.review-content {
    color: var(--dark);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 15px;
    font-style: italic;
}

.review-content::before {
    content: '"';
    font-size: 2rem;
    color: #4285f4;
    opacity: 0.3;
    margin-right: 5px;
}

.review-source {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #4285f4;
    font-size: 0.8rem;
}

.review-source i {
    font-size: 1rem;
}

.btn-all-reviews {
    text-align: center;
    margin-top: 50px;
}

.btn-google-reviews {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: white;
    color: #4285f4;
    border: 2px solid #4285f4;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-google-reviews:hover {
    background: #4285f4;
    color: white;
    transform: translateY(-2px);
}

.btn-google-reviews i {
    font-size: 1.2rem;
}

/* ============================================
   ESTILOS GERAIS
   ============================================ */
.success-message {
    background: #27ae60;
    color: white;
    padding: 12px;
    border-radius: 5px;
    margin-top: 15px;
    text-align: center;
}

.error-message {
    background: #e74c3c;
    color: white;
    padding: 12px;
    border-radius: 5px;
    margin-top: 15px;
    text-align: center;
}

/* Tipografia e cores base */
:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary: #0f172a;
    --gray-light: #f8fafc;
    --gray: #64748b;
    --dark: #1e293b;
    --success: #059669;
    --success-light: #d1fae5;
    --success-dark: #047857;
}

/* ============================================
   SEÇÃO HERO REFORMULADA
   ============================================ */
.hero-ws {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero-ws .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-ws-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-ws-content p {
    font-size: 1.2rem;
    color: #cbd5e1;
    margin-bottom: 30px;
}

.hero-ws-badge {
    display: inline-block;
    background: rgba(37, 99, 235, 0.2);
    color: #60a5fa;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.btn-ws {
    background: var(--primary);
    color: white;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

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

.hero-ws-stats {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.hero-ws-stats div strong {
    font-size: 1.8rem;
    display: block;
}

.hero-ws-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* ============================================
   SEÇÃO MANIFESTO
   ============================================ */
.manifesto {
    background: white;
    padding: 80px 0;
    text-align: center;
}

.manifesto h2 {
    font-size: 2.5rem;
    color: var(--secondary);
    max-width: 800px;
    margin: 0 auto 40px;
}

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

.manifesto-card {
    background: var(--gray-light);
    padding: 30px;
    border-radius: 16px;
    text-align: left;
}

.manifesto-card h3 {
    color: var(--primary);
    margin-bottom: 15px;
}

/* ============================================
   SEÇÃO DE SERVIÇOS
   ============================================ */
.services {
    background: var(--gray-light);
    padding: 80px 0;
}

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

.service-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.service-icon i {
    font-size: 30px;
    color: white;
}

.service-card h3 {
    margin-bottom: 15px;
}

/* ============================================
   SEÇÃO CASOS REAIS
   ============================================ */
.cases {
    padding: 80px 0;
    background: white;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.case-card {
    background: var(--gray-light);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
}

.case-content {
    padding: 30px;
    flex: 1;
}

.case-badge {
    background: var(--primary);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    display: inline-block;
    margin-bottom: 15px;
}

/* ============================================
   SEÇÃO MÉTODO
   ============================================ */
.method {
    background: var(--secondary);
    color: white;
    padding: 80px 0;
    text-align: center;
}

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

.method-step {
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

/* ============================================
   SEÇÃO CTA FINAL
   ============================================ */
.cta-final {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-final h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.btn-cta {
    background: white;
    color: var(--primary);
    padding: 14px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    margin-top: 20px;
    transition: all 0.3s;
}

.btn-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* ============================================
   HERO SLIDER
   ============================================ */
.hero-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 500px;
}

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

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-prev, .slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.4);
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-prev:hover, .slider-next:hover {
    background: rgba(0,0,0,0.8);
    transform: translateY(-50%) scale(1.1);
}

.slider-prev {
    left: 20px;
}

.slider-next {
    right: 20px;
}

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

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

.dot.active {
    background: white;
    width: 24px;
    border-radius: 6px;
}

.hero .container {
    max-width: 100%;
    padding: 0;
    margin: 0;
}

/* ============================================
   NEWSLETTER
   ============================================ */
.newsletter-group {
    display: flex;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-group input {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 5px;
}

/* ============================================
   BLOG SLIDER MODERNO
   ============================================ */
.blog-slider-moderno {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.blog-slider-moderno .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.blog-slider-moderno .section-badge {
    display: inline-block;
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.blog-slider-moderno .section-header h2 {
    font-size: 2.2rem;
    color: var(--secondary);
    margin-bottom: 15px;
}

.blog-slider-moderno .section-header h2 .highlight {
    color: var(--primary);
}

.blog-slider-moderno .section-header p {
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Slider Container */
.blog-slider-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
}

.blog-slider-wrapper {
    overflow: hidden;
    border-radius: 20px;
}

.blog-slider-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 30px;
}

/* Blog Card Moderno */
.blog-card-moderno {
    flex: 0 0 calc(33.333% - 20px);
    min-width: calc(33.333% - 20px);
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.blog-card-moderno:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.blog-card-moderno .blog-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.blog-card-moderno .blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 2;
}

.blog-card-moderno .blog-info {
    padding: 25px;
}

.blog-meta-moderno {
    display: flex;
    gap: 15px;
    margin-bottom: 12px;
    font-size: 0.8rem;
    color: var(--gray);
}

.blog-meta-moderno i {
    margin-right: 5px;
    color: var(--primary);
}

.blog-card-moderno h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-card-moderno h3 a {
    color: var(--secondary);
    text-decoration: none;
    transition: color 0.3s;
}

.blog-card-moderno h3 a:hover {
    color: var(--primary);
}

.blog-card-moderno p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

.read-more-moderno {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: gap 0.3s;
}

.read-more-moderno:hover {
    gap: 12px;
}

/* Botões de Navegação */
.blog-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: white;
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 10;
}

.blog-slider-btn:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.blog-slider-prev {
    left: 0;
}

.blog-slider-next {
    right: 0;
}

/* Dots de Navegação */
.blog-slider-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.blog-slider-dot {
    width: 10px;
    height: 10px;
    background: #cbd5e1;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.blog-slider-dot.active {
    width: 28px;
    background: var(--primary);
    border-radius: 5px;
}

.blog-slider-dot:hover {
    background: var(--primary);
    opacity: 0.7;
}

/* ============================================
   SERVIÇOS HOME - MESMO ESTILO DOS CARDS
   ============================================ */
.featured-services-home {
    padding: 80px 0;
    background: #f8fafc;
}

.featured-services-home .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.featured-services-home .section-badge {
    display: inline-block;
    background: rgba(37, 99, 235, 0.1);
    color: #2563eb;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.featured-services-home .section-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 15px;
}

.featured-services-home .section-header h2 .highlight {
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.featured-services-home .section-header p {
    color: #64748b;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Grid de Serviços Home */
.services-home-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
    min-height: 200px;
}

/* ============================================
   CARD DE SERVIÇO HOME - ESTILOS COMPLETOS
   ============================================ */
.service-home-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #f1f5f9;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.service-home-card:nth-child(1) { animation-delay: 0.05s; }
.service-home-card:nth-child(2) { animation-delay: 0.1s; }
.service-home-card:nth-child(3) { animation-delay: 0.15s; }
.service-home-card:nth-child(4) { animation-delay: 0.2s; }
.service-home-card:nth-child(5) { animation-delay: 0.25s; }
.service-home-card:nth-child(6) { animation-delay: 0.3s; }

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

.service-home-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 24px 48px rgba(37, 99, 235, 0.15);
    border-color: #2563eb;
}

/* Badges do Card */
.service-home-card .card-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.service-home-card .card-badge.popular {
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    color: white;
}

.service-home-card .card-badge.discount {
    background: linear-gradient(135deg, #059669, #047857);
    color: white;
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

/* Imagem do Card */
.service-home-card .card-image {
    height: 200px;
    background: linear-gradient(135deg, #e2e8f0, #f1f5f9);
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.service-home-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-home-card:hover .card-image img {
    transform: scale(1.08);
}

.service-home-card .card-image .image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 4rem;
    color: #94a3b8;
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
}

/* Corpo do Card */
.service-home-card .card-body {
    padding: 24px 24px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-home-card .card-body .card-category {
    display: inline-block;
    background: rgba(37, 99, 235, 0.08);
    color: #2563eb;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    align-self: flex-start;
    transition: all 0.3s;
}

.service-home-card:hover .card-body .card-category {
    background: rgba(37, 99, 235, 0.15);
}

.service-home-card .card-body h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
    line-height: 1.4;
    transition: color 0.3s;
}

.service-home-card:hover .card-body h3 {
    color: #2563eb;
}

.service-home-card .card-body .card-description {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
    min-height: 60px;
}

/* ============================================
   PREÇO - ESTILO PROFISSIONAL
   ============================================ */
.service-home-card .card-body .card-price {
    margin-bottom: 12px;
    padding-top: 12px;
    border-top: 1px solid #f1f5f9;
}

.service-home-card .card-body .card-price .price-wrapper {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

/* Wrapper do valor original (cortado) */
.service-home-card .card-body .card-price .price-original-wrapper {
    display: flex;
    align-items: center;
    gap: 4px;
    order: 0;
}
/* Valor principal com desconto */
.service-home-card .card-body .card-price .price-value {
    font-size: 2rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.5px;
}


.service-home-card .card-body .card-price .price-value.discount-price {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--success);
    letter-spacing: -0.5px;
}


/* Período (ex: /mês) */
.service-home-card .card-body .card-price .price-period {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
}


/* Valor original riscado (vem ANTES do valor com desconto) */
.service-home-card .card-body .card-price .price-original {
    font-size: 0.95rem;
    color: #94a3b8;
    text-decoration: line-through;
    font-weight: 500;
}
.service-home-card .card-body .card-price .price-original-period {
    font-size: 0.85rem;
    color: #94a3b8;
}

/* Wrapper do valor com desconto */
.service-home-card .card-body .card-price .price-discount-wrapper {
    display: flex;
    align-items: baseline;
    gap: 6px;
    order: 1;
}
/* ============================================
   ECONOMIZE - ESTILO PROFISSIONAL
   ============================================ */
.service-home-card .card-body .card-price .price-savings {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--success);
    background: var(--success-light);
    padding: 6px 14px;
    border-radius: 8px;
    margin-top: 6px;
    border: 1px solid #a7f3d0;
    transition: all 0.3s ease;
    order: 2;
}

.service-home-card .card-body .card-price .price-savings::before {
    content: '🎯';
    font-size: 0.9rem;
}

.service-home-card:hover .card-body .card-price .price-savings {
    background: #b8f5d9;
    transform: scale(1.02);
}

/* ============================================
   TOTAL DO PERÍODO - ESTILO PROFISSIONAL
   ============================================ */
.service-home-card .card-body .card-price .price-total-period {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    font-size: 0.8rem;
    color: #475569;
    margin-top: 4px;
    padding: 5px 12px;
    background: #f1f5f9;
    border-radius: 6px;
    border-left: 3px solid var(--primary);
    transition: all 0.3s ease;
    order: 3;
}

.service-home-card .card-body .card-price .price-total-period::before {
    content: '📋';
    font-size: 0.8rem;
}

.service-home-card:hover .card-body .card-price .price-total-period {
    background: #e8edf5;
    border-left-color: var(--primary-dark);
}


/* ============================================
   FLEXIBILIDADE DE PAGAMENTO
   ============================================ */
.service-home-card .card-body .payment-flexibility {
    font-size: 0.75rem;
    color: #6b7280;
    margin-top: 4px;
    padding: 4px 0;
    border-top: 1px dashed #e5e7eb;
    display: flex;
    align-items: center;
    gap: 6px;
}

.service-home-card .card-body .payment-flexibility i {
    color: #2563eb;
    font-size: 0.7rem;
}

/* ============================================
   PLANOS DISPONÍVEIS
   ============================================ */
.service-home-card .card-body .planos-disponiveis {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    margin: 8px 0 12px 0;
    padding: 8px 12px;
    background: #f8fafc;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
}

.service-home-card .card-body .planos-disponiveis .planos-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: #475569;
    margin-right: 4px;
}

.service-home-card .card-body .planos-disponiveis .planos-label i {
    margin-right: 4px;
    color: #2563eb;
}

.service-home-card .card-body .planos-disponiveis .plano-item {
    font-size: 0.7rem;
    padding: 2px 10px;
    border-radius: 20px;
    background: white;
    border: 1px solid #e2e8f0;
    color: #475569;
    font-weight: 500;
    transition: all 0.3s;
    cursor: pointer;
    user-select: none;
}

.service-home-card .card-body .planos-disponiveis .plano-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-color: #2563eb;
}

.service-home-card .card-body .planos-disponiveis .plano-item.plano-ativo {
    background: #2563eb;
    color: white;
    border-color: #2563eb;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.service-home-card .card-body .planos-disponiveis .plano-item.plano-destaque {
    background: #059669;
    color: white;
    border-color: #059669;
}

.service-home-card .card-body .planos-disponiveis .plano-item.plano-destaque.plano-ativo {
    background: #2563eb;
    border-color: #2563eb;
}

.service-home-card .card-body .planos-disponiveis .plano-item .plano-badge {
    background: rgba(255,255,255,0.2);
    padding: 0 6px;
    border-radius: 10px;
    font-size: 0.6rem;
}

/* ============================================
   CARACTERÍSTICAS
   ============================================ */
.service-home-card .card-body .card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.service-home-card .card-body .card-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    font-size: 0.85rem;
    color: #475569;
    border-bottom: 1px solid #f8fafc;
}

.service-home-card .card-body .card-features li:last-child {
    border-bottom: none;
}

.service-home-card .card-body .card-features li i {
    color: #2563eb;
    font-size: 0.9rem;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

/* ============================================
   AÇÕES
   ============================================ */
.service-home-card .card-body .card-actions {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: auto;
    padding-top: 16px;
}

.service-home-card .card-body .card-actions .btn-details {
    flex: 1;
    padding: 12px 20px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.service-home-card .card-body .card-actions .btn-details::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.5s ease;
}

.service-home-card .card-body .card-actions .btn-details:hover {
    background: linear-gradient(135deg, #1d4ed8, #1a3f9e);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.35);
}

.service-home-card .card-body .card-actions .btn-details:hover::before {
    left: 100%;
}

.service-home-card .card-body .card-actions .btn-details:active {
    transform: scale(0.96);
}

/* ============================================
   LOADING DOS CARDS
   ============================================ */
.services-home-loading {
    text-align: center;
    padding: 60px 20px;
    color: #94a3b8;
}

.services-home-loading .spinner {
    width: 48px;
    height: 48px;
    border: 4px solid #e2e8f0;
    border-top: 4px solid #2563eb;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 15px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ============================================
   MENSAGEM DE CONVERSÃO
   ============================================ */
.currency-conversion-message {
    background: #e3f2fd;
    padding: 12px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    text-align: center;
    font-size: 0.9rem;
    color: #1565c0;
    border: 1px solid #bbdefb;
}

.currency-conversion-message i {
    margin-right: 8px;
}

/* ============================================
   RESPONSIVO
   ============================================ */
@media (max-width: 1024px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .blog-card-moderno {
        flex: 0 0 calc(50% - 15px);
        min-width: calc(50% - 15px);
    }
    .services-home-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .hero-ws .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-ws-stats {
        justify-content: center;
    }
    .services-grid,
    .method-grid {
        grid-template-columns: 1fr;
    }
    .manifesto-grid,
    .cases-grid {
        grid-template-columns: 1fr;
    }
    .hero-ws-content h1 {
        font-size: 2rem;
    }
    .slider-container {
        height: 250px;
    }
    .newsletter-group {
        flex-direction: column;
    }
    .blog-slider-container {
        padding: 0 40px;
    }
    .blog-card-moderno {
        flex: 0 0 100%;
        min-width: 100%;
    }
    .blog-slider-btn {
        width: 35px;
        height: 35px;
    }
    .blog-slider-moderno .section-header h2 {
        font-size: 1.6rem;
    }
    .featured-services-home .section-header h2 {
        font-size: 2rem;
    }
    .services-home-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .service-home-card .card-body .card-actions {
        flex-direction: column;
    }
    .service-home-card .card-body .card-actions .btn-details {
        flex: 1;
        width: 100%;
    }
    .service-home-card .card-image {
        height: 180px;
    }
}

@media (max-width: 640px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    .google-reviews .section-header h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .featured-services-home .section-header h2 {
        font-size: 1.6rem;
    }
    .service-home-card .card-image {
        height: 160px;
    }
    .service-home-card .card-body {
        padding: 18px;
    }
    .service-home-card .card-body .card-price .price-value {
        font-size: 1.5rem;
    }
    .service-home-card .card-body .card-price .price-value.discount-price {
        font-size: 1.7rem;
    }
    .service-home-card .card-body .card-actions .btn-details {
        padding: 10px 16px;
        font-size: 0.8rem;
    }
    .service-home-card .card-body .card-price .price-savings {
        font-size: 0.75rem;
        padding: 4px 10px;
    }
    .service-home-card .card-body .card-price .price-total-period {
        font-size: 0.7rem;
        padding: 4px 10px;
    }
}