/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #2a5bd7;
    --secondary-blue: #1a3a8f;
    --accent-blue: #4a7dff;
    --light-blue: #e8f0ff;
    --dark-gray: #333333;
    --medium-gray: #666666;
    --light-gray: #f5f7fa;
    --white: #ffffff;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 10px 25px rgba(0, 0, 0, 0.12);
    --radius: 8px;
    --radius-lg: 12px;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark-gray);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 100px 0;
}

.highlight {
    color: var(--primary-blue);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: var(--radius);
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    gap: 8px;
}

.btn-primary {
    background-color: var(--primary-blue);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--secondary-blue);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-secondary:hover {
    background-color: var(--light-blue);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.btn-sm {
    padding: 10px 22px;
    font-size: 0.9rem;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--medium-gray);
    max-width: 700px;
    margin: 0 auto;
}

/* ============================================
   HEADER
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 18px 0;
    transition: var(--transition);
}

.header.scrolled {
    padding: 12px 0;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
}

.logo-text {
    display: inline-flex;
    align-items: center;
}

.logo-highlight {
    color: var(--primary-blue);
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    font-weight: 500;
    position: relative;
    padding: 5px 0;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-blue);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-blue);
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--dark-gray);
    cursor: pointer;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
}

.mobile-menu-btn:hover {
    background-color: var(--light-gray);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    padding-top: 150px;
    padding-bottom: 100px;
    background: linear-gradient(135deg, var(--light-gray) 0%, #f0f4ff 100%);
    overflow: hidden;
    position: relative;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 2.8rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--medium-gray);
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: var(--white);
    padding: 10px 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    font-weight: 500;
    transition: var(--transition);
}

.feature:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.feature i {
    color: var(--primary-blue);
}

.hero-visual {
    position: relative;
    height: 400px;
}

.tech-element {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: var(--light-blue);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.circuit-line {
    position: absolute;
    background-color: var(--accent-blue);
    opacity: 0.3;
}

.circuit-line:nth-child(1) {
    width: 80%;
    height: 2px;
    top: 30%;
    left: 10%;
    transform: rotate(15deg);
}

.circuit-line:nth-child(2) {
    width: 70%;
    height: 2px;
    top: 50%;
    left: 15%;
    transform: rotate(-10deg);
}

.circuit-line:nth-child(3) {
    width: 60%;
    height: 2px;
    top: 70%;
    left: 20%;
    transform: rotate(5deg);
}

.gear {
    position: absolute;
    width: 80px;
    height: 80px;
    background-color: var(--primary-blue);
    border-radius: 50%;
    top: 20%;
    right: 20%;
    opacity: 0.1;
}

.gear::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 15px,
        var(--white) 15px,
        var(--white) 30px
    );
    border-radius: 50%;
}

.bolt {
    position: absolute;
    width: 60px;
    height: 60px;
    background-color: var(--primary-blue);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    bottom: 15%;
    left: 15%;
    opacity: 0.2;
}

.tool-icon {
    position: absolute;
    background-color: var(--white);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    font-size: 1.8rem;
    color: var(--primary-blue);
    transition: var(--transition);
}

.tool-icon:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-hover);
}

.tool-icon:nth-child(6) {
    top: 15%;
    left: 15%;
}

.tool-icon:nth-child(7) {
    bottom: 25%;
    right: 25%;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
    background-color: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--white);
    border-radius: var(--radius);
    padding: 40px 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--primary-blue), var(--accent-blue));
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.service-card:hover::before {
    transform: translateX(0);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-blue);
}

.service-icon {
    width: 70px;
    height: 70px;
    background-color: var(--light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 1.8rem;
    color: var(--primary-blue);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background-color: var(--primary-blue);
    color: var(--white);
    transform: rotateY(360deg);
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark-gray);
}

.service-description {
    color: var(--medium-gray);
    line-height: 1.6;
}

/* ============================================
   GALLERY SECTION - MELHORADA
   ============================================ */
.gallery {
    background-color: var(--light-gray);
    position: relative;
}

.gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--primary-blue), transparent);
}

.gallery-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.gallery-intro {
    max-width: 800px;
    margin: 0 auto;
}

.intro-card {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: var(--white);
    padding: 50px 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-hover);
    display: flex;
    align-items: center;
    gap: 30px;
}

.intro-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
}

.intro-text h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--white);
}

.intro-text p {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.6;
}

