/*
Theme Name: Lucianne Pires Advocacia
Theme URI: https://luciannepiresadv.com
Author: Dra. Lucianne Pires
Description: Tema elegante para escritório de advocacia com fundo animado
Version: 2.4
License: GPL v2 or later
Text Domain: lucianne-pires
*/

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Montserrat:wght@300;400;500;600&display=swap');

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

:root {
    --gold: #D4AF37;
    --gold-light: #F4E4C1;
    --gold-dark: #B8941E;
    --white: #FFFFFF;
    --off-white: #FAFAFA;
    --text-dark: #2C2C2C;
    --text-gray: #666666;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: linear-gradient(-45deg, #FFFFFF, #F4E4C1, #FAFAFA, #D4AF37);
    background-size: 400% 400%;
    animation: gradientAnimation 15s ease infinite;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(255, 255, 255, 0.3) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 60% 60%, rgba(212, 175, 55, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 90% 20%, rgba(244, 228, 193, 0.2) 0%, transparent 60%);
    animation: float2 15s ease-in-out infinite reverse;
    pointer-events: none;
    z-index: 0;
}

@keyframes gradientAnimation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

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

@keyframes float2 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(-40px, 20px) rotate(5deg);
    }
    66% {
        transform: translate(30px, -30px) rotate(-5deg);
    }
}

/* Header */
.site-header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(212, 175, 55, 0.1);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.7rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 70px;
}

.site-logo {
    position: relative;
}

.site-logo img {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease;
}

.site-logo img:hover {
    transform: scale(1.05);
}

.site-logo .logo-text-link {
    text-decoration: none !important;
    color: #D4AF37 !important;
    display: inline-block !important;
}

.site-logo .logo-text-link:hover {
    color: #B8941E !important;
    text-decoration: none !important;
}

.site-logo .logo-text-link:visited {
    color: #D4AF37 !important;
}

.site-logo .logo-text-gradient {
    font-family: 'Playfair Display', serif !important;
    font-size: 1.4rem !important;
    font-weight: 700 !important;
    color: #D4AF37 !important;
    white-space: nowrap !important;
    display: inline-block !important;
}

.main-navigation ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
    align-items: center;
}

.main-navigation a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    position: relative;
    display: inline-block;
    padding: 0.5rem 0;
}

.main-navigation a:hover {
    color: var(--gold);
}

.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.main-navigation a:hover::after {
    width: 100%;
}

/* Menu Hamburguer */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--gold);
    margin: 5px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero */
.hero-section {
    margin-top: 70px;
    padding: 80px 2rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 10s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

.hero-logo {
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.hero-logo img {
    max-width: 400px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(212, 175, 55, 0.3));
    position: relative;
    z-index: 1;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 50%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: gradientShift 3s ease infinite;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    position: relative;
    z-index: 1;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    font-weight: 300;
    position: relative;
    z-index: 1;
}

.cta-button {
    display: inline-block;
    padding: 1rem 3rem;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
    color: var(--white);
}

/* Sections */
.content-section {
    padding: 80px 2rem;
    position: relative;
    z-index: 1;
}

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

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 50%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: gradientShift 3s ease infinite;
}

.section-subtitle {
    text-align: center;
    color: var(--text-gray);
    font-size: 1.15rem;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Areas Grid */
.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.area-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid var(--gold);
}

.area-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.area-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold-light) 0%, rgba(212, 175, 55, 0.2) 100%);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.area-card:hover .area-icon {
    transform: scale(1.1) rotate(5deg);
}

.area-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.area-card p {
    color: var(--text-gray);
    line-height: 1.8;
}

/* Blog Carousel */
.blog-section {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(5px);
}

.blog-carousel-wrapper {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 60px;
    overflow: hidden;
}

.blog-carousel {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s ease;
}

.blog-post-card {
    flex: 0 0 calc(33.333% - 1.35rem);
    min-width: calc(33.333% - 1.35rem);
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.blog-post-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
}

.blog-post-image {
    height: 220px;
    background-size: cover;
    background-position: center;
}

.blog-post-content {
    padding: 2rem;
}

.blog-post-date {
    color: var(--gold);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-post-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin: 1rem 0;
    color: var(--text-dark);
    line-height: 1.4;
}

.blog-post-card p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.read-more {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.read-more:hover {
    gap: 1rem;
    color: var(--gold-dark);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    z-index: 10;
    color: var(--gold);
    font-size: 1.2rem;
}

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

.prev-btn { left: 0; }
.next-btn { right: 0; }

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 2rem;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: var(--gold);
    width: 30px;
    border-radius: 6px;
}

