/* Reset e Estilos Gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #8b0000;
    --secondary-color: #1a1a1a;
    --accent-color: #a52a2a;
    --text-color: #333;
    --light-text: #fff;
    --light-bg: #f9f9f9;
    --dark-bg: #1a0505;
    --border-color: #e0e0e0;
    --transition: all 0.3s ease;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --luxury-gradient: linear-gradient(135deg, #8b0000 0%, #a52a2a 100%);
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: #fff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.3;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    position: relative;
    margin-bottom: 2rem;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--primary-color);
}

.section-header h2::after {
    left: 50%;
    transform: translateX(-50%);
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    font-weight: 300;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
}

/* Botões */
.btn-primary, .btn-secondary, .btn-submit {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 0;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    cursor: pointer;
    font-size: 0.9rem;
    border: none;
}

.btn-primary {
    background: var(--luxury-gradient);
    color: var(--light-text);
    box-shadow: var(--box-shadow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--light-text);
}

.btn-submit {
    background: var(--luxury-gradient);
    color: var(--light-text);
    width: 100%;
    font-weight: 600;
}

.btn-submit:hover {
    background: var(--secondary-color);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 0.8rem 0;
    transition: var(--transition);
}

.header.scrolled {
    padding: 0.5rem 0;
    background: rgba(255, 255, 255, 0.98);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    position: relative;
}

.logo img {
    height: 100px;
    padding: 0;
}

.main-nav ul {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin-top: 10px;
}

.main-nav a {
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.main-nav a:hover::after {
    width: 100%;
}

.btn-contato {
    background: transparent;
    color: inherit;
    padding: 0.5rem 0;
    border: none;
}

.btn-contato:hover {
    background: transparent;
    color: inherit;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 700px;
    position: relative;
    display: flex;
    align-items: center;
    color: var(--light-text);
    margin-top: 0;
    padding-top: 120px;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    max-width: none;
    min-height: 100%;
}

.hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero h1 {
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero h1 span {
    color: var(--primary-color);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    font-weight: 300;
}

/* Features Section */
.why-choose {
    background-color: var(--light-bg);
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: #fff;
    padding: 2.5rem 2rem;
    border-radius: 0;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    text-align: center;
    border-bottom: 3px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-bottom: 3px solid var(--primary-color);
}

.feature-card .icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--luxury-gradient);
    border-radius: 50%;
    color: var(--light-text);
}

.feature-card .icon i {
    font-size: 2rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
}

/* Results Section */
.results {
    background: url('../img/Design-sem-nome-1-1024x576.png') no-repeat center center/cover;
    position: relative;
    color: var(--light-text);
}

.results::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
}

.results .container {
    position: relative;
    z-index: 2;
}

.results-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.result-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.result-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
}