.services-carousel {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.carousel-service {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.carousel-service:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
    border-color: var(--primary-blue);
}

.service-header {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: var(--white);
    padding: 25px 30px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.service-icon-small {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: var(--transition);
}

.service-header:hover .service-icon-small {
    transform: rotate(360deg);
    background-color: rgba(255, 255, 255, 0.3);
}

.service-title-section h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.service-subtitle {
    opacity: 0.9;
    font-size: 0.95rem;
}

.carousel-container {
    position: relative;
    padding: 30px;
}

.carousel-slides {
    position: relative;
    height: 500px;
    overflow: hidden;
    border-radius: var(--radius);
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.carousel-slide.active {
    opacity: 1;
    transform: translateX(0);
}

.slide-image {
    position: relative;
    width: 100%;
    height: 70%;
    overflow: hidden;
    background-color: #f8f9fa;
    border-radius: var(--radius);
}

.slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.carousel-slide:hover .slide-image img {
    transform: scale(1.05);
}

.expand-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(42, 91, 215, 0.9);
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(-10px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.slide-image:hover .expand-btn {
    opacity: 1;
    transform: translateY(0);
}

.expand-btn:hover {
    background: rgba(26, 58, 143, 1);
    transform: scale(1.1) translateY(0) !important;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7));
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.carousel-slide:hover .slide-overlay {
    opacity: 1;
}

.overlay-content {
    color: white;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.carousel-slide:hover .overlay-content {
    transform: translateY(0);
}

.overlay-content h4 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.overlay-content p {
    font-size: 0.95rem;
    opacity: 0.9;
}

.slide-info {
    padding: 25px;
    background-color: var(--light-gray);
    height: 30%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.slide-info h4 {
    font-size: 1.3rem;
    color: var(--secondary-blue);
    margin-bottom: 10px;
}

.slide-info p {
    color: var(--medium-gray);
    font-size: 0.95rem;
    line-height: 1.5;
}

.slide-tags {
    display: flex;
    gap: 8px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.slide-tag {
    background-color: var(--light-blue);
    color: var(--primary-blue);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    transition: var(--transition);
}

.slide-tag:hover {
    background-color: var(--primary-blue);
    color: var(--white);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.95);
    border: 2px solid var(--primary-blue);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary-blue);
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.carousel-btn:hover {
    background-color: var(--primary-blue);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
    box-shadow: var(--shadow-hover);
}

.prev-btn {
    left: 15px;
}

.next-btn {
    right: 15px;
}

.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.indicator.active {
    background-color: var(--white);
    transform: scale(1.2);
    border-color: var(--primary-blue);
}

.indicator:hover {
    background-color: var(--white);
    transform: scale(1.1);
}

.slide-counter {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    z-index: 10;
}

.gallery-stats-container {
    max-width: 800px;
    margin: 0 auto;
}

.stats-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.stat-icon {
    width: 60px;
    height: 60px;
    background-color: var(--light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-blue);
    flex-shrink: 0;
}

.stat-content h3 {
    font-size: 1.5rem;
    color: var(--secondary-blue);
    margin-bottom: 5px;
}

.stat-content p {
    color: var(--medium-gray);
    font-size: 0.95rem;
}

.gallery-cta {
    max-width: 800px;
    margin: 0 auto;
}

.cta-card {
    background: linear-gradient(135deg, var(--light-blue) 0%, #e8f0ff 100%);
    border-radius: var(--radius-lg);
    padding: 50px 40px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 30px;
    border: 2px solid var(--primary-blue);
}

.cta-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    flex-shrink: 0;
}

.cta-content h3 {
    font-size: 1.8rem;
    color: var(--secondary-blue);
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 1.1rem;
    color: var(--medium-gray);
    margin-bottom: 25px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* ============================================
   LIGHTBOX MODAL - APRIMORADO
   ============================================ */
.lightbox-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    flex-direction: column;
}

.lightbox-modal.active {
    display: flex;
    opacity: 1;
}

.lightbox-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to bottom, rgba(0,0,0,0.8), transparent);
    z-index: 10;
}

.lightbox-info {
    color: white;
    display: flex;
    align-items: center;
    gap: 15px;
}

.lightbox-counter {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent-blue);
    background: rgba(255,255,255,0.1);
    padding: 5px 12px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.lightbox-title {
    font-size: 1.3rem;
    font-weight: 500;
    max-width: 400px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.lightbox-close {
    color: white;
    font-size: 1.8rem;
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.lightbox-close:hover {
    color: #ff6b6b;
    transform: rotate(90deg);
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1400px;
    padding: 0 30px;
    position: relative;
}

.lightbox-content {
    max-width: 90%;
    max-height: 70vh;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-content img {
    width: 100%;
    height: auto;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
    animation: lightboxFadeIn 0.5s ease;
}

@keyframes lightboxFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.lightbox-caption {
    color: white;
    text-align: center;
    padding: 20px 15px;
    font-size: 1.1rem;
    max-width: 800px;
    line-height: 1.5;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 0 0 10px 10px;
    margin-top: -5px;
    width: 100%;
}

.lightbox-btn {
    background: rgba(42, 91, 215, 0.8);
    color: white;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 1.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.lightbox-btn:hover {
    background: rgba(42, 91, 215, 1);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features {
    background-color: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.feature-item {
    background-color: var(--white);
    border-radius: var(--radius);
    padding: 40px 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-blue);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background-color: var(--light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 1.8rem;
    color: var(--primary-blue);
    transition: var(--transition);
}

.feature-item:hover .feature-icon {
    background-color: var(--primary-blue);
    color: var(--white);
    transform: rotateY(360deg);
}

.feature-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark-gray);
}

.feature-item p {
    color: var(--medium-gray);
    line-height: 1.6;
}

/* ============================================
   AVALIAÇÕES SECTION
   ============================================ */
.reviews {
    background-color: var(--light-gray);
    position: relative;
}

.reviews::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--primary-blue), transparent);
}

.rating-summary {
    max-width: 800px;
    margin: 0 auto 60px;
}

.rating-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    border: 2px solid rgba(42, 91, 215, 0.1);
    transition: var(--transition);
}

.rating-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-blue);
}

.google-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 600;
    color: #4285F4;
}

.google-logo i {
    font-size: 2rem;
}

.rating-display {
    text-align: center;
    width: 100%;
}

.rating-stars {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.stars-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.average-rating {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    font-family: 'Poppins', sans-serif;
    line-height: 1;
}

.stars {
    display: flex;
    gap: 5px;
    font-size: 2rem;
    color: #FFD700;
}

.stars i {
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.rating-text {
    font-size: 1.2rem;
    color: var(--medium-gray);
    font-weight: 500;
    background-color: var(--light-blue);
    padding: 8px 20px;
    border-radius: 20px;
}

.rating-count {
    font-size: 1.1rem;
    color: var(--medium-gray);
    font-weight: 500;
}

.rating-card .btn {
    margin-top: 10px;
}

.reviews-carousel-container {
    max-width: 900px;
    margin: 0 auto 60px;
    position: relative;
}

.reviews-carousel {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.reviews-slides {
    display: flex;
    transition: transform 0.5s ease;
    gap: 30px;
    padding: 10px;
}

.review-slide {
    min-width: 100%;
    padding: 10px;
}

.review-card {
    background-color: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-blue);
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--primary-blue), var(--accent-blue));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.review-card:hover::before {
    opacity: 1;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    position: relative;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    background-color: var(--light-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--primary-blue);
    font-size: 1.2rem;
}

.reviewer-info {
    flex: 1;
}

.reviewer-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--dark-gray);
}

.reviewer-rating {
    display: flex;
    align-items: center;
    gap: 10px;
}

.reviewer-rating i {
    color: #FFD700;
    font-size: 0.9rem;
}

.rating-date {
    font-size: 0.85rem;
    color: var(--medium-gray);
}

.google-badge {
    background-color: #4285F4;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.review-content {
    margin-bottom: 20px;
    position: relative;
}

.review-content p {
    color: var(--medium-gray);
    line-height: 1.6;
    font-style: italic;
    position: relative;
    padding-left: 20px;
}

.review-content p::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 3rem;
    color: var(--light-blue);
    font-family: Georgia, serif;
    line-height: 1;
}

.review-service {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: var(--light-blue);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--primary-blue);
    width: fit-content;
    font-weight: 500;
}

.review-service i {
    font-size: 0.9rem;
}

.review-prev-btn,
.review-next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.95);
    border: 2px solid var(--primary-blue);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary-blue);
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.review-prev-btn:hover,
.review-next-btn:hover {
    background-color: var(--primary-blue);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
    box-shadow: var(--shadow-hover);
}

.review-prev-btn {
    left: -25px;
}

.review-next-btn {
    right: -25px;
}

.review-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.review-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--light-blue);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.review-indicator.active {
    background-color: var(--primary-blue);
    transform: scale(1.2);
}

.review-indicator:hover {
    background-color: var(--primary-blue);
    transform: scale(1.1);
}

.review-cta {
    max-width: 800px;
    margin: 0 auto;
}

.review-cta-card {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: 50px 40px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 30px;
}

.review-cta-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.review-cta-card:hover .review-cta-icon {
    transform: rotateY(360deg);
    background-color: rgba(255, 255, 255, 0.25);
}

.review-cta-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--white);
}

.review-cta-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 25px;
    line-height: 1.6;
}