/* Contact */
.contato-section {
    background: rgba(250, 250, 250, 0.5);
    backdrop-filter: blur(5px);
}

.contato-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contato-info {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    padding: 3.5rem;
    border-radius: 20px;
    color: var(--white);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.4);
    position: relative;
    overflow: hidden;
}

.contato-info::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: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.contato-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2.5rem;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    border-left: 3px solid rgba(255, 255, 255, 0.3);
}

.info-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(10px);
    border-left-color: rgba(255, 255, 255, 0.8);
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item i {
    font-size: 1.8rem;
    margin-top: 5px;
    background: rgba(255, 255, 255, 0.2);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.info-item:hover i {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1) rotate(5deg);
}

.info-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.info-item p {
    line-height: 1.6;
    opacity: 0.95;
}

.contact-link {
    color: var(--white);
    text-decoration: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    display: inline-block;
    font-weight: 500;
    padding-bottom: 2px;
}

.contact-link:hover {
    border-bottom-color: var(--white);
    transform: translateY(-2px);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.form-container {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.form-container:hover {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

/* Jurisprudências */
.jurisprudencia-filters {
    text-align: center;
    padding: 2rem;
}

.jurisprudencia-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.jurisprudencia-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.2);
}

.tribunal-badge {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.jurisprudencia-title {
    font-size: 1.3rem;
    margin: 1rem 0;
    line-height: 1.4;
}

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

.jurisprudencia-title a:hover {
    color: var(--gold);
}

.jurisprudencia-processo,
.jurisprudencia-data {
    color: #666;
    font-size: 0.9rem;
    margin: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.jurisprudencia-processo i,
.jurisprudencia-data i {
    color: var(--gold);
}

.jurisprudencia-excerpt {
    color: #666;
    line-height: 1.6;
    margin: 1.5rem 0;
}

.tribunais-section {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(250, 250, 250, 0.8) 100%);
    backdrop-filter: blur(10px);
}

.tribunais-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.tribunais-header > i {
    font-size: 3rem;
    color: var(--gold);
    display: inline-block;
    margin: 0 auto 1rem;
}

.tribunais-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 4rem 0;
}

.tribunais-header {
    text-align: center;
    margin-bottom: 3rem;
}

.tribunais-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .tribunais-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
}

@media (min-width: 1200px) {
    .tribunais-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 2rem;
    }
}

.tribunal-link-card {
    background: white;
    padding: 2.5rem 1.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 2px solid #f0f0f0;
    cursor: pointer;
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.tribunal-link-card:nth-child(1) { animation-delay: 0.1s; }
.tribunal-link-card:nth-child(2) { animation-delay: 0.2s; }
.tribunal-link-card:nth-child(3) { animation-delay: 0.3s; }
.tribunal-link-card:nth-child(4) { animation-delay: 0.4s; }
.tribunal-link-card:nth-child(5) { animation-delay: 0.5s; }

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

.tribunal-link-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold-dark) 100%);
    transition: left 0.4s ease;
}

.tribunal-link-card:hover::before {
    left: 0;
}

.tribunal-link-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.03) 0%, rgba(212, 175, 55, 0.08) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.tribunal-link-card:hover::after {
    opacity: 1;
}

.tribunal-link-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.25);
    border-color: var(--gold);
}

.tribunal-link-card > * {
    position: relative;
    z-index: 1;
}

.tribunal-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.tribunal-icon-wrapper::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    opacity: 0;
    filter: blur(10px);
    transition: opacity 0.4s ease;
}

.tribunal-link-card:hover .tribunal-icon-wrapper {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.5);
}

.tribunal-link-card:hover .tribunal-icon-wrapper::before {
    opacity: 0.7;
}

.tribunal-icon-wrapper i {
    font-size: 2rem;
    color: white;
    margin: 0;
    display: block;
    transition: transform 0.4s ease;
}

.tribunal-link-card:hover .tribunal-icon-wrapper i {
    transform: scale(1.1);
}

.tribunal-link-card h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin: 0.8rem 0 0.5rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    transition: color 0.3s ease;
}

.tribunal-link-card:hover h3 {
    color: var(--gold-dark);
}

.tribunal-link-card p {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    line-height: 1.5;
    min-height: 2.7rem;
}