.percentage {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.result-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.chart {
    margin-top: 2rem;
}

/* Testimonials Section */
.testimonials {
    background-color: #fff;
    position: relative;
    padding: 5rem 0;
    overflow: hidden;
}

.testimonials .container {
    position: relative;
    overflow: visible;
    max-width: 1100px;
    padding: 0 2rem;
}

.testimonials .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.testimonials .gold-accent {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 0.2rem;
    color: #0c2c4f;
    text-align: center;
}

.title-underline {
    height: 3px;
    width: 100px;
    background-color: #0c2c4f;
    margin: 0.5rem auto 2.5rem;
    position: relative;
}

.title-underline:before {
    content: '';
    position: absolute;
    top: 0;
    left: 25%;
    width: 50%;
    height: 100%;
    background-color: #8b0000;
}

.testimonial-cards {
    display: flex;
    flex-wrap: nowrap;
    gap: 2rem;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 1rem 2rem;
    position: relative;
    margin: 0;
    background-color: transparent;
    border-radius: 0;
}

.testimonial-cards::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    flex: 0 0 360px;
    min-width: 360px;
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 4px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.testimonial-avatar {
    position: relative;
    width: 60px;
    height: 60px;
    margin-right: 1rem;
    flex-shrink: 0;
    border-radius: 50%;
    overflow: hidden;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.google-icon {
    position: absolute;
    bottom: -5px;
    right: -5px;
    width: 24px;
    height: 24px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.google-icon img {
    width: 16px;
    height: 16px;
}

.testimonial-author {
    flex-grow: 1;
}

.testimonial-author h3 {
    font-size: 1.1rem;
    margin: 0 0 0.3rem;
    color: #333;
}

.testimonial-date {
    font-size: 0.8rem;
    color: #777;
    margin: 0 0 0.5rem;
}

.testimonial-stars {
    color: #FFB900;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.testimonial-stars i {
    margin-right: 2px;
}

.testimonial-stars .verified {
    color: #4285f4;
    margin-left: 5px;
    font-size: 0.85rem;
}

.testimonial-content {
    color: #333;
    font-size: 0.95rem;
    line-height: 1.7;
    flex-grow: 1;
}

.testimonial-content p {
    margin-bottom: 1rem;
}

.testimonial-more {
    color: #666;
    font-size: 0.85rem;
    text-decoration: none;
    display: inline-block;
    margin-top: auto;
}

.testimonial-more:hover {
    text-decoration: underline;
    color: #0c2c4f;
}

.testimonial-navigation {
    position: absolute;
    width: calc(100% + 100px);
    top: 50%;
    left: -50px;
    transform: translateY(-50%) !important;
    z-index: 2;
    pointer-events: none;
    display: flex;
    justify-content: space-between;
    padding: 0;
    transition: none !important;
    animation: none !important;
    will-change: auto;
}

.nav-arrow {
    all: initial;
    position: absolute;
    width: 50px;
    height: 50px;
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: auto;
    top: 50%;
    transform: translateY(-50%) !important;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    transition: background-color 0.3s ease, color 0.3s ease;
    animation: none !important;
    will-change: auto;
}

.nav-arrow:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-50%) !important;
}

.nav-arrow.prev {
    left: -25px;
}

.nav-arrow.next {
    right: -25px;
}

.nav-arrow i {
    color: inherit;
    font-size: 1.2rem;
    animation: none !important;
    transform: none !important;
    transition: none !important;
}

/* Media Queries para Depoimentos */

@media (max-width: 992px) {
    .testimonial-cards {
        flex-wrap: nowrap;
        padding: 1rem 0;
        margin: 0;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
    }
    
    .testimonial-card {
        flex: 0 0 calc(85% - 1rem);
        scroll-snap-align: start;
        margin-right: 1rem;
    }
    
    .testimonial-navigation {
        display: none;
    }
}

@media (max-width: 768px) {
    .testimonial-card {
        flex: 0 0 90%;
        scroll-snap-align: center;
        margin-right: 1rem;
    }
    
    .testimonial-cards {
        padding: 1rem 1rem;
    }
    
    .testimonials .section-header:after {
        content: "〈 Deslize 〉";
        display: block;
        text-align: center;
        font-size: 0.8rem;
        color: #8b0000;
        margin-top: 0.5rem;
        font-style: italic;
        opacity: 0.7;
    }
}

@media (max-width: 768px) {
    .testimonial-card {
        flex: 0 0 85%;
        scroll-snap-align: center;
        margin-right: 1rem;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        border: none;
    }
    
    .testimonial-cards {
        padding: 1.5rem 0.5rem;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        display: flex;
        flex-wrap: nowrap;
        gap: 1rem;
        position: relative;
    }
    
    .testimonial-cards::after {
        content: "";
        flex: 0 0 0.5rem;
    }
    
    /* Dica visual de deslize */
    .testimonials .section-header:after {
        content: "〈 Deslize para ver mais 〉";
        display: block;
        text-align: center;
        font-size: 0.8rem;
        color: #8b0000;
        margin-top: 0.5rem;
        font-style: italic;
        opacity: 0.7;
        letter-spacing: 0.5px;
    }
    
    /* Melhorar espaçamento para melhor experiência de toque */
    .testimonial-header {
        padding: 1rem 1rem 0.5rem;
    }
    
    .testimonial-content {
        padding: 0.5rem 1rem 1rem;
    }
}

/* About Section */
.about {
    background-color: var(--light-bg);
}

.about-image {
    background: transparent;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    background: transparent;
}

.about-text h2::after {
    left: 0;
    transform: none;
}

.about-image img {
    width: 100%;
    box-shadow: none;
    background: transparent;
}

.about-logo {
    max-width: 300px;
    margin: 0 auto;
    display: block;
    padding: 0;
    background: transparent !important;
    box-shadow: none !important;
}

/* CTA Section */
.cta {
    background: var(--luxury-gradient);
    color: var(--light-text);
    text-align: center;
    padding: 5rem 0;
}

.cta h2 {
    margin-bottom: 1rem;
}

.cta h2::after {
    display: none;
}

.cta p {
    margin-bottom: 2rem;
    font-size: 1.2rem;
}

.cta .btn-primary {
    background: var(--light-text);
    color: var(--primary-color);
}

.cta .btn-primary:hover {
    background: var(--secondary-color);
    color: var(--light-text);
}

/* Contact Section */
.contact {
    background-color: #fff;
}

.contact-content {
    max-width: 700px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--border-color);
    background: var(--light-bg);
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(184, 134, 11, 0.2);
}