.review-cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* ============================================
   RESPONSIVIDADE PARA AVALIAÇÕES
   ============================================ */
@media (max-width: 1024px) {
    .review-prev-btn {
        left: -15px;
    }
    
    .review-next-btn {
        right: -15px;
    }
    
    .review-card {
        padding: 25px;
    }
    
    .rating-card {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .rating-card {
        padding: 25px 20px;
    }
    
    .average-rating {
        font-size: 2.8rem;
    }
    
    .stars {
        font-size: 1.8rem;
    }
    
    .review-cta-card {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
        gap: 20px;
    }
    
    .review-cta-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .review-cta-content h3 {
        font-size: 1.5rem;
    }
    
    .review-cta-content p {
        font-size: 1rem;
    }
    
    .review-cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .review-cta-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .review-prev-btn,
    .review-next-btn {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .review-prev-btn {
        left: -10px;
    }
    
    .review-next-btn {
        right: -10px;
    }
}

@media (max-width: 480px) {
    .rating-card {
        padding: 20px 15px;
    }
    
    .average-rating {
        font-size: 2.5rem;
    }
    
    .stars {
        font-size: 1.5rem;
    }
    
    .rating-text {
        font-size: 1rem;
        padding: 6px 15px;
    }
    
    .review-card {
        padding: 20px;
    }
    
    .review-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .reviewer-info {
        text-align: center;
    }
    
    .reviewer-rating {
        justify-content: center;
    }
    
    .review-content p {
        padding-left: 15px;
        font-size: 0.95rem;
    }
    
    .review-content p::before {
        font-size: 2.5rem;
        top: -5px;
    }
    
    .review-service {
        margin: 0 auto;
    }
    
    .review-prev-btn,
    .review-next-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .review-indicators {
        gap: 8px;
    }
    
    .review-indicator {
        width: 10px;
        height: 10px;
    }
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    background-color: var(--light-gray);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-text h2 {
    margin-bottom: 25px;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--medium-gray);
    line-height: 1.6;
}

.about-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.stat {
    text-align: center;
    flex: 1;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    font-family: 'Poppins', sans-serif;
    line-height: 1;
    margin-bottom: 8px;
    content: attr(data-content) !important; /* Garante que não seja sobrescrito */
}

.stat-label {
    font-size: 0.95rem;
    color: var(--medium-gray);
}

.about-visual {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.about-card {
    background-color: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-blue);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.card-header i {
    font-size: 1.8rem;
    color: var(--primary-blue);
}

.card-header h3 {
    font-size: 1.3rem;
    color: var(--dark-gray);
}

.about-card p {
    color: var(--medium-gray);
    line-height: 1.6;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
    background-color: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-card {
    display: flex;
    gap: 20px;
    background-color: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-blue);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background-color: var(--light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-blue);
    flex-shrink: 0;
    transition: var(--transition);
}

.contact-card:hover .contact-icon {
    background-color: var(--primary-blue);
    color: var(--white);
    transform: rotateY(360deg);
}

.contact-details h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--dark-gray);
}

.contact-details p {
    color: var(--medium-gray);
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.contact-link {
    color: var(--primary-blue);
    font-weight: 500;
    transition: var(--transition);
    display: inline-block;
}

.contact-link:hover {
    color: var(--secondary-blue);
    transform: translateX(5px);
}

.contact-cta {
    background-color: var(--primary-blue);
    border-radius: var(--radius);
    padding: 30px;
    color: var(--white);
    transition: var(--transition);
}

.contact-cta:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.contact-cta h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--white);
}

.contact-cta p {
    margin-bottom: 20px;
    opacity: 0.9;
    line-height: 1.6;
}

.contact-cta .btn {
    background-color: var(--white);
    color: var(--primary-blue);
    font-weight: 600;
}

.contact-cta .btn:hover {
    background-color: var(--light-blue);
    transform: translateY(-3px);
}

/* Novos estilos para a área de CTA sem formulário */
.contact-cta-box {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow);
    border: 2px solid var(--light-blue);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: var(--transition);
}

.contact-cta-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-blue);
}

.cta-box-content {
    width: 100%;
}

.cta-box-icon {
    width: 80px;
    height: 80px;
    background-color: var(--light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-blue);
    margin: 0 auto 25px;
    transition: var(--transition);
}

.contact-cta-box:hover .cta-box-icon {
    background-color: var(--primary-blue);
    color: var(--white);
    transform: rotateY(360deg);
}

.cta-box-content h3 {
    font-size: 1.8rem;
    color: var(--secondary-blue);
    margin-bottom: 15px;
}

.cta-box-content p {
    color: var(--medium-gray);
    margin-bottom: 30px;
    line-height: 1.6;
}

.cta-box-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.cta-box-buttons .btn {
    min-width: 200px;
}

.social-links p {
    margin-bottom: 15px;
    color: var(--medium-gray);
    font-weight: 500;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background-color: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary-blue);
    transition: var(--transition);
}

.social-icon:hover {
    background-color: var(--primary-blue);
    color: var(--white);
    transform: translateY(-3px);
}

.social-icon:nth-child(1):hover {
    background: linear-gradient(45deg, #405DE6, #5B51D8, #833AB4, #C13584, #E1306C, #FD1D1D, #F56040, #F77737, #FCAF45, #FFDC80);
}

.social-icon:nth-child(2):hover {
    background-color: #1877F2;
}

.social-icon:nth-child(3):hover {
    background-color: #EA4335;
}

/* ============================================
   FOOTER - ATUALIZADO COM NOVA COR
   ============================================ */
.footer {
    background-color: #080d41;
    color: var(--white);
    padding: 70px 0 30px;
}/* ============================================
   FOOTER - RESPONSIVIDADE MELHORADA
   ============================================ */
.footer {
    background-color: #080d41;
    color: var(--white);
    padding: 70px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo .logo {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.footer-tagline {
    opacity: 0.8;
    margin-top: 10px;
    margin-bottom: 20px;
    font-size: 1rem;
}

.footer-address {
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.8;
    font-size: 0.95rem;
}

.footer-address i {
    color: var(--accent-blue);
}

.footer-links h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    color: var(--white);
}

.footer-links h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent-blue);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    opacity: 0.8;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--accent-blue);
    padding-left: 5px;
}

.footer-contact h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    color: var(--white);
}

.footer-contact h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent-blue);
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    opacity: 0.8;
    font-size: 0.95rem;
}

.footer-contact-item i {
    color: var(--accent-blue);
    width: 20px;
    text-align: center;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    opacity: 0.7;
    font-size: 0.9rem;
}

.footer-bottom p {
    margin-bottom: 5px;
}

/* ============================================
   RESPONSIVIDADE DO FOOTER - MELHORIAS
   ============================================ */

