/* ========================================
   FLÁVIA PAULINO - CALCULISTA TRABALHISTA
   Desenvolvido com as cores da identidade visual
   ======================================== */

/* ============= VARIÁVEIS DE COR ============= */
:root {
    /* Cores da Logo */
    --rose-primary: #A6758C;
    --rose-secondary: #8B6377;
    --rose-light: #D4BCC8;
    --rose-lighter: #F9F5F7;
    
    /* Cores de Apoio */
    --blue-accent: #2C5F7C;
    --gold-accent: #D4A574;
    --cream-bg: #F9F5F3;
    
    /* Tons Neutros */
    --text-dark: #3A3A3A;
    --text-medium: #6B6B6B;
    --text-light: #9B9B9B;
    --white: #FFFFFF;
    --border-light: #E8E8E8;
    
    /* Gradientes */
    --gradient-rose: linear-gradient(135deg, var(--rose-primary) 0%, var(--rose-secondary) 100%);
    --gradient-blue: linear-gradient(135deg, var(--blue-accent) 0%, #1A4A5C 100%);
    
    /* Sombras */
    --shadow-sm: 0 2px 8px rgba(166, 117, 140, 0.08);
    --shadow-md: 0 4px 16px rgba(166, 117, 140, 0.12);
    --shadow-lg: 0 8px 32px rgba(166, 117, 140, 0.16);
    --shadow-hover: 0 12px 40px rgba(166, 117, 140, 0.2);
    
    /* Fontes */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
}

/* ============= RESET E BASE ============= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.7;
    background-color: var(--white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* ============= CONTAINER ============= */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============= TIPOGRAFIA ============= */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.section-tag {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--rose-primary);
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.section-title .highlight {
    color: var(--rose-primary);
    position: relative;
    display: inline-block;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-medium);
    max-width: 600px;
    margin: 0 auto 3rem;
}

/* ============= BOTÕES ============= */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-rose);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: transparent;
    color: var(--rose-primary);
    border: 2px solid var(--rose-primary);
}

.btn-secondary:hover {
    background: var(--rose-primary);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-lg {
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
}

/* ============= HEADER ============= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 1001;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}


.nav ul {
    display: flex;
    gap: 2rem;
}

.nav a {
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--rose-primary);
    transition: width 0.3s ease;
}

.nav a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--rose-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ============= BOTÃO WHATSAPP FLUTUANTE ============= */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7);
    }
}

/* ============= HERO SECTION ============= */
.hero {
    padding: 150px 0 100px;
    background: linear-gradient(135deg, var(--rose-lighter) 0%, var(--cream-bg) 50%, #FFF 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(166, 117, 140, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.hero-title .highlight {
    background: var(--gradient-rose);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-medium);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-light);
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--rose-primary);
    font-family: var(--font-heading);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-medium);
    font-weight: 500;
}

.hero-image {
    position: relative;
}

.hero-image-placeholder {
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-placeholder svg {
    width: 100%;
    height: 100%;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* ============= SOBRE ============= */
.sobre {
    padding: 100px 0;
    background: var(--white);
}

.sobre-content {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 5rem;
    align-items: center;
}

.sobre-image-box {
    position: relative;
    width: 100%;
    height: 500px;
    background: var(--gradient-rose);
    border-radius: 20px;
    overflow: hidden;
}

.sobre-foto {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.sobre-decoration {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 3px solid rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    z-index: 1;
    pointer-events: none;
}

.sobre-description {
    font-size: 1.125rem;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.sobre-highlights {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2.5rem 0;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--rose-lighter);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateX(10px);
    background: var(--rose-light);
}

.highlight-item svg {
    flex-shrink: 0;
    color: var(--rose-primary);
}

.highlight-item span {
    color: var(--text-dark);
    font-weight: 500;
}

/* ============= SERVIÇOS ============= */
.servicos {
    padding: 100px 0;
    background: var(--cream-bg);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 1024px) {
    .servicos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .servicos-grid {
        grid-template-columns: 1fr;
    }
}

.servico-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.servico-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--rose-primary);
}

.servico-card.featured {
    border-color: var(--gold-accent);
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.05) 0%, var(--white) 100%);
}

.servico-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--gradient-rose);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-md);
}

.servico-icon {
    width: 80px;
    height: 80px;
    background: var(--rose-lighter);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--rose-primary);
    transition: all 0.3s ease;
}

.servico-card:hover .servico-icon {
    background: var(--rose-primary);
    color: var(--white);
    transform: rotateY(360deg);
}

.servico-title {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.servico-description {
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.servico-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-left: 0;
}

.servico-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--text-medium);
    font-size: 0.9375rem;
    padding-left: 0;
    list-style: none;
}

.servico-features li::before {
    content: '✓';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    width: 20px;
    height: 20px;
    background: var(--rose-primary);
    color: var(--white);
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.75rem;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ============= DEPOIMENTOS ============= */
.depoimentos {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.depoimento-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border-top: 4px solid #2563eb;
}

.depoimento-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.2);
}

.depoimento-stars {
    color: #fbbf24;
    font-size: 24px;
    margin-bottom: 15px;
}

.depoimento-texto {
    color: #4b5563;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.depoimento-autor {
    padding-top: 15px;
    border-top: 2px solid #e5e7eb;
}

.depoimento-autor strong {
    display: block;
    color: #1e293b;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.depoimento-autor span {
    color: #64748b;
    font-size: 14px;
}

/* ============= RESPONSIVO ============= */
@media (max-width: 1024px) {
    .depoimentos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .depoimentos-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .depoimento-card {
        padding: 20px;
    }
}