/* Footer */
.footer {
    background: var(--dark-bg);
    color: var(--light-text);
    padding: 5rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo img {
    height: 80px;
    margin-bottom: 1rem;
}

.footer-logo p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
}

.footer-contact p {
    margin-bottom: 0.5rem;
}

.footer-contact a {
    color: var(--light-text);
    opacity: 0.8;
}

.footer-contact a:hover {
    color: var(--primary-color);
    opacity: 1;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--light-text);
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Responsividade */
@media (max-width: 992px) {
    h1 {
        font-size: 2.8rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }
    
    .hero {
        min-height: 600px;
        padding-top: 100px;
    }
    
    .video-background video {
        object-position: center;
        height: 100%;
        width: auto;
        min-width: 100%;
    }
    
    .feature-card, .result-card, .testimonial {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .hero {
        min-height: 500px;
    }
    
    .video-background video {
        object-position: center;
        height: 100%;
        width: auto;
        min-width: 100%;
        transform: scale(1.2);
    }
    
    .btn-primary, .btn-secondary {
        padding: 12px 20px;
    }
}

/* Serviços Section */
.services {
    background-color: var(--light-bg);
    padding: 5rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 0;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.service-icon::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
    bottom: -10px;
    left: 0;
}

.service-card h3 {
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.service-card p {
    margin-bottom: 1.5rem;
    color: #666;
}

.service-features {
    margin-top: auto;
    padding-left: 1.2rem;
}

.service-features li {
    margin-bottom: 0.7rem;
    position: relative;
    font-size: 0.95rem;
    color: #555;
}

.service-features li::before {
    content: '';
    position: absolute;
    left: -1.2rem;
    top: 0.5rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary-color);
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* ===============================================
   ELEMENTOS DE LUXO
   =============================================== */

/* Elementos de Luxo para Site Imobiliário */

/* Efeitos de Scroll Sofisticados */
.scroll-progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: transparent;
    z-index: 2000;
}

.scroll-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    width: 0;
}

/* Detalhes Dourados */
.gold-accent {
    position: relative;
}

.gold-accent::before {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #8b0000, #d4af37);
    bottom: -10px;
    left: 0;
}

.section-header h2.gold-accent::before {
    left: 50%;
    transform: translateX(-50%);
}