/* Tablets e laptops menores */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 30px;
    }
    
    .footer-logo {
        grid-column: 1 / -1;
        text-align: center;
        margin-bottom: 10px;
    }
    
    .footer-logo .logo {
        justify-content: center;
    }
    
    .footer-tagline {
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .footer-address {
        justify-content: center;
    }
    
    .footer-contact {
        grid-column: 1 / -1;
        text-align: center;
    }
    
    .footer-contact-item {
        justify-content: center;
    }
    
    .footer-links {
        text-align: center;
    }
    
    .footer-links h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

/* Tablets em modo retrato e celulares grandes */
@media (max-width: 768px) {
    .footer {
        padding: 50px 0 25px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
        margin-bottom: 40px;
    }
    
    .footer-logo {
        grid-column: 1;
        margin-bottom: 0;
    }
    
    .footer-contact {
        grid-column: 1;
        order: 3;
    }
    
    .footer-links {
        order: 2;
    }
    
    .footer-links:nth-child(2) {
        margin-top: 10px;
    }
    
    .footer-links:nth-child(3) {
        margin-top: 0;
    }
    
    .footer-links h3 {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    
    .footer-links li {
        margin-bottom: 10px;
    }
    
    .footer-links a {
        font-size: 1rem;
    }
    
    .footer-contact h3 {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    
    .footer-contact-item {
        margin-bottom: 12px;
        font-size: 1rem;
        justify-content: flex-start;
        padding-left: 10px;
    }
    
    .footer-bottom {
        padding-top: 25px;
        font-size: 0.85rem;
        line-height: 1.5;
    }
}

/* Celulares médios e pequenos */
@media (max-width: 480px) {
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        gap: 30px;
        margin-bottom: 35px;
    }
    
    .footer-logo .logo {
        font-size: 1.6rem;
        margin-bottom: 12px;
    }
    
    .footer-tagline {
        font-size: 0.95rem;
        margin: 8px auto 15px;
        line-height: 1.4;
    }
    
    .footer-address {
        font-size: 0.9rem;
        flex-direction: column;
        gap: 5px;
        align-items: center;
        text-align: center;
    }
    
    .footer-contact h3::after {
        left: 50% !important;
        transform: translateX(-50%);
    }
    
    .footer-links {
        padding: 15px 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .footer-links:first-of-type {
        border-top: none;
        padding-top: 0;
    }
    
    .footer-links h3 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .footer-links ul {
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
    }
    
    .footer-links li {
        margin-bottom: 0;
    }
    
    .footer-links a {
        display: inline-block;
        padding: 6px 12px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 20px;
        font-size: 0.9rem;
        transition: all 0.3s ease;
    }
    
    .footer-links a:hover {
        background: rgba(255, 255, 255, 0.1);
        padding-left: 12px;
        transform: translateY(-2px);
    }
    
    .footer-contact {
        padding-top: 15px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .footer-contact-item {
        flex-direction: column;
        text-align: center;
        gap: 8px;
        padding-left: 0;
        margin-bottom: 15px;
    }
    
    .footer-contact-item i {
        font-size: 1.1rem;
        width: auto;
    }
    
    .footer-contact-item span {
        font-size: 0.95rem;
        line-height: 1.4;
        word-break: break-word;
        max-width: 100%;
    }
    
    .footer-bottom {
        padding-top: 20px;
        font-size: 0.8rem;
        line-height: 1.6;
    }
    
    .footer-bottom p:first-child {
        margin-bottom: 8px;
    }
}

/* Celulares muito pequenos */
@media (max-width: 360px) {
    .footer {
        padding: 35px 0 15px;
    }
    
    .footer-content {
        gap: 25px;
    }
    
    .footer-logo .logo {
        font-size: 1.4rem;
    }
    
    .footer-tagline {
        font-size: 0.9rem;
    }
    
    .footer-links a {
        font-size: 0.85rem;
        padding: 5px 10px;
    }
    
    .footer-contact-item span {
        font-size: 0.9rem;
    }
    
    .footer-bottom {
        font-size: 0.75rem;
    }
}

/* Melhorias específicas para orientação paisagem em mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .footer {
        padding: 30px 0 15px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-bottom: 25px;
    }
    
    .footer-logo {
        grid-column: 1;
    }
    
    .footer-contact {
        grid-column: 2;
        order: 2;
    }
    
    .footer-links {
        order: 3;
        grid-column: 1 / -1;
        padding-top: 10px;
    }
    
    .footer-links ul {
        justify-content: flex-start;
    }
}

/* Acessibilidade - melhor contraste e foco */
.footer-links a:focus,
.footer-contact-item:focus {
    outline: 2px solid var(--accent-blue);
    outline-offset: 3px;
    border-radius: 4px;
}

/* Suporte para dark mode automático */
@media (prefers-color-scheme: dark) {
    .footer {
        background-color: #0a0f2e;
    }
    
    .footer-links a:hover {
        color: #6d9cff;
    }
}

/* Suporte para reduzir movimento */
@media (prefers-reduced-motion: reduce) {
    .footer-links a,
    .footer-contact-item {
        transition: none;
    }
    
    .footer-links a:hover {
        transform: none;
    }
}

/* Corrige quebra de linha em contatos longos */
.footer-contact-item span {
    word-break: break-word;
    overflow-wrap: break-word;
}

/* Melhora espaçamento em telas grandes */
@media (min-width: 1400px) {
    .footer .container {
        max-width: 1300px;
    }
    
    .footer-content {
        gap: 60px;
    }
}

/* ============================================
   WHATSAPP FLOAT BUTTON
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    background-color: #128C7E;
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Animação para elementos específicos */
.service-card, 
.feature-item, 
.about-card, 
.contact-card {
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   RESPONSIVIDADE
   ============================================ */
@media (max-width: 1024px) {
    .hero .container {
        gap: 40px;
    }
    
    .hero-title {
        font-size: 2.4rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .services-grid,
    .features-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .lightbox-content-wrapper {
        padding: 0 20px;
    }
    
    .lightbox-btn {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
    
    .cta-box-buttons .btn {
        min-width: 180px;
    }
}

@media (max-width: 768px) {
    .hero .container,
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .hero {
        padding-top: 130px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .hero-visual {
        height: 300px;
        order: -1;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: var(--white);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        padding: 20px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        z-index: 999;
    }
    
    .nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 0;
    }
    
    .nav-link {
        display: block;
        padding: 15px 0;
        border-bottom: 1px solid #eee;
    }
    
    .carousel-slides {
        height: 400px;
    }
    
    .intro-card,
    .cta-card {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
    
    .intro-icon,
    .cta-icon {
        width: 70px;
        height: 70px;
    }
    
    .stats-card {
        grid-template-columns: 1fr;
        padding: 30px;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .lightbox-header {
        padding: 15px 20px;
    }
    
    .lightbox-title {
        max-width: 200px;
        font-size: 1.1rem;
    }
    
    .lightbox-close {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    .cta-box-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cta-box-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .social-icons {
        gap: 15px;
    }
}

@media (max-width: 480px) {
    section {
        padding: 70px 0;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .services-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .carousel-slides {
        height: 350px;
    }
    
    .carousel-container {
        padding: 20px;
    }
    
    .slide-info {
        padding: 20px;
        height: auto;
        min-height: 120px;
    }
    
    .slide-info h4 {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 20px;
        right: 20px;
    }
    
    .lightbox-content {
        max-width: 95%;
    }
    
    .lightbox-caption {
        font-size: 1rem;
        padding: 15px 10px;
    }
    
    .lightbox-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .contact-cta-box {
        padding: 30px 20px;
    }
    
    .cta-box-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .cta-box-content h3 {
        font-size: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* ============================================
   RESPONSIVIDADE EXTRA PARA CELULAR - CORREÇÕES
   ============================================ */
@media (max-width: 480px) {
    /* Ajustes para telas muito pequenas */
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 1.6rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .logo-img {
    width: 120px;  
    height: 120px;
    object-fit: contain;
    vertical-align: middle;
    margin-right: -8px;
}
    
    .logo-text {
        font-size: 1.4rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
    
    /* Header mobile melhorado */
    .header .container {
        padding: 0 15px;
    }
    
    .btn-sm {
        padding: 8px 16px;
        font-size: 0.85rem;
        display: none;
    }
    
    /* Carrossel em mobile */
    .carousel-slides {
        height: 300px !important;
    }
    
    .slide-image {
        height: 60% !important;
    }
    
    .slide-info {
        height: 40% !important;
        padding: 15px !important;
    }
    
    .slide-info h4 {
        font-size: 1rem;
        margin-bottom: 5px;
    }
    
    .slide-info p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .slide-tags {
        gap: 5px;
        margin-top: 10px;
    }
    
    .slide-tag {
        padding: 3px 8px;
        font-size: 0.75rem;
    }
    
    .carousel-btn {
        width: 40px !important;
        height: 40px !important;
        font-size: 1rem !important;
    }
    
    .expand-btn {
        width: 40px !important;
        height: 40px !important;
        font-size: 1.1rem !important;
        opacity: 1 !important;
        transform: translateY(0) !important;
    }
    
    /* Lightbox mobile */
    .lightbox-header {
        padding: 12px 15px !important;
    }
    
    .lightbox-counter {
        font-size: 0.9rem;
        padding: 4px 8px;
    }
    
    .lightbox-title {
        font-size: 0.9rem;
        max-width: 150px;
    }
    
    .lightbox-close {
        width: 35px !important;
        height: 35px !important;
        font-size: 1.2rem !important;
    }
    
    .lightbox-btn {
        width: 35px !important;
        height: 35px !important;
        font-size: 1rem !important;
    }
    
    .lightbox-prev {
        left: 5px !important;
    }
    
    .lightbox-next {
        right: 5px !important;
    }
    
    .lightbox-content {
        max-width: 98% !important;
    }
    
    .lightbox-caption {
        font-size: 0.9rem !important;
        padding: 10px !important;
    }
    
    /* Contato mobile */
    .contact-card {
        padding: 20px !important;
        flex-direction: column;
        text-align: center;
    }
    
    .contact-icon {
        margin: 0 auto 15px !important;
    }
    
    .contact-cta-box {
        padding: 25px 15px !important;
    }
    
    .cta-box-buttons {
        gap: 10px !important;
    }
    
    .cta-box-buttons .btn {
        padding: 12px 20px !important;
        font-size: 1rem !important;
        width: 100%;
    }
    
    /* Footer mobile */
    .footer-content {
        grid-template-columns: 1fr !important;
        text-align: center;
        gap: 30px !important;
    }
    
    .footer-links h3::after {
        left: 50% !important;
        transform: translateX(-50%);
    }
    
    .footer-contact-item {
        justify-content: center;
    }
    
    /* WhatsApp float */
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
        bottom: 20px;
        right: 20px;
    }
    
    /* Estatísticas */
    .stat-item {
        flex-direction: column;
        text-align: center;
    }
    
    .stat-icon {
        margin: 0 auto 15px;
    }
}

@media (max-width: 360px) {
    /* Ajustes para telas muito pequenas (iPhone SE, etc) */
    .hero-title {
        font-size: 1.4rem;
    }
    
    .hero-buttons .btn {
        padding: 12px 15px !important;
        font-size: 0.9rem !important;
    }
    
    .service-card, .feature-item {
        padding: 25px 20px !important;
    }
    
    .carousel-slides {
        height: 280px !important;
    }
    
    .logo-img {
        width: 60px;
        height: 60px;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
}

/* Melhorias para orientação paisagem em mobile */
@media (max-height: 600px) and (orientation: landscape) {
    .hero {
        padding: 100px 0 60px !important;
    }
    
    .hero .container {
        grid-template-columns: 1fr !important;
    }
    
    .hero-visual {
        display: none;
    }
    
    .carousel-slides {
        height: 250px !important;
    }
}

/* Prevenir zoom em inputs em iOS */
@media (max-width: 480px) {
    input, select, textarea {
        font-size: 16px !important;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center {
    text-align: center;
}

.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mt-40 { margin-top: 40px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.mb-40 { margin-bottom: 40px; }

.p-20 { padding: 20px; }
.p-30 { padding: 30px; }
.p-40 { padding: 40px; }

/* ============================================
   LOADING STATES
   ============================================ */
.loading {
    position: relative;
    overflow: hidden;
}
/* ADICIONE AO FINAL DO SEU style.css */

/* Corrige bug específico do lightbox */
#lightboxImage {
    min-width: 50px;
    min-height: 50px;
    background-color: transparent !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Garante que a imagem seja sempre visível */
.lightbox-modal.active #lightboxImage {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Corrige problema de display no Chrome */
.lightbox-content img {
    display: block !important;
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
}

/* Força a imagem a aparecer */
.lightbox-content-wrapper {
    position: relative;
    width: 100%;
}

/* Remove qualquer transform que possa estar escondendo a imagem */
.lightbox-content {
    transform: none !important;
}

/* Garante que o container da imagem tenha altura */
.lightbox-modal.active .lightbox-content {
    min-height: 200px;
}
.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}
/* ============================================
   CORREÇÃO RADICAL DO LIGHTBOX
   ============================================ */

/* REMOVE TODAS AS ANIMAÇÕES DO LIGHTBOX */
.lightbox-modal {
    transition: none !important;
    animation: none !important;
}

.lightbox-modal.active {
    display: flex !important;
    opacity: 1 !important;
}

.lightbox-modal:not(.active) {
    display: none !important;
    opacity: 0 !important;
}

/* IMAGEM SEMPRE VISÍVEL E SEM ANIMAÇÃO */
#lightboxImage {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    transition: opacity 0.2s ease !important;
    animation: none !important;
    transform: none !important;
    position: static !important;
    background: transparent !important;
}

/* CONTEÚDO DO LIGHTBOX */
.lightbox-content {
    animation: none !important;
    transition: none !important;
    transform: none !important;
}

/* GARANTE QUE O MODAL ESTEJA SEMPRE NO TOPO */
.lightbox-modal {
    z-index: 9999 !important;
}

/* BOTÕES SEM EFEITOS ESTRANHOS */
.lightbox-btn,
.lightbox-close {
    transition: transform 0.2s ease, background-color 0.2s ease !important;
    animation: none !important;
}

/* CORRIGE PARA MOBILE */
@media (max-width: 768px) {
    .lightbox-content img {
        max-height: 60vh !important;
    }
    
    .lightbox-btn {
        width: 45px !important;
        height: 45px !important;
        font-size: 1.2rem !important;
    }
}

/* FORÇA A IMAGEM A SER SEMPRE VISÍVEL */
body.lightbox-open {
    overflow: hidden !important;
    position: fixed !important;
    width: 100% !important;
}

/* REMOVE QUALQUER EFEITO DE BACKGROUND BUGADO */
.lightbox-content-wrapper {
    background: transparent !important;
}

.lightbox-modal.active .lightbox-content-wrapper {
    opacity: 1 !important;
    visibility: visible !important;
}

/* ============================================
   MELHORIAS DE RESPONSIVIDADE PARA CARROSSÉIS
   ============================================ */

/* Ajustes gerais para carrosséis em tablets */
@media (max-width: 1024px) {
    .carousel-slides {
        height: 450px !important;
    }
    
    .slide-image {
        height: 65% !important;
    }
    
    .slide-info {
        height: 35% !important;
        padding: 20px !important;
    }
    
    .slide-info h4 {
        font-size: 1.2rem;
    }
    
    .slide-info p {
        font-size: 0.95rem;
    }
    
    .carousel-btn {
        width: 45px !important;
        height: 45px !important;
        font-size: 1.1rem !important;
    }
    
    .expand-btn {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }
}

/* Ajustes para mobile */
@media (max-width: 768px) {
    /* Container do carrossel mais compacto */
    .carousel-container {
        padding: 15px !important;
    }
    
    .carousel-service {
        margin-bottom: 30px;
    }
    
    /* Ajuste proporcional para slides */
    .carousel-slides {
        height: 350px !important;
    }
    
    .slide-image {
        height: 60% !important;
    }
    
    .slide-info {
        height: 40% !important;
        padding: 15px !important;
    }
    
    /* Textos menores mas legíveis */
    .slide-info h4 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }
    
    .slide-info p {
        font-size: 0.85rem;
        line-height: 1.4;
        margin-bottom: 10px;
    }
    
    /* Tags em linha única quando possível */
    .slide-tags {
        gap: 6px;
        margin-top: 10px;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 5px;
    }
    
    .slide-tag {
        padding: 4px 10px;
        font-size: 0.75rem;
        white-space: nowrap;
        flex-shrink: 0;
    }
    
    /* Botões de navegação menores mas tocáveis */
    .carousel-btn {
        width: 40px !important;
        height: 40px !important;
        font-size: 1rem !important;
    }
    
    .prev-btn {
        left: 10px !important;
    }
    
    .next-btn {
        right: 10px !important;
    }
    
    /* Contador de slides ajustado */
    .slide-counter {
        bottom: 15px !important;
        right: 15px !important;
        font-size: 0.8rem;
        padding: 3px 8px;
    }
    
    /* Botão de expandir sempre visível em mobile */
    .expand-btn {
        width: 40px !important;
        height: 40px !important;
        font-size: 1.1rem !important;
        opacity: 1 !important;
        transform: translateY(0) !important;
        background: rgba(42, 91, 215, 0.95) !important;
    }
    
    /* Overlay mais sutil em mobile */
    .slide-overlay {
        opacity: 0.7 !important;
    }
    
    /* Serviços em carrossel - ajuste do cabeçalho */
    .service-header {
        padding: 20px 15px !important;
    }
    
    .service-title-section h3 {
        font-size: 1.3rem;
    }
    
    .service-subtitle {
        font-size: 0.85rem;
    }
}

/* Ajustes para celulares pequenos */
@media (max-width: 480px) {
    .carousel-slides {
        height: 320px !important;
    }
    
    .slide-image {
        height: 55% !important;
    }
    
    .slide-info {
        height: 45% !important;
        padding: 12px !important;
        overflow-y: auto;
    }
    
    .slide-info h4 {
        font-size: 1rem;
        margin-bottom: 5px;
    }
    
    .slide-info p {
        font-size: 0.8rem;
        line-height: 1.3;
        margin-bottom: 8px;
    }
    
    /* Tags em scroll horizontal */
    .slide-tags {
        gap: 5px;
        margin-top: 8px;
        padding-bottom: 3px;
        -webkit-overflow-scrolling: touch;
    }
    
    .slide-tag {
        padding: 3px 8px;
        font-size: 0.7rem;
    }
    
    /* Botões de navegação com área de toque maior */
    .carousel-btn {
        width: 45px !important;
        height: 45px !important;
        font-size: 1rem !important;
        background-color: var(--primary-blue) !important;
        color: white !important;
        opacity: 0.9;
    }
    
    .carousel-btn:hover {
        opacity: 1;
    }
    
    .prev-btn {
        left: 5px !important;
    }
    
    .next-btn {
        right: 5px !important;
    }
    
    /* Expand button mais acessível */
    .expand-btn {
        width: 35px !important;
        height: 35px !important;
        font-size: 1rem !important;
        top: 10px;
        right: 10px;
    }
    
    /* Contador mais discreto */
    .slide-counter {
        bottom: 10px !important;
        right: 10px !important;
        font-size: 0.75rem;
        padding: 2px 6px;
        background-color: rgba(0, 0, 0, 0.5);
    }
}

/* Ajustes para telas muito pequenas (iPhone SE, etc) */
@media (max-width: 360px) {
    .carousel-slides {
        height: 280px !important;
    }
    
    .slide-image {
        height: 50% !important;
    }
    
    .slide-info {
        height: 50% !important;
        padding: 10px !important;
    }
    
    .slide-info h4 {
        font-size: 0.95rem;
    }
    
    .slide-info p {
        font-size: 0.75rem;
        line-height: 1.2;
    }
    
    .carousel-btn {
        width: 40px !important;
        height: 40px !important;
    }
    
    .service-header {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        padding: 15px !important;
    }
    
    .service-icon-small {
        margin: 0 auto;
    }
}

/* Otimização para orientação paisagem em mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .carousel-slides {
        height: 250px !important;
    }
    
    .slide-image {
        height: 50% !important;
    }
    
    .slide-info {
        height: 50% !important;
        padding: 10px !important;
    }
    
    .slide-info p {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
}

/* Melhorias de usabilidade para toque */
@media (hover: none) and (pointer: coarse) {
    /* Remover efeitos hover que não funcionam bem em touch */
    .carousel-slide:hover .slide-image img {
        transform: none !important;
    }
    
    .carousel-slide:hover .slide-overlay {
        opacity: 0.5 !important;
    }
    
    /* Aumentar área de toque para botões */
    .carousel-btn,
    .expand-btn {
        min-width: 44px;
        min-height: 44px;
    }
    
    /* Melhor feedback visual para toque */
    .carousel-btn:active {
        transform: translateY(-50%) scale(0.95) !important;
    }
    
    .expand-btn:active {
        transform: scale(0.95) !important;
    }
    
    /* Tags mais fáceis de tocar */
    .slide-tag {
        padding: 6px 12px;
    }
}

/* Prevenir scroll horizontal indesejado */
.carousel-container {
    overflow: hidden;
    width: 100%;
}

/* Suporte para dark mode automático */
@media (prefers-color-scheme: dark) {
    .carousel-service {
        background-color: #1a1a1a;
    }
    
    .slide-info {
        background-color: #2a2a2a;
    }
    
    .slide-info h4 {
        color: #e0e0e0;
    }
    
    .slide-info p {
        color: #b0b0b0;
    }
    
    .slide-tag {
        background-color: #333;
        color: #8ab4f8;
    }
}

/* Animações suaves para transições de slide */
.carousel-slide {
    transition: opacity 0.4s ease, transform 0.4s ease !important;
}

/* Garantir que imagens não distorçam */
.slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Loading state melhorado para carregamento de imagens */
.slide-image.loading {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Melhor contraste para acessibilidade */
.carousel-btn:focus,
.expand-btn:focus {
    outline: 2px solid var(--primary-blue);
    outline-offset: 2px;
}

/* Suporte para reduzir movimento */
@media (prefers-reduced-motion: reduce) {
    .carousel-slide {
        transition: opacity 0.2s ease !important;
    }
    
    .carousel-btn:hover,
    .expand-btn:hover {
        transform: none !important;
    }
}

/* ============================================
   PERFIL GOOGLE MEU NEGÓCIO - ESTILO EXATO
   BASEADO NO GOOGLE SEARCH / GOOGLE MAPS
   ============================================ */

.google-exact-profile {
    background-color: #ffffff;
    font-family: 'Google Sans', 'Inter', Roboto, Arial, sans-serif;
    color: #202124;
    line-height: 1.5;
    padding: 30px 0;
}

/* CONTAINER */
.google-exact-profile .container {
    max-width: 950px;
    margin: 0 auto;
    padding: 0 20px;
}

/* CABEÇALHO */
.g-header {
    margin-bottom: 24px;
}

.g-header-top {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 8px;
}

.g-business-name {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.g-business-name h1 {
    font-size: 28px;
    font-weight: 400;
    margin: 0;
    color: #202124;
    font-family: 'Google Sans', 'Inter', sans-serif;
}

.g-verified {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #1e8e3e;
    font-size: 14px;
    font-weight: 500;
}

.g-verified svg {
    vertical-align: middle;
}

.g-rating-header {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.g-rating-number {
    font-size: 24px;
    font-weight: 500;
    color: #202124;
}

.g-stars {
    color: #fbbc04;
    font-size: 20px;
    letter-spacing: 2px;
}

.g-star {
    font-size: 20px;
}

.g-reviews-count {
    color: #1a73e8;
    text-decoration: none;
    font-size: 14px;
}

.g-category {
    color: #5f6368;
    font-size: 14px;
    margin-top: 4px;
}

/* BOTÕES DE AÇÃO */
.g-action-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
    border-bottom: 1px solid #e8eaed;
    padding-bottom: 24px;
}

.g-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background-color: #ffffff;
    border: 1px solid #dadce0;
    border-radius: 40px;
    color: #1a73e8;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.2s;
}

.g-action-btn:hover {
    background-color: #f1f3f4;
    border-color: #d2d6da;
}

.g-call-btn {
    background-color: #1a73e8;
    border-color: #1a73e8;
    color: white;
}

.g-call-btn:hover {
    background-color: #185abc;
    border-color: #185abc;
}

.g-action-icon {
    font-size: 18px;
}

/* SEÇÃO DE INFORMAÇÕES */
.g-info-section {
    margin-bottom: 16px;
}

.g-info-row {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 14px;
    color: #3c4043;
}

.g-info-icon {
    width: 20px;
    text-align: center;
    color: #5f6368;
}

.g-info-text {
    flex: 1;
}

.g-phone-link {
    color: #1a73e8;
    text-decoration: none;
}

.g-status-open {
    color: #137333;
    font-weight: 500;
}

.g-dropdown-btn {
    background: none;
    border: none;
    color: #5f6368;
    cursor: pointer;
    font-size: 12px;
    padding: 0 4px;
}

.g-suggest-links {
    margin-top: 8px;
    margin-left: 32px;
    font-size: 13px;
}

.g-suggest-link {
    color: #5f6368;
    text-decoration: none;
}

.g-suggest-link:hover {
    color: #1a73e8;
}

.g-separator {
    color: #dadce0;
    margin: 0 8px;
}

/* INFORMAÇÕES AUSENTES */
.g-missing-info {
    margin: 24px 0;
    padding: 16px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.g-missing-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.g-missing-icon {
    font-size: 18px;
}

.g-missing-title {
    font-size: 14px;
    font-weight: 500;
    color: #202124;
}

.g-missing-item {
    color: #1a73e8;
    text-decoration: none;
    font-size: 14px;
    margin-left: 26px;
}

.g-missing-item:hover {
    text-decoration: underline;
}

/* ÁREA ATENDIDA */
.g-service-area {
    margin-bottom: 16px;
}

.g-service-row {
    display: flex;
    align-items: baseline;
    gap: 12px;
    font-size: 14px;
    color: #3c4043;
}

.g-service-icon {
    width: 20px;
    text-align: center;
    color: #5f6368;
}

/* AÇÕES ADICIONAIS */
.g-extra-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin: 24px 0;
}

.g-extra-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    color: #1a73e8;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    padding: 4px 0;
}

.g-extra-btn:hover {
    text-decoration: underline;
}

.g-extra-icon {
    font-size: 16px;
}

/* DIVISOR */
.g-divider {
    height: 1px;
    background-color: #e8eaed;
    margin: 24px 0;
}

/* SEÇÃO DE AVALIAÇÕES */
.g-reviews-section {
    margin-top: 24px;
}

.g-reviews-header {
    margin-bottom: 24px;
}

.g-reviews-title {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.g-reviews-main-title {
    font-size: 20px;
    font-weight: 500;
    color: #202124;
}

.g-reviews-badge {
    font-size: 20px;
    font-weight: 500;
    color: #202124;
}

.g-reviews-star {
    color: #fbbc04;
    font-size: 18px;
}

.g-reviews-total {
    color: #5f6368;
    font-size: 14px;
}

/* FILTROS DE PALAVRAS-CHAVE */
.g-keyword-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e8eaed;
}

.g-filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 8px 16px;
    background-color: #f8f9fa;
    border: 1px solid #dadce0;
    border-radius: 32px;
    color: #3c4043;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
}

.g-filter-btn.active {
    background-color: #e8f0fe;
    border-color: #1a73e8;
    color: #1a73e8;
}

.g-filter-btn:hover {
    background-color: #f1f3f4;
}

.g-filter-count {
    color: #5f6368;
    font-size: 12px;
    margin-left: 4px;
}

.g-more-filters {
    color: #1a73e8;
}

/* ORDENAR POR */
.g-sort-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: flex-end;
    margin-bottom: 20px;
}

.g-sort-label {
    color: #5f6368;
    font-size: 14px;
}

.g-sort-dropdown {
    position: relative;
    display: inline-block;
}

.g-sort-selected {
    color: #1a73e8;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    padding: 4px 8px;
}

.g-sort-icon {
    font-size: 12px;
    color: #5f6368;
}

.g-sort-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: white;
    border: 1px solid #dadce0;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 100;
    min-width: 180px;
}

.g-sort-dropdown:hover .g-sort-menu {
    display: block;
}

.g-sort-item {
    display: block;
    padding: 12px 16px;
    color: #3c4043;
    text-decoration: none;
    font-size: 14px;
}

.g-sort-item:hover {
    background-color: #f1f3f4;
}

/* LISTA DE AVALIAÇÕES */
.g-reviews-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* CARD DE AVALIAÇÃO */
.g-review-card {
    padding-bottom: 24px;
    border-bottom: 1px solid #e8eaed;
}

.g-reviewer {
    display: flex;
    gap: 12px;
    margin-bottom: 8px;
}

.g-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 500;
    font-size: 18px;
    flex-shrink: 0;
}

.g-reviewer-info {
    flex: 1;
}

.g-reviewer-name {
    font-weight: 600;
    color: #202124;
    font-size: 15px;
    margin-bottom: 2px;
}

.g-reviewer-badges {
    color: #5f6368;
    font-size: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.g-badge-local {
    background-color: #f1f3f4;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 11px;
}

.g-review-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    margin-left: 52px;
}

.g-review-stars {
    color: #fbbc04;
    font-size: 16px;
    letter-spacing: 2px;
}

.g-review-date {
    color: #5f6368;
    font-size: 12px;
}

.g-review-content {
    margin-left: 52px;
    margin-bottom: 12px;
    color: #3c4043;
    font-size: 14px;
    line-height: 1.5;
}

.g-review-content p {
    margin-bottom: 8px;
}

.g-read-more {
    color: #1a73e8;
    text-decoration: none;
    font-size: 13px;
}

.g-read-more:hover {
    text-decoration: underline;
}

/* REAÇÕES */
.g-review-reactions {
    margin-left: 52px;
    display: flex;
    gap: 16px;
}

.g-reaction-btn {
    display: flex;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    color: #5f6368;
    font-size: 12px;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 16px;
}

.g-reaction-btn:hover {
    background-color: #f1f3f4;
}

.g-reaction-icon {
    font-size: 14px;
}

.g-reaction-count {
    font-size: 12px;
}

/* RESPOSTA DO PROPRIETÁRIO */
.g-owner-reply {
    margin-top: 16px;
    margin-left: 52px;
    padding: 16px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.g-owner-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.g-owner-badge {
    background-color: #e8f0fe;
    color: #1a73e8;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 500;
}

.g-owner-name {
    font-weight: 600;
    color: #202124;
    font-size: 14px;
}

.g-reply-date {
    color: #5f6368;
    font-size: 12px;
}

.g-owner-content {
    color: #3c4043;
    font-size: 14px;
    line-height: 1.5;
}

.g-owner-content p {
    margin-bottom: 4px;
}

/* ASPECTOS POSITIVOS E SERVIÇOS */
.g-review-positive,
.g-review-services {
    margin-left: 52px;
    margin-top: 12px;
    margin-bottom: 12px;
    font-size: 13px;
}

.g-positive-label,
.g-services-label {
    font-weight: 600;
    color: #202124;
    margin-right: 8px;
}

.g-positive-text,
.g-services-text {
    color: #3c4043;
}

/* DESTAQUE PARA AVALIAÇÕES ESPECIAIS */
.g-featured-review {
    border-left: 4px solid #fbbc04;
    padding-left: 16px;
}

/* BOTÃO VER MAIS */
.g-view-more {
    margin-top: 32px;
    text-align: center;
}

.g-view-more-btn {
    display: inline-block;
    padding: 12px 32px;
    background-color: #ffffff;
    border: 1px solid #dadce0;
    border-radius: 32px;
    color: #1a73e8;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.2s;
}

.g-view-more-btn:hover {
    background-color: #f1f3f4;
}

/* CTA PARA AVALIAR */
.g-rate-cta {
    margin-top: 40px;
    padding: 24px;
    background: linear-gradient(135deg, #e8f0fe 0%, #ffffff 100%);
    border-radius: 16px;
    text-align: center;
}

.g-rate-cta p {
    color: #202124;
    font-size: 16px;
    margin-bottom: 16px;
}

.g-rate-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background-color: #1a73e8;
    border-radius: 40px;
    color: white;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.2s;
}

.g-rate-btn:hover {
    background-color: #185abc;
}

/* RESPONSIVIDADE */
@media (max-width: 768px) {
    .g-header-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .g-business-name h1 {
        font-size: 24px;
    }
    
    .g-action-buttons {
        flex-direction: column;
    }
    
    .g-action-btn {
        width: 100%;
        justify-content: center;
    }
    
    .g-review-meta,
    .g-review-content,
    .g-review-reactions,
    .g-owner-reply,
    .g-review-positive,
    .g-review-services {
        margin-left: 0;
    }
    
    .g-reviewer {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .g-business-name h1 {
        font-size: 20px;
    }
    
    .g-keyword-filters {
        gap: 6px;
    }
    
    .g-filter-btn {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .g-reviews-title {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ESTILOS PARA O ÍCONE/LOGOTIPO DA EMPRESA */
.g-business-name {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.g-business-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    background-color: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border: 2px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.g-company-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.g-name-wrapper {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.g-name-wrapper h1 {
    font-size: 28px;
    font-weight: 400;
    margin: 0;
    color: #202124;
    font-family: 'Google Sans', 'Inter', sans-serif;
}

/* AJUSTE PARA A SEÇÃO DE INFORMAÇÕES AUSENTES */
.g-no-items-message {
    color: #5f6368;
    font-size: 14px;
    margin-left: 26px;
    font-style: italic;
}

/* RESPONSIVIDADE PARA O ÍCONE */
@media (max-width: 768px) {
    .g-business-icon {
        width: 50px;
        height: 50px;
    }
    
    .g-name-wrapper h1 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .g-business-icon {
        width: 48px;
        height: 48px;
    }
    
    .g-name-wrapper h1 {
        font-size: 20px;
    }
}