/*
Theme Name: Valmir Gonçalves Advocacia
Theme URI: https://www.vgoncalvesadv.com.br
Author: Claude
Description: Tema moderno para o escritório de advocacia Valmir Gonçalves, com foco em profissionalismo e credibilidade.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: valmirlaw
*/

/* Importação de fontes */
@font-face {
    font-family: 'Made Saonara';
    src: url('../fonts/made-saonara.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Gotham';
    src: url('../fonts/gotham-book.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Gotham';
    src: url('../fonts/gotham-bold.woff2') format('woff2');
    font-weight: bold;
    font-style: normal;
}

/* Reset e configurações globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #214176;
    --white-color: #FFFFFF;
    --light-gray: #f5f5f7;
    --medium-gray: #86868b;
    --dark-gray: #333333;
}

body {
    font-family: 'Gotham', sans-serif;
    color: var(--dark-gray);
    background-color: var(--white-color);
    overflow-x: hidden;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

a:hover {
    opacity: 0.8;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Made Saonara', serif;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: 0.3rem
}

p {
    margin-bottom: 1.5rem;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

section {
    padding: 5rem 0;
}

.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 0.8rem 2rem;
    border-radius: 4px;
    border: 2px solid var(--primary-color);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: transparent;
    color: #729adc;
}

.btn-outline {
    background-color: transparent;
    color: #729adc;
}

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

/* Header */
.site-header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 1rem 0;
    background-color: rgb(255 255 255 / 79%);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.site-logo {
    display: flex;
    align-items: center;
    font-family: 'Made Saonara', serif;
}

.site-logo img {
    height: 50px;
    margin-right: 0.5rem;
}

.site-logo h1 {
    font-size: 1.5rem;
    margin-bottom: 0;
    letter-spacing: 0.2rem;
}

.main-navigation ul {
    display: flex;
    list-style: none;
    flex-wrap: wrap;
}

.main-navigation li {
    margin-left: 2rem;
}

.main-navigation a {
    position: relative;
    color: var(--dark-gray);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

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

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

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

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    padding: 10rem 0 5rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-size: cover;
    background-position: center;
    filter: blur(5px) brightness(0.7);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.hero-content h1 {
    font-size: 3.4rem;
    color: var(--white-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s forwards 0.5s;
    letter-spacing: 0.5rem;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--white-color);
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s forwards 0.8s;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s forwards 1.1s;
    justify-content: center;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* About Section */
.about-section {
    position: relative;
    overflow: hidden;
}

.about-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    height: 500px;
    opacity: 0;
    transform: translateX(-50px);
    transition: all 1s ease;
}

.about-image.visible {
    opacity: 1;
    transform: translateX(0);
}

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

.about-text {
    opacity: 0;
    transform: translateX(50px);
    transition: all 1s ease;
}

.about-text.visible {
    opacity: 1;
    transform: translateX(0);
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1.5rem;
}

/* Services Section */
.services-section {
    background-color: var(--light-gray);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background-color: rgba(33, 65, 118, 0.1);
    border-radius: 50%;
    transform: translate(150px, -150px);
}

.services-heading {
    text-align: center;
    margin-bottom: 3rem;
}

.services-heading h2 {
    font-size: 2.5rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: var(--white-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    transform: translateY(50px);
    opacity: 0;
}

.service-card.visible {
    transform: translateY(0);
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-icon {
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--primary-color);
    color: var(--white-color);
    font-size: 2rem;
}

.service-content {
    padding: 2rem;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Team Section */
.team-section {
    position: relative;
}

.team-heading {
    text-align: center;
    margin-bottom: 3rem;
}

.team-heading h2 {
    font-size: 2.5rem;
}

.team-grid {
    
    max-width: 500px;
    justify-content: center;
    align-content: center;
    align-items: center;
    margin: 0 auto;
}

.team-member {
    text-align: center;
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.6s ease;
}

.team-member.visible {
    opacity: 1;
    transform: scale(1);
}

.team-member-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    aspect-ratio: 1;
}

.team-member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.team-member:hover .team-member-image img {
    transform: scale(1.05);
}

.team-member h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.team-member p {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--light-gray);
    position: relative;
    overflow: hidden;
}

.testimonials-heading {
    text-align: center;
    margin-bottom: 3rem;
}

.testimonials-heading h2 {
    font-size: 2.5rem;
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.testimonial-card {
    background-color: var(--white-color);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.8s ease;
}

.testimonial-card.visible {
    opacity: 1;
    transform: translateX(0);
}

.testimonial-content {
    font-style: italic;
    position: relative;
    margin-bottom: 1.5rem;
}

.testimonial-content::before,
.testimonial-content::after {
    content: '"';
    font-family: 'Made Saonara', serif;
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.2;
    position: absolute;
}

.testimonial-content::before {
    top: -20px;
    left: -15px;
}

.testimonial-content::after {
    bottom: -50px;
    right: -15px;
}

.testimonial-author {
    font-weight: bold;
    color: var(--primary-color);
}

.testimonial-author span {
    display: block;
    font-weight: normal;
    color: var(--medium-gray);
    font-size: 0.9rem;
}

/* Contact Section */
.contact-section {
    position: relative;
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
}

.contact-info {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.contact-info.visible {
    opacity: 1;
    transform: translateY(0);
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-icon {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-right: 1rem;
    margin-top: 0.3rem;
}

.contact-text h3 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.contact-text p {
    margin-bottom: 0;
    color: var(--medium-gray);
}

.contact-form {
    border-radius: 10px;
    background-color: var(--white-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 2rem;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease 0.2s;
}

.contact-form.visible {
    opacity: 1;
    transform: translateY(0);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Gotham', sans-serif;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 2px rgba(33, 65, 118, 0.2);
}

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

/* Footer */
.site-footer {
    background-color: var(--primary-color);
    color: var(--white-color);
   
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
}

.footer-about h3 {
    color: var(--white-color);
    margin-bottom: 1.5rem;
}

.footer-about p {
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

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

.social-icon:hover {
    background-color: var(--white-color);
    color: var(--primary-color);
}

.footer-links h3, 
.footer-contact h3 {
    color: var(--white-color);
    margin-bottom: 1.5rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--white-color);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    padding-left: 5px;
}

.footer-contact p {
    margin-bottom: 0.8rem;
    opacity: 0.8;
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Blog styles */
.page-header {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 8rem 0 3rem;
    text-align: center;
}

.page-title {
    color: var(--white-color);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.post-meta {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.post-meta span {
    margin-right: 1.5rem;
}

.post-meta i {
    margin-right: 0.3rem;
}

.page-content {
    padding: 5rem 0;
}

.blog-post {
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #eee;
}

.post-thumbnail {
    margin-bottom: 1.5rem;
    border-radius: 10px;
    overflow: hidden;
}

.entry-title {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.entry-meta {
    font-size: 0.9rem;
    color: var(--medium-gray);
    margin-bottom: 1rem;
}

.entry-meta span {
    margin-right: 1rem;
}

.entry-meta i {
    margin-right: 0.3rem;
}

.entry-content {
    margin-bottom: 1.5rem;
}

.post-navigation {
    display: flex;
    justify-content: space-between;
    margin: 3rem 0;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.nav-previous,
.nav-next {
    max-width: 48%;
}

.social-sharing {
    display: flex;
    align-items: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.share-title {
    margin-right: 1rem;
    font-weight: bold;
}

.social-sharing a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: #f5f5f7;
    color: var(--primary-color);
    border-radius: 50%;
    margin-right: 0.5rem;
    transition: all 0.3s ease;
}

.social-sharing a:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
}

/* Comments */
.comments-area {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.comments-title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.comment-list {
    list-style: none;
}

.comment {
    margin-bottom: 2rem;
}

.comment-body {
    padding: 1.5rem;
    background-color: #f5f5f7;
    border-radius: 10px;
}

.comment-meta {
    margin-bottom: 1rem;
}

.comment-author {
    font-weight: bold;
    color: var(--primary-color);
}

.comment-metadata {
    font-size: 0.8rem;
    color: var(--medium-gray);
    margin-top: 0.3rem;
}

.comment-content p {
    margin-bottom: 1rem;
}

.reply {
    text-align: right;
}

.comment-reply-link {
    font-size: 0.9rem;
    font-weight: bold;
}

.comment-form-comment label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.comment-form-comment textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    min-height: 150px;
}

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

/* 404 Page */
.error-404 {
    padding: 10rem 0;
    text-align: center;
}

.error-title {
    font-size: 8rem;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0;
}

.error-subtitle {
    font-size: 2rem;
    margin-bottom: 2rem;
}

/* Search Results */
.search-result-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .about-content,
    .contact-content,
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-image {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .main-navigation {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background-color: var(--white-color);
        padding: 1rem;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        transform: translateY(-150%);
        transition: all 0.3s ease;
    }
    
    .main-navigation.active {
        transform: translateY(0);
    }
    
    .main-navigation ul {
        flex-direction: column;
    }
    
    .main-navigation li {
        margin: 0;
        margin-bottom: 1rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .services-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    section {
        padding: 3rem 0;
    }
    
    .hero-section {
        padding: 8rem 0 3rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .about-text h2,
    .services-heading h2,
    .team-heading h2,
    .testimonials-heading h2,
    .contact-info h2 {
        font-size: 2rem;
    }
}

/* Footer no estilo FA-CIDADANIA */
.site-footer {
    background-color: var(--primary-color);
    color: #ffffff;
}

.footer-main {
    padding: 4rem 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: flex-start;
}

.footer-logo img {
    max-width: 180px;
    height: auto;
}

.footer-title {
    font-family: 'Made Saonara', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-title:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background-color: #fff; 
}

.footer-description {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #b0b0b0;
}

.social-icons {
    display: flex;
    gap: 0.75rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #333333;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--primary-color);
    color: white;
    opacity: 1;
}

.footer-bottom {
    background-color: var(--primary-color);
    padding: 1.5rem 0;
    border-top: 1px solid #333333;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright p {
    margin: 0;
    font-size: 0.9rem;
    color: #fff;
}

.footer-links {
    font-size: 0.9rem;
}

.footer-links a {
    color: #fff;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

.separator {
    margin: 0 10px;
    color: #fff;
}

/* Botão WhatsApp Flutuante */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #22c15e;
    transform: scale(1.1);
    color: white;
    opacity: 1;
}

/* Animação de pulso para o botão WhatsApp */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-float {
    animation: pulse 2s infinite;
}

/* Responsividade do footer */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-title:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* ===== Estilos para as novas seções e elementos adicionados ===== */

/* Hero Section Aprimorada */
.hero-subtitle {
    display: inline-block;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #72a8dc;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 60px;
    color: var(--white-color);
}

.hero-subtitle:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 50px;
    height: 1px;
    background-color: var(--white-color);
}

.hero-main-title {
    font-size: 4rem;
    line-height: 1.1;
    background: linear-gradient(to right, #ffffff, #b3cef5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    margin-bottom: 1.5rem;
    position: relative;
}

.hero-main-title[data-splitting] {
    opacity: 0;
    animation: revealText 1.2s forwards 0.5s;
        padding: 0.5em;
}

@keyframes revealText {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    animation: floatAnimation 8s infinite alternate;
}

.shape-1 {
    width: 150px;
    height: 150px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 100px;
    height: 100px;
    top: 20%;
    right: 20%;
    animation-delay: 1s;
}

.shape-3 {
    width: 80px;
    height: 80px;
    bottom: 30%;
    left: 30%;
    animation-delay: 2s;
}

.shape-4 {
    width: 120px;
    height: 120px;
    bottom: 20%;
    right: 10%;
    animation-delay: 3s;
}

@keyframes floatAnimation {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    100% {
        transform: translate(30px, 30px) rotate(45deg);
    }
}

.btn {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    z-index: 1;
}

.btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: #fff;
    z-index: -1;
    transition: all 0.5s ease;
}

.btn:hover:before {
    width: 100%;
}

.btn-text {
    position: relative;
    z-index: 2;
}

.btn-icon {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.btn:hover .btn-icon {
    transform: translateX(5px);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    animation: fadeInUp 1s forwards 1.5s;
    opacity: 0;
}

.mouse {
    width: 25px;
    height: 45px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 10px;
    position: relative;
}

.wheel {
    width: 3px;
    height: 8px;
    background-color: #fff;
    display: block;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50%;
    animation: mouseScroll 1.5s ease infinite;
}

@keyframes mouseScroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(15px);
    }
}

.scroll-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
    letter-spacing: 1px;
}

/* Expertise Section - Nova Seção */
.expertise-section {
    padding: 5rem 0;
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.expertise-section:before {
    content: "";
    position: absolute;
    top: -150px;
    left: -150px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-color: rgba(33, 65, 118, 0.05);
    z-index: 0;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.expertise-item {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.expertise-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.expertise-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background-color: rgba(33, 65, 118, 0.1);
    color: var(--primary-color);
    font-size: 2rem;
    transition: all 0.3s ease;
}

.expertise-item:hover .expertise-icon {
    background-color: var(--primary-color);
    color: #fff;
}

.expertise-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.expertise-item p {
    color: var(--medium-gray);
    margin-bottom: 0;
}

@media (max-width: 992px) {
    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .expertise-grid {
        grid-template-columns: 1fr;
    }
}

/* Section Heading */
.section-heading {
    margin-bottom: 3rem;
}

.section-heading.center {
    text-align: center;
}

.section-subtitle {
    display: inline-block;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    margin-bottom: 1rem;
    position: relative;
    padding-left: 60px;
}

.section-subtitle:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 50px;
    height: 1px;
    background-color: var(--primary-color);
}

.section-heading.center .section-subtitle {
    padding-left: 0;
    padding-bottom: 15px;
}

.section-heading.center .section-subtitle:before {
    left: 50%;
    top: auto;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
}

/* About Section Aprimorada */
.about-section {
    position: relative;
    overflow: hidden;
    background-color: #fff;
}

.image-wrapper {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        height: 100%;
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: 15px;
    width: 140px;
    height: 140px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(33, 65, 118, 0.3);
    z-index: 2;
}

.experience-badge .years {
    font-size: 3rem;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 5px;
}

.experience-badge .text {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    max-width: 80px;
    text-align: center;
    line-height: 1.2;
}

.shape-pattern {
    position: absolute;
    width: 300px;
    height: 300px;
    background-color: rgba(33, 65, 118, 0.05);
    border-radius: 50%;
    bottom: -150px;
    left: -100px;
    z-index: -1;
}

.about-list {
    margin: 2rem 0;
}

.list-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.8rem;
}

.list-item i {
    color: var(--primary-color);
    margin-right: 0.8rem;
    font-size: 1.2rem;
}

/* Counter Section - Nova Seção */
.counter-section {
    padding: 7rem 0;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
}

.counter-section:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(33, 65, 118, 0.9);
}

.counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.counter-item {
    text-align: center;
    color: #fff;
}

.counter-number {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    line-height: 1;
    display: flex;
    justify-content: center;
    align-items: baseline;
}

.counter-number .plus,
.counter-number .percent {
    font-size: 2.5rem;
    margin-left: 5px;
}

.counter-title {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 992px) {
    .counter-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .counter-grid {
        grid-template-columns: 1fr;
    }
}

/* Services Section Aprimorada */
.services-section {
    background-color: #f8f9fa;
    padding: 7rem 0;
}

.service-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    background-color: #fff;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-icon {
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--primary-color);
    color: #fff;
    font-size: 2.5rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background-color: #2e5aa3;
}

.service-content {
    padding: 2.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.service-divider {
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-divider {
    width: 100px;
}

.service-content p {
    margin-bottom: 1.5rem;
}

.service-list {
    list-style-type: none;
    margin-bottom: 1.5rem;
}

.service-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.8rem;
}

.service-list li i {
    color: var(--primary-color);
    margin-right: 0.8rem;
    font-size: 1rem;
}

.service-link {
    display: flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: bold;
    margin-top: auto;
    transition: all 0.3s ease;
}

.service-link i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.service-link:hover {
    color: #2e5aa3;
}

.service-link:hover i {
    transform: translateX(5px);
}

/* Process Section - Nova Seção */
.process-section {
    padding: 7rem 0;
    background-color: #fff;
    position: relative;
}

.process-steps {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 0;
}

.process-line {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background-color: rgba(33, 65, 118, 0.1);
}

.process-item {
    position: relative;
    display: flex;
    margin-bottom: 4rem;
}

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

.process-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.process-number {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(33, 65, 118, 0.3);
    z-index: 2;
}

.process-content {
    width: calc(50% - 50px);
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.process-item:hover .process-content {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    background-color: #fff;
}

.process-content h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.process-content p {
    margin-bottom: 0;
    color: var(--medium-gray);
}

@media (max-width: 768px) {
    .process-line {
        left: 30px;
    }
    
    .process-item,
    .process-item:nth-child(odd) {
        flex-direction: row;
        margin-left: 60px;
    }
    
    .process-number {
        left: -31px;
        transform: translateX(-50%);
    }
    
    .process-content {
        width: calc(100% - 30px);
    }
}

/* Team Section Aprimorada */
.team-section {
    padding: 7rem 0;
    background-color: #f8f9fa;
}

.team-grid {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.team-member {
    perspective: 1000px;
    height: 450px;
}

.team-member-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.team-member:hover .team-member-inner {
    transform: rotateY(180deg);
}

.team-member-front,
.team-member-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 10px;
    overflow: hidden;
}

.team-member-front {
    background-color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
}

.team-member-back {
    background-color: var(--primary-color);
    transform: rotateY(180deg);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.team-member-image {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 1.5rem;
    border: 5px solid #f1f1f1;
}

.team-member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.team-position {
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.team-credentials {
    color: var(--medium-gray);
}

.team-bio h3 {
    color: #fff;
    margin-bottom: 1rem;
}

.team-bio p {
    margin-bottom: 1.5rem;
}

.team-social {
    display: flex;
    gap: 0.8rem;
    justify-content: center;
}

.team-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.team-social a:hover {
    background-color: #fff;
    color: var(--primary-color);
}

.team-navigation {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.team-prev,
.team-next {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    color: var(--primary-color);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.team-prev:hover,
.team-next:hover {
    background-color: var(--primary-color);
    color: #fff;
}

/* Gallery Section - Nova Seção */
.gallery-section {
    padding: 7rem 0;
    background-color: #fff;
}

.gallery-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.filter-button {
    padding: 0.8rem 1.5rem;
    background-color: transparent;
    border: 1px solid #eee;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.filter-button.active,
.filter-button:hover {
    background-color: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(33, 65, 118, 0.85);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay i {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 1rem;
}

.gallery-overlay h4 {
    color: #fff;
    font-size: 1.2rem;
}

@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* FAQ Section - Nova Seção */
.faq-section {
    padding: 7rem 0;
    background-color: #f8f9fa;
}

.faq-content {
    max-width: 800px;
    margin: 0 auto;
}

.faq-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.faq-tab {
    padding: 0.8rem 1.5rem;
    background-color: #fff;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 500;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-tab.active,
.faq-tab:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.faq-tab-content {
    display: none;
}

.faq-tab-content.active {
    display: block;
}

.accordion-item {
    margin-bottom: 1rem;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.accordion-header {
    padding: 1.5rem;
    background-color: #fff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-header h3 {
    margin: 0;
    font-size: 1.2rem;
}

.accordion-icon {
    position: relative;
    width: 24px;
    height: 24px;
}

.accordion-icon:before,
.accordion-icon:after {
    content: "";
    position: absolute;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

.accordion-icon:before {
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    transform: translateY(-50%);
}

.accordion-icon:after {
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    transform: translateX(-50%);
}

.accordion-item.active .accordion-icon:after {
    transform: translateX(-50%) rotate(90deg);
    opacity: 0;
}

.accordion-content {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-content {
    padding: 0 1.5rem 1.5rem;
    max-height: 1000px;
}

/* Blog Section - Nova Seção */
.blog-section {
    padding: 7rem 0;
    background-color: #fff;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.blog-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    background-color: #fff;
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

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

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

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

.blog-date {
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: 70px;
    height: 70px;
    background-color: var(--primary-color);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(33, 65, 118, 0.3);
}

.blog-date .day {
    font-size: 1.8rem;
    font-weight: bold;
    line-height: 1;
}

.blog-date .month {
    font-size: 0.9rem;
    text-transform: uppercase;
}

.blog-content {
    padding: 2rem;
}

.blog-meta {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--medium-gray);
}

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

.blog-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-card h3 a {
    color: var(--dark-gray);
    transition: color 0.3s ease;
}

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

.blog-card p {
    margin-bottom: 1.5rem;
    color: var(--medium-gray);
}

.read-more {
    display: flex;
    align-items: center;
    font-weight: bold;
    color: var(--primary-color);
}

.read-more i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

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

.blog-btn-container {
    text-align: center;
    margin-top: 3rem;
}

@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

/* CTA Section - Nova Seção */
.cta-section {
    padding: 7rem 0;
    background-position: center;
    background-size: cover;
    position: relative;
    color: #fff;
    text-align: center;
}

.cta-section:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(33, 65, 118, 0.85);
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn-light {
    background-color: #fff;
    color: var(--primary-color);
    border: 2px solid #fff;
}

.btn-light:hover {
    background-color: transparent;
    color: var(--primary-color);
}

.btn-light:hover .btn-icon {
    color: #fff;
}

/* Contact Section Aprimorada */
.contact-section {
    padding: 7rem 0;
    background-color: #fff;
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.contact-card {
    background-color: #f8f9fa;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    margin-bottom: 1.5rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(33, 65, 118, 0.1);
    color: var(--primary-color);
    font-size: 1.2rem;
    border-radius: 10px;
    margin-right: 1rem;
}

.contact-text h3 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.contact-text p {
    margin-bottom: 0;
    color: var(--medium-gray);
}

.contact-social {
    margin-bottom: 2rem;
}

.contact-social h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.contact-social .social-icons {
    display: flex;
    gap: 0.8rem;
}

.contact-social .social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.contact-social .social-icon:hover {
    background-color: var(--dark-gray);
}

.contact-map {
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 992px) {
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .contact-map {
        height: 400px;
    }
}

/* Animações adicionais */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* Google Reviews Section */
.google-reviews-section {
    background-color: #f8f9fa;
    padding: 7rem 0;
    position: relative;
}

.google-reviews-slider {
    max-width: 1200px;
    margin: 0 auto;
}

.google-review-slide {
    padding: 15px;
    box-sizing: border-box;
}

.google-review-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.google-review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.review-rating {
    color: #FFD700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.review-text {
    flex-grow: 1;
    margin-bottom: 1.5rem;
    font-style: italic;
    color: var(--medium-gray);
    line-height: 1.6;
}

.review-author {
    font-weight: bold;
    color: var(--primary-color);
}

/* Slick Slider Navigation */
.slick-prev, 
.slick-next {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color) !important;
    border-radius: 50%;
    z-index: 10;
}

.slick-prev:before, 
.slick-next:before {
    color: white !important;
    font-size: 20px !important;
}

.slick-prev {
    left: -60px;
}

.slick-next {
    right: -60px;
}

@media (max-width: 1024px) {
    .slick-prev, 
    .slick-next {
        display: block !important;
        top: 50%;
        transform: translateY(-50%);
    }
}

@media (max-width: 768px) {
    .slick-prev, 
    .slick-next {
        width: 40px;
        height: 40px;
    }
}