/* Cartões de Recursos Luxuosos */
.feature-card {
    border: 1px solid rgba(139, 0, 0, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

/* Efeitos de Hover Elegantes */
.btn-primary, .btn-secondary {
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
}

.btn-primary::after, .btn-secondary::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: #fff;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s ease;
}

.btn-primary:hover::after, .btn-secondary:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Depoimentos Elegantes */
.testimonial {
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.testimonial::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.testimonial:hover::after {
    transform: scaleX(1);
}

/* Animações Sutis */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

/* Efeitos de Texto */
.luxury-text-effect {
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

/* Bordas Elegantes */
.elegant-border {
    border: 1px solid rgba(139, 0, 0, 0.2);
    position: relative;
}

.elegant-border::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 1px solid rgba(139, 0, 0, 0.2);
    pointer-events: none;
}

/* Efeito de Imagem Luxuosa */
.luxury-image {
    position: relative;
    overflow: hidden;
}

.luxury-image img {
    transition: transform 0.8s ease;
}

.luxury-image:hover img {
    transform: scale(1.05);
}

.luxury-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(139, 0, 0, 0.1), rgba(139, 0, 0, 0.3));
    opacity: 0;
    transition: opacity 0.5s ease;
}

.luxury-image:hover::after {
    opacity: 1;
}

/* Efeito de Tipografia Elegante */
.elegant-title {
    letter-spacing: 2px;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

/* Corrigindo o problema do travessão vermelho */
.author .elegant-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
    /* Garantindo que o travessão não afete outros elementos */
    z-index: 1;
}

/* Removendo o efeito para outros elementos elegant-title */
h3.elegant-title::after,
.footer h3.elegant-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
}

/* Cursor Personalizado */
.custom-cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(139, 0, 0, 0.3);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, background 0.3s;
}

.custom-cursor.hover {
    width: 40px;
    height: 40px;
    background: rgba(139, 0, 0, 0.1);
}

/* Efeito de Foco para Formulários */
.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(139, 0, 0, 0.1);
}

/* Efeito de Carregamento Elegante */
.elegant-loader {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

.elegant-loader div {
    position: absolute;
    top: 33px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: var(--primary-color);
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

.elegant-loader div:nth-child(1) {
    left: 8px;
    animation: elegant-loader1 0.6s infinite;
}

.elegant-loader div:nth-child(2) {
    left: 8px;
    animation: elegant-loader2 0.6s infinite;
}

.elegant-loader div:nth-child(3) {
    left: 32px;
    animation: elegant-loader2 0.6s infinite;
}

.elegant-loader div:nth-child(4) {
    left: 56px;
    animation: elegant-loader3 0.6s infinite;
}

@keyframes elegant-loader1 {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes elegant-loader3 {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(0);
    }
}

@keyframes elegant-loader2 {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(24px, 0);
    }
}

/* Estilos de Luxo para Serviços */
.service-card {
    border: 1px solid rgba(139, 0, 0, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon i {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    transition: all 0.3s ease;
}

.service-features li::before {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
}

/* Animação para os cards de serviço */
.services .service-card {
    opacity: 0;
    transform: translateY(20px);
}

.services .service-card.animate {
    animation: fadeInUp 0.8s ease forwards;
}

.services .service-card:nth-child(1) {
    animation-delay: 0.1s;
}

.services .service-card:nth-child(2) {
    animation-delay: 0.3s;
}

.services .service-card:nth-child(3) {
    animation-delay: 0.5s;
}

.services .service-card:nth-child(4) {
    animation-delay: 0.7s;
}

/* ===============================================
   METODOLOGIA CONEXÃO 5% 
   =============================================== */

.methodology {
    background-color: #f9f9f9;
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
}

.methodology::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/Design-sem-nome-1-1024x576.png') no-repeat center center/cover;
    opacity: 0.04;
    z-index: 0;
}

.methodology .container {
    position: relative;
    z-index: 1;
}

.methodology-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem;
}

.methodology-description {
    font-size: 1.1rem;
    line-height: 1.8;
}

.methodology-description p {
    margin-bottom: 1.5rem;
}

.pillars-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 5rem;
}

.pillar-card {
    background: white;
    padding: 2.5rem;
    border-radius: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.pillar-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.pillar-number {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--luxury-gradient);
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.pillar-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    padding-right: 2rem;
}

.pillar-description {
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
}

.pillar-benefit {
    margin-top: auto;
    background: #f2f2f2;
    padding: 1.5rem;
    border-left: 3px solid var(--primary-color);
}