/* ============= CASES ============= */
.cases {
    padding: 100px 0;
    background: var(--white);
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 1024px) {
    .cases-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .cases-grid {
        grid-template-columns: 1fr;
    }
}


.case-card {
    background: linear-gradient(135deg, rgba(166, 117, 140, 0.03) 0%, var(--white) 100%);
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid var(--border-light);
    transition: all 0.3s ease;
}

.case-card:hover {
    border-color: var(--rose-primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.case-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.case-title {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.case-info p {
    margin-bottom: 1rem;
    color: var(--text-medium);
    line-height: 1.7;
}

.case-value {
    color: var(--rose-primary);
    font-weight: 700;
    font-size: 1.125rem;
}

/* ============= PREÇOS ============= */
.precos {
    padding: 100px 0;
    background: var(--gradient-rose);
}

.precos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (max-width: 1024px) {
    .precos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .precos-grid {
        grid-template-columns: 1fr;
    }
}


.preco-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    position: relative;
    border: 3px solid transparent;
}

.preco-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.preco-card.destaque {
    border-color: var(--gold-accent);
    transform: scale(1.05);
}

.preco-card.destaque:hover {
    transform: scale(1.08) translateY(-10px);
}

.preco-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-rose);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-md);
}

.preco-titulo {
    font-size: 1.75rem;
    color: var(--rose-primary);
    margin-bottom: 0.5rem;
}

.preco-descricao {
    color: var(--text-medium);
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
    min-height: 40px;
}

.preco-valor {
    display: flex;
    flex-direction: column;
    margin: 2rem 0;
}

.preco-a-partir {
    font-size: 0.875rem;
    color: var(--text-light);
    text-transform: uppercase;
}

.preco-numero {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    font-family: var(--font-heading);
}

.preco-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 2rem 0;
    padding-left: 0;
}

.preco-features li {
    color: var(--text-medium);
    font-size: 0.9375rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
}

.precos-obs {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 15px;
    border-left: 5px solid var(--gold-accent);
    box-shadow: var(--shadow-md);
}

.precos-obs p {
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.precos-obs p:last-child {
    margin-bottom: 0;
}

/* ============= FAQ ============= */
.faq {
    padding: 100px 0;
    background: var(--cream-bg);
}

.faq-grid {
    display: grid;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--rose-primary);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(10px);
}

.faq-question {
    font-size: 1.125rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.faq-answer {
    color: var(--text-medium);
    line-height: 1.7;
}

/* ============= NEWSLETTER ============= */
.newsletter {
    padding: 80px 0;
    background: var(--gradient-rose);
    color: var(--white);
    text-align: center;
}

.newsletter-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.newsletter-subtitle {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 550px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    box-shadow: var(--shadow-md);
}

.newsletter-form input:focus {
    outline: 3px solid rgba(255, 255, 255, 0.3);
}

.newsletter-form button {
    flex-shrink: 0;
}

/* ============= HORÁRIO ============= */
.horario {
    padding: 80px 0;
    background: var(--white);
}

.horario-box {
    background: var(--rose-lighter);
    padding: 2.5rem;
    border-radius: 20px;
    border-left: 5px solid var(--rose-primary);
    max-width: 700px;
    margin: 0 auto;
    box-shadow: var(--shadow-md);
}

.horario-box p {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.horario-box p:last-child {
    margin-bottom: 0;
}

/* ============= FOOTER ============= */
.footer {
    padding: 60px 0 30px;
    background: linear-gradient(135deg, var(--text-dark) 0%, #2A2A2A 100%);
    color: var(--white);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
}


.footer-text {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--rose-primary);
    transform: translateY(-5px);
}

.footer-col h4 {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    font-family: var(--font-heading);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 10px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact svg {
    flex-shrink: 0;
    color: var(--rose-primary);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom p {
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

/* ============= RESPONSIVO ADICIONAL ============= */
@media (max-width: 1024px) {
    .section-title {
        font-size: 2rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-ctas {
        justify-content: center;
    }
    
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .sobre-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .servicos-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

.logo-img {
    height: 40px;
}

.logo h1 {
    font-size: 1.25rem !important;
}
    
    .menu-toggle {
        display: flex;
    }
    
    .header-cta {
        display: none;
    }
    
    .hero {
        padding: 120px 0 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-ctas {
        flex-direction: column;
        align-items: stretch;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .servicos-grid {
        grid-template-columns: 1fr;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float svg {
        width: 26px;
        height: 26px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form button {
        width: 100%;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .depoimentos-grid,
    .cases-grid,
    .precos-grid {
        grid-template-columns: 1fr;
    }
    
    .preco-card.destaque {
        transform: scale(1);
    }
}

/* ============= FORÇAR GRIDS CORRETOS ============= */
.servicos-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 2rem !important;
}

.depoimentos-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 2rem !important;
}

.cases-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 2rem !important;
}

.precos-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 2rem !important;
}

.footer-content {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 3rem !important;
}

/* ============= RESPONSIVO ============= */
@media (max-width: 1024px) {
    .servicos-grid,
    .depoimentos-grid,
    .cases-grid,
    .precos-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 768px) {
    .servicos-grid,
    .depoimentos-grid,
    .cases-grid,
    .precos-grid,
    .footer-content {
        grid-template-columns: 1fr !important;
    }
}

/* ============= SERVIÇOS - GRID FORÇADO ============= */
.servicos-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 2rem !important;
    width: 100% !important;
}

.servico-card {
    width: 100% !important;
    max-width: none !important;
}

/* ============= RESPONSIVO SERVIÇOS ============= */
@media (max-width: 1024px) {
    .servicos-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 768px) {
    .servicos-grid {
        grid-template-columns: 1fr !important;
    }
}

