/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar {
    padding: 1rem 0;
}

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

.logo {
    color: #6c757d;
    font-size: 1.8rem;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 45px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #e91e63;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #e91e63;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    color: white;
    padding: 150px 0 100px;
    text-align: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('frente.JPG');
    background-size: cover;
    background-position: center 60%;
    background-repeat: no-repeat;
    background-attachment: fixed;
    opacity: 0.8;
    z-index: -2;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.2) 0%, rgba(52, 73, 94, 0.2) 100%);
    z-index: -1;
}



.hero-content {
    position: relative;
    z-index: 2;
}



.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 500;
    animation: fadeInUp 1s ease 0.2s both;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.4s both;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.5s both;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.95);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(233, 30, 99, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.badge i {
    font-size: 1.1rem;
    color: #e91e63;
}

.badge span {
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.9rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.7s both;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: #25d366;
    color: white;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary i.fa-whatsapp {
    font-size: 1.3em;
    color: white;
}

.btn-primary:hover {
    background: #128c7e;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

.btn-primary:hover i.fa-whatsapp {
    transform: scale(1.1);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #6c757d;
    transform: translateY(-2px);
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Special styling for services section */
.services .section-header p {
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
    color: #666;
}

/* About Section */
.about {
    padding: 100px 0;
    background: #f8f9fa;
}

.about-text h3 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.about-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.feature i {
    font-size: 2rem;
    color: #e91e63;
    flex-shrink: 0;
}

.feature h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.feature p {
    color: #666;
    font-size: 0.95rem;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: white;
}

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



.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #6c757d, #495057);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

/* Service Professional Image */
.service-image {
    background: transparent !important;
    padding: 0 !important;
    overflow: hidden;
    border: 3px solid #28a745;
}

.service-professional-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.service-card:hover .service-professional-img {
    transform: scale(1.1);
    filter: brightness(1.1);
}

.service-card h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-card p {
    color: #666;
    line-height: 1.7;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: #f8f9fa;
}

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

.contact-map {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    height: fit-content;
}

.contact-map iframe {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-info-all {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-map-cta {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.contact-icon a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 50%;
    background: linear-gradient(135deg, #6c757d, #495057);
    transition: all 0.3s ease;
}

.contact-icon a:hover {
    transform: scale(1.1);
    background: linear-gradient(135deg, #495057, #343a40);
}

.contact-icon i {
    font-size: 1.5rem;
    color: white;
}

/* Estilos específicos para cada ícone */
.contact-icon .fa-location-dot {
    color: #ea4335;
}

.contact-icon .fa-whatsapp {
    color: #25d366;
}

/* Tema Outlook */
.outlook-theme {
    color: #0078d4 !important;
}

.outlook-theme i {
    color: #0078d4 !important;
}

.outlook-theme:hover {
    color: #106ebe !important;
}

.outlook-theme:hover i {
    color: #106ebe !important;
}



.contact-icon .fa-instagram {
    color: #e4405f;
}

/* Links de contato */
.map-link {
    color: #ea4335 !important;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.map-link:hover {
    color: #d62516 !important;
    transform: translateY(-2px);
}

.map-link i {
    color: #ea4335 !important;
}

.map-link:hover i {
    color: #d62516 !important;
}

.whatsapp-link {
    color: #25d366;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.whatsapp-link:hover {
    color: #128C7E;
    transform: translateY(-2px);
}

.email-link {
    color: #0078d4;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.email-link:hover {
    color: #106ebe;
    transform: translateY(-2px);
}

.instagram-link {
    color: #e4405f;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.instagram-link:hover {
    color: #d6214d;
    transform: translateY(-2px);
}

.contact-details h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-details p {
    color: #666;
    margin-bottom: 0.5rem;
}

.whatsapp-link {
    color: #25d366;
    font-weight: 600;
    text-decoration: none;
}

.whatsapp-link:hover {
    text-decoration: underline;
}

.email-link {
    color: #e91e63;
    font-weight: 600;
    text-decoration: none;
    word-break: break-all;
}

.email-link:hover {
    text-decoration: underline;
    color: #c2185b;
}

.phone-link {
    color: #0078d4;
    text-decoration: none !important;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.phone-link:hover {
    color: #106ebe;
    text-decoration: none !important;
    transform: translateY(-2px);
}


/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #e91e63;
}

.footer-section p {
    color: #bdc3c7;
    margin-bottom: 0.5rem;
}

/* Ajuste do email no footer */
.footer-section .email-link {
    font-size: 0.95rem;
    font-weight: normal;
}

.footer-section .email-link i {
    font-size: 0.9rem;
}

.footer-section a {
    color: #e91e63;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: #bdc3c7;
}

.developer-link {
    color: #28a745;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.developer-link:hover {
    color: #20c997;
    text-shadow: 0 0 8px rgba(40, 167, 69, 0.4);
    text-decoration: underline;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float a:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

/* Estilo específico para o botão do WhatsApp */
.whatsapp-button {
    background: #25d366 !important;
    border: none !important;
    transition: all 0.3s ease !important;
}

.whatsapp-button:hover {
    background: #128c7e !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3) !important;
}

.whatsapp-button i {
    font-size: 1.4em !important;
    color: white !important;
    transition: transform 0.3s ease !important;
}

.whatsapp-button:hover i {
    transform: scale(1.1) !important;
}

.whatsapp-button span {
    color: white !important;
    font-weight: 600 !important;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-content {
        gap: 2rem;
    }
}

/* Responsive - Tablets */
@media (max-width: 1024px) and (min-width: 769px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-badges {
        gap: 1rem;
        justify-content: center;
    }

    .badge {
        padding: 0.5rem 1rem;
    }

    .badge span {
        font-size: 0.8rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .services .section-header p {
        font-size: 1rem;
        line-height: 1.5;
        padding: 0 1.5rem;
        max-width: 100%;
    }

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

    .features {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-bottom p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .developer-link {
        display: inline-block;
        margin-top: 0.3rem;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float a {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 120px 0 80px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .service-card,
    .feature,
    .contact-item {
        padding: 1.5rem;
    }

    .contact-cta {
        padding: 2rem;
    }

    .contact-cta h3 {
        font-size: 1.5rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Google Reviews Section */
.google-reviews {
    padding: 100px 0;
    background: #f8f9fa;
}

.google-rating-summary {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.rating-info {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.google-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    color: #4285f4;
    font-weight: 600;
}

.google-logo i {
    font-size: 2rem;
}

.rating-details {
    text-align: left;
}

.rating-score {
    font-size: 3rem;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1;
}

.rating-stars {
    color: #ffc107;
    font-size: 1.5rem;
    margin: 0.5rem 0;
}

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

.rating-count {
    color: #666;
    font-size: 1rem;
}

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

.review-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border-left: 4px solid #4285f4;
}

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

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

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

.reviewer-details h4 {
    color: #2c3e50;
    margin-bottom: 0.25rem;
    font-weight: 600;
    font-size: 1rem;
}

.reviewer-details span {
    color: #666;
    font-size: 0.85rem;
}

.review-stars {
    color: #ffc107;
    font-size: 1rem;
    flex-shrink: 0;
}

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

.review-content p {
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

/* WidgetPack Google Reviews */
.widgetpack-reviews {
    margin-top: 2rem;
}

.reviews-disclaimer {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(66, 133, 244, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(66, 133, 244, 0.2);
}

.reviews-disclaimer p {
    color: #4285f4;
    font-weight: 500;
    margin: 0;
    font-size: 0.95rem;
}

.reviews-disclaimer i {
    margin-right: 0.5rem;
}

.google-reviews-integration {
    margin-bottom: 2rem;
}

.reviews-widget-placeholder {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 2px dashed #e0e6ed;
}

.widget-info {
    padding: 3rem 2rem;
    text-align: center;
}

.google-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #4285f4;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.google-badge i {
    font-size: 1.3rem;
}

.live-reviews-notice {
    margin-bottom: 2rem;
}

.live-reviews-notice p:first-child {
    color: #2c3e50;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.live-reviews-notice p:last-child {
    color: #666;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.setup-note {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #f8f9fa;
    color: #666;
    padding: 0.8rem 1.2rem;
    border-radius: 20px;
    font-size: 0.9rem;
    border: 1px solid #e0e6ed;
}

.setup-note i {
    color: #4285f4;
}

/* WidgetPack Styles */
.widgetpack-container {
    margin-bottom: 2rem;
}

.simple-reviews-display {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.review-header {
    background: linear-gradient(135deg, #4285f4 0%, #34a853 100%);
    color: white;
    padding: 2rem;
    text-align: center;
}

.business-info h3 {
    margin: 0 0 1rem 0;
    font-size: 1.8rem;
    font-weight: 600;
}

.rating-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.stars {
    color: #ffc107;
    font-size: 1.8rem;
    letter-spacing: 2px;
}

.rating-number {
    font-size: 2rem;
    font-weight: 700;
}

.review-count {
    opacity: 0.9;
    font-size: 1rem;
}

.reviews-list {
    padding: 2rem;
}

.review-item {
    border-bottom: 1px solid #e9ecef;
    padding: 1.5rem 0;
}

.review-item:last-child {
    border-bottom: none;
}

.reviewer-name {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.review-stars {
    color: #ffc107;
    font-size: 1rem;
    margin-bottom: 0.8rem;
    letter-spacing: 1px;
}

.review-text {
    color: #555;
    line-height: 1.6;
    margin-bottom: 0.8rem;
    font-style: italic;
}

.review-date {
    color: #999;
    font-size: 0.9rem;
}

.google-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    background: #f8f9fa;
    flex-wrap: wrap;
}

.btn-google-review {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-google-review {
    background: #34a853;
    /* Verde do Google */
    color: white;
}

.btn-google-review:hover {
    background: #2d8745;
    /* Verde mais escuro */
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 168, 83, 0.3);
}

.btn-google-review i {
    font-size: 1.2em;
}

.upgrade-note {
    margin-top: 2rem;
}

.note-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    border-left: 4px solid #4285f4;
}

.note-card h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.note-card h4 i {
    color: #4285f4;
}

.note-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.note-card a {
    color: #4285f4;
    text-decoration: none;
    font-weight: 600;
}

.note-card a:hover {
    text-decoration: underline;
}

.reviews-fallback {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.fallback-card {
    padding: 3rem 2rem;
    text-align: center;
}

.fallback-icon {
    font-size: 3rem;
    color: #4285f4;
    margin-bottom: 1.5rem;
}

.fallback-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.fallback-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.real-reviews-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.real-reviews-stats .stat {
    text-align: center;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    min-width: 120px;
}

.real-reviews-stats .stat strong {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #4285f4;
    margin-bottom: 0.5rem;
}

.real-reviews-stats .stat span {
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Security & Technology Section */
.security-technology {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.security-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid #28a745;
}

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

.security-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #28a745, #20c997);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.security-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.security-card p {
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Tecnologias e Parceiros */
.tech-partners {
    margin-top: 4rem;
    padding: 3rem 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

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

.tech-header h3 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.tech-header p {
    color: #6c757d;
    font-size: 1rem;
    opacity: 0.8;
}

.partners-carousel {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    padding: 2rem 0;
    animation: fadeInUp 1s ease-out;
}

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

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

.partner-logo {
    position: relative;
    width: 140px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1rem;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    cursor: pointer;
    opacity: 0;
    animation: slideInScale 0.6s ease-out forwards;
}

.partner-logo:nth-child(1) {
    animation-delay: 0.1s;
}

.partner-logo:nth-child(2) {
    animation-delay: 0.2s;
}

.partner-logo:nth-child(3) {
    animation-delay: 0.3s;
}

.partner-logo:nth-child(4) {
    animation-delay: 0.4s;
}

.partner-logo:nth-child(5) {
    animation-delay: 0.5s;
}

.partner-logo:nth-child(6) {
    animation-delay: 0.6s;
}

@keyframes slideInScale {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.8);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.partner-logo:hover {
    transform: translateY(-8px) scale(1.05);
    background: white;
    border-color: #28a745;
    box-shadow: 0 15px 35px rgba(40, 167, 69, 0.2);
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(0.3) opacity(0.8);
    transition: filter 0.3s ease;
}

.partner-logo:hover img {
    filter: grayscale(0) opacity(1);
    animation: none;
}

/* Breathing effect for logos */
.partner-logo img {
    animation: breathe 4s ease-in-out infinite;
    animation-delay: calc(var(--delay, 0) * 0.5s);
}

.partner-logo:nth-child(1) img {
    --delay: 1;
}

.partner-logo:nth-child(2) img {
    --delay: 2;
}

.partner-logo:nth-child(3) img {
    --delay: 3;
}

.partner-logo:nth-child(4) img {
    --delay: 4;
}

.partner-logo:nth-child(5) img {
    --delay: 5;
}

.partner-logo:nth-child(6) img {
    --delay: 6;
}

@keyframes breathe {

    0%,
    100% {
        transform: scale(1);
        filter: grayscale(0.3) opacity(0.8);
    }

    50% {
        transform: scale(1.02);
        filter: grayscale(0.1) opacity(0.9);
    }
}

.tech-benefits {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    padding-top: 2rem;
    border-top: 1px solid #e9ecef;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 25px;
    color: #495057;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    transform: translateY(-3px);
}

.benefit-item i {
    font-size: 1.1rem;
    color: #28a745;
    transition: color 0.3s ease;
}

.benefit-item:hover i {
    color: white;
}

/* Responsive for Security Section */
@media (max-width: 768px) {
    .security-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .tech-partners {
        margin-top: 3rem;
        padding: 2rem 1rem;
    }

    .tech-header h3 {
        font-size: 1.5rem;
    }

    .partners-carousel {
        gap: 2rem;
        padding: 1.5rem 0;
    }

    .partner-logo {
        width: 120px;
        height: 80px;
    }

    .tech-benefits {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .benefit-item {
        width: 100%;
        justify-content: center;
        max-width: 300px;
    }
}

/* Statistics Section */
.statistics {
    padding: 80px 0;
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 1rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Professional enhancements */
.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(233, 30, 99, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(233, 30, 99, 0.1);
    position: relative;
    overflow: hidden;
    max-width: 400px;
    width: 100%;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #e91e63, #c2185b);
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(233, 30, 99, 0.2);
    border-color: #e91e63;
}

.contact-cta {
    background: linear-gradient(135deg, #6c757d, #495057);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(108, 117, 125, 0.2);
    color: white;
}

.contact-cta h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.contact-cta .btn-primary {
    background: white;
    color: #e91e63;
    border: 2px solid white;
}

.contact-cta .btn-primary:hover {
    background: transparent;
    color: white;
    border-color: white;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: white;
}

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

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.1);
    border-color: rgba(233, 30, 99, 0.2);
}

.faq-question {
    padding: 1.5rem;
    background: #f8f9fa;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(233, 30, 99, 0.05);
}

.faq-question h4 {
    margin: 0;
    color: #2c3e50;
    font-weight: 600;
    font-size: 1.1rem;
}

.faq-question i {
    color: #e91e63;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

/* Responsive improvements for new sections */
@media (max-width: 768px) {
    .google-rating-summary {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .rating-info {
        flex-direction: column;
        gap: 1rem;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-number {
        font-size: 2.5rem;
    }
}

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

    .google-rating-summary {
        padding: 1.5rem;
    }

    .rating-score {
        font-size: 2.5rem;
    }

    .google-logo {
        font-size: 1.2rem;
    }

    .google-logo i {
        font-size: 1.5rem;
    }

    .review-card {
        padding: 1.5rem;
    }

    .reviewer-avatar {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .hero-badges {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }

    .badge {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
}

/* Selection Color */
::selection {
    background: #6c757d;
    color: white;
}

/* Reviews Section - Sistema de Avaliações Google */
.reviews-section {
    padding: 100px 0;
    background: #f8f9fa;
}

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

.reviews-section .section-header h2 {
    color: #2c3e50;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.reviews-section .section-header p {
    color: #666;
    font-size: 1.1rem;
    opacity: 0.8;
}

/* Simple Reviews Display */
.simple-reviews-display {
    max-width: 1200px;
    margin: 0 auto;
}

.review-header {
    background: linear-gradient(135deg, #e91e63 0%, #8e9aaf 100%);
    color: white;
    padding: 2rem;
    text-align: center;
    position: relative;
    border-radius: 15px;
    margin-bottom: 2rem;
    box-shadow: 0 6px 25px rgba(233, 30, 99, 0.12);
}

.business-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.business-info h3 {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 600;
    flex: 1;
    text-align: left;
}

.rating-display {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.8rem 1.2rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stars {
    color: #ffc107;
    font-size: 1.6rem;
    letter-spacing: 2px;
    text-shadow: 0 1px 3px rgba(255, 193, 7, 0.5);
}

.rating-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
}

.review-count {
    opacity: 0.95;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
}

.reviews-list {
    display: flex;
    gap: 2rem;
    padding: 0;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE */
}

.reviews-list::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari */
}

.reviews-carousel-container {
    position: relative;
    overflow: hidden;
}

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

.nav-button {
    background: linear-gradient(135deg, #e91e63 0%, #8e9aaf 100%);
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    color: white;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 12px rgba(233, 30, 99, 0.2);
}

.nav-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 18px rgba(233, 30, 99, 0.25);
    background: linear-gradient(135deg, #c2185b 0%, #7a8699 100%);
}

.nav-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* Personalizações Liana + Google - Cards Individuais */
#wp-google-reviews .review-item {
    background: white;
    border: 1px solid #e9ecef;
    border-left: 4px solid #e91e63;
    border-radius: 15px;
    padding: 1.5rem;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    margin: 0;
    flex: 0 0 calc(33.333% - 1.33rem);
    min-width: 320px;
}

#wp-google-reviews .review-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.12);
    border-left-color: #8e9aaf;
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.02) 0%, rgba(142, 154, 175, 0.02) 100%);
}

#wp-google-reviews .reviewer-name {
    font-weight: 700;
    color: #e91e63;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

#wp-google-reviews .reviewer-name::before {
    content: attr(data-initial);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #e91e63 0%, #8e9aaf 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.1rem;
    flex-shrink: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

#wp-google-reviews .review-stars {
    color: #ffc107;
    font-size: 1rem;
    margin-bottom: 0.8rem;
    letter-spacing: 1px;
    text-shadow: 0 1px 2px rgba(255, 193, 7, 0.3);
}

#wp-google-reviews .review-text {
    color: #555;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-style: normal;
    position: relative;
    padding: 1rem;
    background: rgba(142, 154, 175, 0.05);
    border-radius: 10px;
    border-left: 3px solid #8e9aaf;
}

#wp-google-reviews .review-date {
    color: #8e9aaf;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

#wp-google-reviews .review-date::before {
    content: '📅';
    font-size: 0.8rem;
}

.google-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 2rem 0;
    margin-top: 2rem;
    flex-wrap: wrap;
}

/* Botão Google Reviews - Estilo Profissional */
.btn-google {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.8rem !important;
    padding: 16px 32px !important;
    border-radius: 12px !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    font-size: 1rem !important;
    transition: all 0.3s ease !important;
    background: linear-gradient(135deg, #8e9aaf 0%, #6c757d 100%) !important;
    color: white !important;
    border: 2px solid transparent !important;
    box-shadow: 0 4px 20px rgba(142, 154, 175, 0.2) !important;
}

.btn-google:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 25px rgba(142, 154, 175, 0.4) !important;
    background: linear-gradient(135deg, #495057 0%, #343a40 100%) !important;
    color: white !important;
    text-decoration: none !important;
}

.btn-google i,
.btn-google span,
.btn-google * {
    color: white !important;
    font-weight: 600 !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5) !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.btn-google:hover i,
.btn-google:hover span,
.btn-google:hover * {
    color: white !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.btn-google:focus {
    outline: none !important;
    box-shadow: 0 6px 25px rgba(142, 154, 175, 0.4), 0 0 0 3px rgba(142, 154, 175, 0.5) !important;
    color: white !important;
}

.btn-google:active {
    transform: translateY(0px) !important;
    box-shadow: 0 2px 10px rgba(142, 154, 175, 0.3) !important;
    color: white !important;
}

.btn-google i {
    font-size: 1.2em !important;
}

/* Loading e Error States */
.reviews-loading {
    text-align: center;
    padding: 3rem 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.loading-spinner {
    border: 3px solid #f3f3f3;
    border-top: 3px solid #e91e63;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

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

    100% {
        transform: rotate(360deg);
    }
}

.reviews-error {
    text-align: center;
    padding: 2rem;
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffeaa7;
    border-radius: 10px;
    margin: 1rem 0;
}

/* Responsive para seção de avaliações */
@media (max-width: 768px) {
    .reviews-section .section-header h2 {
        font-size: 2rem;
    }

    .review-header {
        padding: 1.5rem;
    }

    .business-info h3 {
        font-size: 1.5rem;
    }

    .business-title-row {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        text-align: center;
    }

    .business-info h3 {
        text-align: center;
    }

    .rating-display {
        gap: 0.6rem;
        padding: 0.6rem 1rem;
    }

    .reviews-list {
        gap: 1.5rem;
        padding: 0 1rem;
    }

    #wp-google-reviews .review-item {
        flex: 0 0 calc(50% - 1rem);
        min-width: 280px;
    }

    #wp-google-reviews .review-item {
        padding: 1.2rem;
    }

    #wp-google-reviews .reviewer-name::before {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .google-actions {
        padding: 1.5rem 1rem;
        flex-direction: column;
        align-items: center;
    }

    .btn-google {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .reviews-section {
        padding: 60px 0;
    }

    .reviews-section .section-header h2 {
        font-size: 1.8rem;
        padding: 0 1rem;
    }

    .simple-reviews-display {
        padding: 0 0.5rem;
    }

    .review-header {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }

    .business-info h3 {
        font-size: 1.3rem;
    }

    .rating-number {
        font-size: 1.5rem;
    }

    .stars {
        font-size: 1.5rem;
    }

    .reviews-list {
        gap: 1rem;
        padding: 0 0.5rem;
    }

    #wp-google-reviews .review-item {
        padding: 1rem;
        border-left-width: 3px;
    }

    #wp-google-reviews .reviewer-name {
        font-size: 1rem;
        gap: 0.6rem;
    }

    #wp-google-reviews .reviewer-name::before {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }

    #wp-google-reviews .review-text {
        padding: 0.8rem;
        font-size: 0.95rem;
    }

    #wp-google-reviews .review-item {
        flex: 0 0 calc(100% - 1rem);
        min-width: 260px;
    }

    .nav-button {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}