.tribunal-link-card .cta-button {
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.tribunal-link-card:hover .cta-button {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.tribunal-link-card .cta-button i {
    transition: transform 0.3s ease;
}

.tribunal-link-card:hover .cta-button i {
    transform: translateX(3px);
}

/* Paginação */
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.pagination a,
.pagination span {
    padding: 0.7rem 1.2rem;
    background: white;
    border: 2px solid var(--gold);
    border-radius: 10px;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
}

.pagination a:hover {
    background: var(--gold);
    color: white;
}

.pagination .current {
    background: var(--gold);
    color: white;
}

/* Comentários */
.comments-area {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 3rem;
}

.comments-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--gold);
}

.comment-list {
    list-style: none;
    padding: 0;
    margin: 0 0 3rem;
}

.comment-list li {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(250, 250, 250, 0.5);
    border-radius: 15px;
    border-left: 4px solid var(--gold);
}

.comment-list .children {
    list-style: none;
    padding-left: 3rem;
    margin-top: 1.5rem;
}

.comment-body {
    position: relative;
}

.comment-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.comment-author .avatar {
    border-radius: 50%;
    border: 3px solid var(--gold);
}

.comment-author .fn {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1.1rem;
    font-style: normal;
}

.comment-metadata {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.comment-metadata a {
    color: var(--text-gray);
    text-decoration: none;
}

.comment-metadata a:hover {
    color: var(--gold);
}

.comment-content {
    color: #444;
    line-height: 1.8;
}

.reply {
    margin-top: 1rem;
}

.comment-reply-link {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--gold);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.comment-reply-link:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
}

.comment-awaiting-moderation {
    display: block;
    padding: 1rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--gold);
    border-radius: 10px;
    color: var(--gold-dark);
    font-weight: 600;
    margin-top: 1rem;
}

.comment-navigation {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin: 2rem 0;
}

.comment-navigation a {
    padding: 0.7rem 1.5rem;
    background: white;
    border: 2px solid var(--gold);
    border-radius: 10px;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
}

.comment-navigation a:hover {
    background: var(--gold);
    color: white;
}

.no-comments {
    text-align: center;
    color: var(--text-gray);
    font-size: 1.1rem;
    padding: 2rem;
}

.comment-reply-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--text-dark);
    margin: 3rem 0 2rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--gold);
    position: relative;
}

.comment-reply-title::before {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--gold-dark);
}

.comment-notes {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 10px;
}

.required {
    color: var(--gold);
}

.comment-form-author,
.comment-form-email,
.comment-form-comment {
    margin-bottom: 1.5rem;
}

.comment-form-author label,
.comment-form-email label,
.comment-form-comment label {
    display: block;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.7rem;
    font-size: 1.05rem;
}

.comment-form-author input,
.comment-form-email input,
.comment-form-comment textarea {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border: 2px solid #ddd;
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
}

.comment-form-author input:focus,
.comment-form-email input:focus,
.comment-form-comment textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.comment-form-comment textarea {
    resize: vertical;
    min-height: 150px;
}

.form-submit {
    margin-top: 1.5rem;
}

.form-submit .cta-button {
    margin: 0;
}

/* Footer */
.site-footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 3rem 2rem;
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.social-links a {
    color: var(--white);
    font-size: 2rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
    color: var(--gold);
    background: rgba(212, 175, 55, 0.2);
    transform: translateY(-3px);
}

.site-footer p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin: 0.5rem 0;
}

/* WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    padding: 15px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: translateY(-3px) scale(1.05);
    color: white;
}

.whatsapp-float i {
    font-size: 1.8rem;
}

/* Responsive */
@media (max-width: 968px) {
    .blog-post-card {
        flex: 0 0 calc(50% - 1rem);
        min-width: calc(50% - 1rem);
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .main-navigation {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        padding: 5rem 2rem 2rem;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 999;
    }

    .main-navigation.active {
        right: 0;
    }

    .main-navigation ul {
        flex-direction: column;
        gap: 0;
    }

    .main-navigation li {
        border-bottom: 1px solid var(--gold-light);
    }

    .main-navigation a {
        display: block;
        padding: 1.2rem 0;
        font-size: 1.1rem;
    }

    .main-navigation a::after {
        display: none;
    }

    .logo-text-link {
        padding: 0.4rem 0.8rem;
    }

    .logo-text-gradient {
        font-size: 1.1rem;
        letter-spacing: 0.3px;
    }

    .hero-logo img {
        max-width: 280px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .contato-container {
        grid-template-columns: 1fr;
    }
    
    .blog-carousel-wrapper {
        padding: 0 50px;
    }
    
    .blog-post-card {
        flex: 0 0 100%;
        min-width: 100%;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}