.pillar-benefit h4 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.pillar-benefit p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

.process-container {
    margin-bottom: 5rem;
}

.process-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.process-step {
    background: white;
    padding: 2.5rem;
    border-radius: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    position: relative;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.step-number {
    position: absolute;
    top: 0;
    left: 0;
    background: var(--luxury-gradient);
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-step h4 {
    margin: 1rem 0 1.5rem;
    font-size: 1.2rem;
    padding-left: 1rem;
}

.process-step ul {
    padding-left: 1.5rem;
}

.process-step ul li {
    margin-bottom: 0.8rem;
    position: relative;
    font-size: 0.95rem;
    list-style-type: none;
}

.process-step ul li::before {
    content: '•';
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: -1rem;
}

.results-expected {
    background: white;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.results-title {
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 1.8rem;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.result-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.result-check {
    min-width: 30px;
    height: 30px;
    background: var(--luxury-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.result-item p {
    margin-bottom: 0;
    font-size: 1rem;
}

/* Media Queries para Metodologia */
@media (max-width: 992px) {
    .pillars-container,
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .pillars-container,
    .process-steps,
    .results-grid {
        grid-template-columns: 1fr;
    }
    
    .results-expected {
        padding: 2rem;
    }
} 

/* ===============================================
   GOOGLE PARTNER BADGE STYLES
   =============================================== */

.google-partner-badge {
    display: flex;
    align-items: center;
    margin-left: 1rem;
}

.google-partner-badge img {
    height: 60px;
    transition: transform 0.3s ease;
}

.google-partner-badge img:hover {
    transform: scale(1.05);
}

.google-partner-mini {
    display: flex;
    align-items: center;
    margin-left: 1rem;
}

.google-partner-mini a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--luxury-gradient);
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.google-partner-mini a:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.footer-partner-badge {
    margin-top: 1.5rem;
}

.footer-partner-badge img {
    height: 80px;
    transition: transform 0.3s ease;
}

.footer-partner-badge img:hover {
    transform: scale(1.05);
}

.footer-credential {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: #999;
}

.footer-credential a {
    color: var(--primary-color);
    font-weight: 500;
}

.footer-credential a:hover {
    text-decoration: underline;
}

/* Certificações Section */
.certifications {
    background-color: #f9f9f9;
    padding: 5rem 0;
}

.certifications-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.certification-card {
    background: white;
    padding: 3rem;
    display: flex;
    gap: 3rem;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.certification-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.certification-badge {
    flex: 0 0 200px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.certification-badge img {
    max-width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.certification-badge img:hover {
    transform: scale(1.05);
}

.certification-info {
    flex: 1;
}

.certification-info h3 {
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.certification-info p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.7;
}

.certification-highlight {
    background-color: rgba(139, 0, 0, 0.05);
    padding: 1rem 1.5rem;
    border-left: 3px solid var(--primary-color);
    font-weight: 500;
}

.partner-highlight {
    background-color: rgba(139, 0, 0, 0.05);
    padding: 1rem 1.5rem;
    border-left: 3px solid var(--primary-color);
    font-size: 1.05rem;
    margin-top: 2rem;
    display: inline-block;
}

.partner-highlight strong {
    color: var(--primary-color);
}

.certification-benefits {
    background: white;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.benefits-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.benefits-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--primary-color);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.benefit-item {
    display: flex;
    gap: 1rem;
}

.benefit-icon {
    flex: 0 0 40px;
    height: 40px;
    background: var(--luxury-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.benefit-content {
    flex: 1;
}

.benefit-content h5 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.benefit-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Media Queries para Google Partner Badge e Certificações */
@media (max-width: 992px) {
    .header-content {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .google-partner-mini {
        margin: 0 0 0 1rem;
    }
    
    .certification-card {
        flex-direction: column;
        padding: 2rem;
        gap: 2rem;
        text-align: center;
    }
    
    .certification-info h3 {
        margin-top: 0;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-partner-badge {
        display: flex;
        justify-content: center;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .benefit-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
} 

/* ===============================================
   MENU MOBILE E RESPONSIVIDADE
   =============================================== */

/* Desktop/Mobile Display */
.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

/* Menu Hamburger */
.mobile-menu-toggle {
    display: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    position: relative;
    z-index: 1001;
}

.hamburger-icon {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
}

.hamburger-icon span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: var(--primary-color);
    border-radius: 3px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}

.hamburger-icon span:nth-child(1) {
    top: 10px;
}

.hamburger-icon span:nth-child(2) {
    top: 20px;
}

.hamburger-icon span:nth-child(3) {
    top: 30px;
}

.menu-open .hamburger-icon span:nth-child(1) {
    top: 20px;
    transform: rotate(135deg);
}

.menu-open .hamburger-icon span:nth-child(2) {
    opacity: 0;
    left: -60px;
}

.menu-open .hamburger-icon span:nth-child(3) {
    top: 20px;
    transform: rotate(-135deg);
}

/* Media Queries para Menu Mobile */
@media (max-width: 768px) {
    .desktop-only {
        display: none;
    }
    
    .mobile-only {
        display: block;
    }
    
    .mobile-menu-toggle {
        display: block;
        position: absolute;
        right: 20px;
        top: 15px;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        z-index: 1000;
        display: flex;
        justify-content: center;
        align-items: center;
        transform: translateX(100%);
        transition: transform 0.3s ease;
    }
    
    .menu-open .main-nav {
        transform: translateX(0);
    }
    
    .main-nav ul {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .main-nav a {
        font-size: 1.2rem;
        padding: 0.8rem 1.5rem;
    }
    
    .hero {
        padding-top: 70px;
    }
    
    body.menu-open {
        overflow: hidden;
    }
    
    .header-content {
        justify-content: flex-end;
        padding: 0.5rem 0;
        min-height: 60px;
    }
    
    .header {
        padding: 0;
    }
} 

/* WhatsApp Botão e Formulário Flutuante */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    cursor: pointer;
    animation: pulse 2s infinite;
}

.whatsapp-button .fa-whatsapp {
    display: block;
}

.whatsapp-button .fa-times {
    display: none;
}

.whatsapp-button.active .fa-whatsapp {
    display: none;
}

.whatsapp-button.active .fa-times {
    display: block;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Estilo quando o formulário está ativo */
.whatsapp-button.active {
    background: #128C7E;
    transform: rotate(45deg);
    animation: none;
}

.whatsapp-button.active:hover {
    transform: rotate(45deg) scale(1.1);
}

.whatsapp-form-overlay {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 320px;
    background: transparent;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.whatsapp-form-overlay.active {
    opacity: 1;
    visibility: visible;
}

.whatsapp-form-container {
    background: white;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transform: translateY(30px);
    transition: all 0.4s ease;
}

.whatsapp-form-overlay.active .whatsapp-form-container {
    transform: translateY(0);
    animation: popup 0.3s ease-out;
}

@keyframes popup {
    0% {
        transform: translateY(30px) scale(0.9);
        opacity: 0;
    }
    70% {
        transform: translateY(-5px) scale(1.02);
    }
    100% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.whatsapp-form-header {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    padding: 12px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 8px 8px 0 0;
}

.whatsapp-form-header h3 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
}

.whatsapp-form-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.whatsapp-form-body {
    padding: 15px;
}

.whatsapp-form-body p {
    margin-bottom: 15px;
    color: #555;
    font-size: 0.9rem;
}

#whatsapp-contact-form .form-group {
    margin-bottom: 10px;
}

#whatsapp-contact-form input {
    border: 1px solid #ddd;
    padding: 10px 12px;
    width: 100%;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

#whatsapp-contact-form input:focus {
    border-color: #25D366;
    box-shadow: 0 0 0 2px rgba(37, 211, 102, 0.2);
    outline: none;
}

.whatsapp-submit {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 5px;
}

.whatsapp-submit:hover {
    background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
}

@media (max-width: 576px) {
    .whatsapp-form-container {
        width: 95%;
    }
    
    .whatsapp-button {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
} 