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

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

:root {
    /* Paleta de Cores Cinza Moderna */
    --primary-color: #2d3748;
    --secondary-color: #4a5568;
    --accent-color: #6b7280;
    --accent-light: #9ca3af;
    --accent-dark: #374151;
    --text-primary: #1a202c;
    --text-secondary: #4a5568;
    --text-light: #718096;
    --bg-primary: #ffffff;
    --bg-secondary: #f7fafc;
    --bg-tertiary: #edf2f7;
    --bg-dark: #2d3748;
    --border-color: #e2e8f0;
    --shadow-light: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-heavy: 0 10px 25px rgba(0, 0, 0, 0.15);
    --gradient-primary: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
    --gradient-secondary: linear-gradient(135deg, #9ca3af 0%, #6b7280 100%);
    --gradient-dark: linear-gradient(135deg, #374151 0%, #1f2937 100%);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
    font-weight: 400;
    letter-spacing: -0.01em;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('./marcadagua.png');
    background-repeat: repeat;
    background-position: center center;
    background-size: 600px;
    opacity: 0.15;
    pointer-events: none;
    z-index: 1;
    mix-blend-mode: multiply;
}

body {
    position: relative;
}

/* Garantir que o conteúdo apareça sobre a marca d'água */
.container, .vilow-container, section {
    position: relative;
    z-index: 2;
}

header, nav, .header {
    position: relative;
    z-index: 10;
}

/* Media query para mobile - marca d'água responsiva */
@media (max-width: 768px) {
    body::before {
        background-size: 300px;
        opacity: 0.12;
    }
    
    /* Timeline responsiva - centralizar no mobile */
    .timeline-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
        margin-bottom: 30px;
    }
    
    .timeline-number {
        width: 70px;
        height: 70px;
        font-size: 1rem;
        margin: 0 auto;
    }
    
    .timeline-content {
        max-width: 280px;
    }
    
    .timeline-content h3 {
        font-size: 1.1rem;
        margin-bottom: 6px;
    }
    
    .timeline-content p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    font-size: 14px;
    text-align: center;
    justify-content: center;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-medium);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-heavy);
}

.btn-secondary {
    background: var(--bg-tertiary);
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.btn-outline {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

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

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    position: relative;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    font-weight: 400;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    letter-spacing: -0.005em;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

.navbar {
    padding: 12px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.9rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 24px;
    align-items: center;
}

.nav-link {
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
    letter-spacing: -0.01em;
}

.nav-link:hover {
    color: var(--accent-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
}

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

.cotacao-btn {
    font-size: 0.85rem;
    padding: 10px 18px;
    border-radius: 6px;
    margin-left: 8px;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Ocultar botão mobile em desktop */
.mobile-cotacao-container {
    display: none;
}

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

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    transition: var(--transition);
    border-radius: 2px;
}

/* Hero Banner Section */
.hero-banner {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-top: 70px;
}

.banner-container {
    position: relative;
    width: 100%;
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.banner-slide.active {
    opacity: 1;
    position: relative;
}

.banner-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    max-height: none;
}

.banner-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.banner-nav .banner-btn {
    pointer-events: all;
}

.banner-container:hover .banner-nav {
    opacity: 1;
}

.banner-btn {
    background: rgba(107, 114, 128, 0.9);
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-medium);
}

.banner-btn:hover {
    background: var(--accent-color);
    transform: scale(1.1);
}

.banner-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(107, 114, 128, 0.5);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid white;
}

.indicator.active,
.indicator:hover {
    background: var(--accent-color);
}

/* Vilow Section */
.vilow-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 50%, var(--bg-primary) 100%);
    position: relative;
    overflow: hidden;
}

.vilow-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.vilow-header {
    text-align: center;
    margin-bottom: 80px;
}

.vilow-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    padding: 8px 20px;
    border-radius: 50px;
    box-shadow: var(--shadow-light);
    margin-bottom: 20px;
    position: relative;
}

.badge-text {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge-decoration {
    width: 8px;
    height: 8px;
    background: var(--accent-color);
    border-radius: 50%;
    /* animation: pulse 2s infinite; */
}

/* @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.2); }
} */

.vilow-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.title-main {
    color: var(--text-primary);
    display: inline-block;
    position: relative;
}

.title-accent {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    position: relative;
}

.vilow-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--text-secondary);
    font-style: italic;
    letter-spacing: -0.005em;
    line-height: 1.5;
}

.vilow-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
    align-items: start;
}

.story-left {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.story-timeline {
    position: relative;
}

.story-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.timeline-item {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    position: relative;
}

.timeline-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.timeline-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.timeline-content p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.team-section {
    margin-top: 30px;
}

.team-title {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 24px;
    position: relative;
}

.team-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.vilow-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    width: 100%;
    max-width: 100%;
}

.team-image {
    position: relative;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
    width: 100%;
    max-width: 100%;
}

.team-image:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: var(--transition);
    display: block;
}

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

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(45, 55, 72, 0.9));
    color: white;
    padding: 20px 15px 15px;
    transform: translateY(100%);
    transition: var(--transition);
}

.team-image:hover .image-overlay {
    transform: translateY(0);
}

.image-overlay h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.image-overlay p {
    font-size: 0.85rem;
    opacity: 0.9;
    margin: 0;
}

.story-content {
    display: grid;
    gap: 30px;
}

.story-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    border-left: 4px solid transparent;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.story-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: var(--gradient-secondary);
    opacity: 0.1;
    border-radius: 50%;
    transform: translate(30px, -30px);
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.story-card.mission {
    border-left-color: var(--accent-color);
}

.story-card.vision {
    border-left-color: var(--accent-dark);
}

.story-card.values {
    border-left-color: var(--accent-light);
}

.story-card .card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: white;
}

.mission .card-icon {
    background: var(--accent-color);
}

.vision .card-icon {
    background: var(--accent-dark);
}

.values .card-icon {
    background: var(--accent-light);
}

.story-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.story-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.vilow-stats {
    background: white;
    padding: 60px 40px;
    border-radius: 30px;
    box-shadow: var(--shadow-heavy);
    position: relative;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-item {
    text-align: center;
    position: relative;
}

.stat-item::after {
    content: '';
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60px;
    background: var(--border-color);
}

.stat-item:last-child::after {
    display: none;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
    display: block;
    line-height: 1.2;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.vilow-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    background: var(--gradient-secondary);
    opacity: 0.1;
}

.circle-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    right: 10%;
    animation: float 6s ease-in-out infinite;
}

.circle-2 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 5%;
    animation: float 4s ease-in-out infinite reverse;
}

.circle-3 {
    width: 100px;
    height: 100px;
    top: 60%;
    right: 20%;
    animation: float 5s ease-in-out infinite;
}

.decoration-line {
    position: absolute;
    background: var(--gradient-primary);
    opacity: 0.2;
    border-radius: 10px;
}

.line-1 {
    width: 3px;
    height: 150px;
    top: 30%;
    left: 15%;
    transform: rotate(15deg);
}

.line-2 {
    width: 3px;
    height: 100px;
    bottom: 30%;
    right: 15%;
    transform: rotate(-15deg);
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--bg-primary);
}

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

.about-card {
    background: var(--bg-secondary);
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.about-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

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

.about-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.about-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Plans Section */
.plans {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.plans-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: flex-start;
}

.plan-card {
    background: white;
    border-radius: 24px;
    padding: 32px;
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    position: relative;
    flex: 0 0 300px;
    width: 300px;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

.plan-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.plan-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
}

.plan-card.featured {
    border: 2px solid var(--accent-color);
    transform: scale(1.05);
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.plan-card.featured::before {
    background: var(--gradient-secondary);
    height: 6px;
}

.plan-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.plan-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-primary);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
    box-shadow: var(--shadow-medium);
    z-index: 2;
}

.plan-badge i {
    font-size: 0.9rem;
}

.plan-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: white;
    font-size: 1.8rem;
    box-shadow: var(--shadow-medium);
}

.plan-header {
    text-align: center;
    margin-bottom: 24px;
}

.plan-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.plan-description {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-style: italic;
    margin: 0;
}

.plan-features {
    list-style: none;
    margin-bottom: 24px;
    flex: 1;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: var(--text-secondary);
    font-weight: 500;
    border-bottom: 1px solid var(--bg-tertiary);
    font-size: 0.9rem;
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features i {
    color: var(--accent-color);
    font-size: 1rem;
    flex-shrink: 0;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.testimonials-container {
    position: relative;
    z-index: 1;
}

/* Testimonials Carousel */
.testimonials-carousel-container {
    margin: 4rem 0;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.testimonials-carousel {
    display: flex;
    gap: 1.5rem;
    overflow: visible;
    scroll-behavior: smooth;
    padding: 1rem 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    width: max-content;
}

.testimonials-carousel::-webkit-scrollbar {
    display: none;
}

.testimonial-card-mini {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    min-width: 280px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid #f1f5f9;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    flex-shrink: 0;
    transform: translateZ(0);
    will-change: transform, box-shadow;
}

.testimonial-card-mini:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-color);
}

.stars-mini {
    display: flex;
    gap: 0.2rem;
    margin-bottom: 1rem;
}

.stars-mini i {
    color: var(--accent-light);
    font-size: 0.75rem;
}

.testimonial-card-mini p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #64748b;
    margin-bottom: 1rem;
    font-style: italic;
}

.author-mini {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author-avatar-mini {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.author-avatar-mini img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info-mini h5 {
    font-size: 0.875rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.125rem;
}

.author-info-mini span {
    font-size: 0.75rem;
    color: var(--accent-color);
}

.testimonials-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
    transform: translateY(-50%);
    z-index: 10;
}

.testimonial-prev,
.testimonial-next {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    pointer-events: all;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    color: #374151;
    backdrop-filter: blur(8px);
    opacity: 0.85;
    font-size: 14px;
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background: white;
    transform: scale(1.12) translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    color: var(--accent-color);
    opacity: 1;
}

.testimonial-prev:active,
.testimonial-next:active {
    transform: scale(1.05);
}

.testimonials-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.testimonial-indicator {
    width: 28px;
    height: 4px;
    border-radius: 2px;
    background: rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.testimonial-indicator::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 2px;
    transition: left 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonial-indicator.active {
    background: var(--accent-color);
}

.testimonial-indicator.active::before {
    left: 0;
}

.testimonial-indicator:hover {
    background: rgba(26, 115, 232, 0.3);
    transform: scaleY(1.5);
}

/* Testimonials Stats */
.testimonials-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 60px;
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.stat-item {
    text-align: center;
}

/* Removido - CSS duplicado do stat-number */
}

.stat-label {
    font-size: 16px;
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Instagram Feed Section */
.instagram-feed {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, white 50%, #f1f5f9 100%);
    position: relative;
}

.instagram-carousel-container {
    position: relative;
    margin-top: 60px;
    margin-bottom: 50px;
    overflow: hidden;
    width: 100%;
}

.instagram-carousel {
    display: flex;
    gap: 20px;
    overflow: visible;
    padding: 15px 0;
    scroll-behavior: smooth;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
    width: max-content;
}

.instagram-post {
    min-width: 260px;
    flex: 0 0 260px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    opacity: 0.7;
    transform: scale(0.95);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.instagram-post.active {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.instagram-post:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
}

.post-image {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
}

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

.instagram-post:hover .post-image img {
    transform: scale(1.05);
}

.post-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.3), transparent);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.instagram-post:hover .post-overlay {
    opacity: 1;
}

.post-stats {
    display: flex;
    gap: 20px;
    color: white;
    font-weight: 600;
    font-size: 14px;
}

.post-stats span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.post-stats i {
    font-size: 16px;
}

.post-content {
    padding: 12px;
}

.post-content p {
    margin: 0 0 8px 0;
    font-size: 13px;
    line-height: 1.3;
    color: #333;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.post-content strong {
    color: #1a73e8;
    font-size: 12px;
}

.post-time {
    font-size: 11px;
    color: var(--accent-color);
    text-transform: uppercase;
    font-weight: 500;
}

/* Carousel Controls */
.carousel-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
    padding: 0 20px;
}

.carousel-btn {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    pointer-events: all;
    color: var(--text-secondary);
    font-size: 16px;
    backdrop-filter: blur(10px);
    opacity: 0.8;
}

.carousel-btn:hover {
    background: white;
    color: var(--primary-color);
    transform: scale(1.15) translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    opacity: 1;
}

.carousel-btn:active {
    transform: scale(1.05) translateY(-1px);
}

.carousel-btn.prev {
    left: -25px;
}

.carousel-btn.next {
    right: -25px;
}

/* Carousel Indicators */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.carousel-indicators .indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent-light);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-indicators .indicator.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

.carousel-indicators .indicator:hover {
    background: var(--primary-color);
    opacity: 0.7;
}

/* Modern Indicators */
.modern-indicators {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 24px;
}

.modern-indicator {
    width: 32px;
    height: 4px;
    border-radius: 2px;
    background: rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    transform: translateZ(0);
    will-change: transform, background;
}

.modern-indicator::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 2px;
    transition: left 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.modern-indicator.active {
    background: var(--accent-color);
    transform: scaleX(1.2) translateZ(0);
    box-shadow: 0 0 8px rgba(26, 115, 232, 0.4);
}

.modern-indicator.active::before {
    left: 0;
}

.modern-indicator:hover {
    background: rgba(26, 115, 232, 0.3);
    transform: scaleY(1.5) translateZ(0);
    box-shadow: 0 0 4px rgba(26, 115, 232, 0.3);
}

/* Instagram CTA */
.instagram-cta {
    text-align: center;
    margin-top: 50px;
}

.instagram-btn {
    background: var(--gradient-primary);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(240, 148, 51, 0.3);
}

.instagram-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(240, 148, 51, 0.4);
    color: white;
}

.instagram-btn i {
    font-size: 20px;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 32px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.contact-details h4 {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.contact-details p {
    color: var(--text-secondary);
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-medium);
}

.form-group {
    margin-bottom: 24px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--bg-primary);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
    transform: translateY(-1px);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: white;
    padding: 60px 0 20px;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    color: white;
}

.footer-section p {
    color: #e2e8f0;
    line-height: 1.7;
    margin-bottom: 20px;
}

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

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #e2e8f0;
    text-decoration: none;
    transition: var(--transition);
}

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

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

/* Footer Logo Styles */
.footer-logo {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 10px;
    opacity: 0.9;
    transition: var(--transition);
}

.footer-logo-img {
    width: 100px;
    height: auto;
    filter: brightness(0) invert(1) opacity(0.8);
    transition: var(--transition);
}

.footer-logo:hover .footer-logo-img {
    filter: brightness(0) invert(1) opacity(1);
    transform: scale(1.05);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #e2e8f0;
}

/* Smart Chat Widget */
.smart-chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.chat-button {
    width: 56px;
    height: 56px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.4rem;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(45, 55, 72, 0.2);
    transition: var(--transition);
    position: relative;
    border: none;
}

.chat-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 55, 72, 0.25);
}

.chat-button:active {
    transform: translateY(0);
}

.chat-pulse {
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    /* animation: chatPulse 2s infinite; */
}

/* @keyframes chatPulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
} */

.chat-notification {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--accent-dark);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
}

.smart-chat-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 340px;
    height: 480px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15), 0 4px 16px rgba(0, 0, 0, 0.08);
    display: none;
    flex-direction: column;
    border: 1px solid rgba(99, 102, 241, 0.1);
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.smart-chat-window.active {
    display: flex;
}

.chat-header {
    background: var(--gradient-primary);
    color: white;
    padding: 12px 16px;
    border-radius: 20px 20px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.chat-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, transparent 50%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.agent-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.agent-avatar {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 1;
}

.agent-avatar::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--accent-color);
    border-radius: 50%;
    bottom: 2px;
    right: 2px;
    border: 2px solid white;
    animation: pulse 2s infinite;
}

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

.agent-details h4 {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.status {
    font-size: 0.75rem;
    opacity: 0.95;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 4px;
}

.status.online::before {
    content: '●';
    color: var(--accent-color);
    font-size: 8px;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.3; }
}

.chat-close {
    background: none;
    border: none;
    color: var(--accent-color);
    font-size: 1rem;
    cursor: pointer;
    padding: 4px;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.chat-close:hover {
    background: var(--bg-tertiary);
    color: var(--accent-dark);
}

.chat-messages {
    flex: 1;
    padding: 16px 12px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
}

.chat-messages::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 20px;
    background: linear-gradient(180deg, rgba(99, 102, 241, 0.02) 0%, transparent 100%);
    pointer-events: none;
}

.message {
    display: flex;
    gap: 8px;
    max-width: 92%;
    animation: messageSlide 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.message-avatar {
    width: 28px;
    height: 28px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
    flex-shrink: 0;
    border: 2px solid rgba(99, 102, 241, 0.2);
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.3);
    position: relative;
}

.message-avatar::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    background: var(--gradient-primary);
    z-index: -1;
    opacity: 0.3;
    animation: avatarGlow 2s infinite;
}

@keyframes avatarGlow {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.1; }
}

.message-content {
    flex: 1;
}

.message-content p {
    background: white;
    padding: 14px 18px;
    border-radius: 18px 18px 18px 4px;
    margin: 4px 0;
    color: #475569;
    line-height: 1.5;
    font-size: 0.9rem;
    border: 1px solid rgba(99, 102, 241, 0.1);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08), 0 1px 4px rgba(0, 0, 0, 0.04);
    position: relative;
    backdrop-filter: blur(10px);
}

.message-content p::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.02), transparent);
    border-radius: inherit;
    pointer-events: none;
}

.user-message {
    align-self: flex-end;
    flex-direction: row-reverse;
}

.user-message .message-content p {
    background: var(--gradient-primary);
    color: white;
    border-radius: 12px 12px 4px 12px;
    position: relative;
}

.user-message .message-content p::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent);
    border-radius: inherit;
    pointer-events: none;
}

.user-message .message-avatar {
    background: var(--accent-dark);
}

.quick-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 16px;
}

.quick-action {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 12px 16px;
    text-align: left;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-primary);
}

.quick-action:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: white;
    transform: translateY(-1px);
    box-shadow: var(--shadow-light);
}

.quick-action i {
    font-size: 1rem;
    opacity: 0.8;
}

.typing-indicator {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 0;
    margin-left: 44px;
}

.typing-container {
    background: white;
    padding: 16px 20px;
    border-radius: 20px 20px 20px 6px;
    border: 1px solid rgba(99, 102, 241, 0.1);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.typing-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.05), transparent);
    animation: shimmerTyping 2s infinite;
}

@keyframes shimmerTyping {
    0% { left: -100%; }
    100% { left: 100%; }
}

.typing-text {
    font-size: 0.85rem;
    color: var(--accent-color);
    font-weight: 500;
    margin-right: 8px;
}

.typing-dots {
    display: flex;
    gap: 3px;
}

.typing-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gradient-primary);
    animation: modernTyping 1.6s infinite ease-in-out;
    box-shadow: 0 2px 4px rgba(99, 102, 241, 0.3);
}

.typing-dots span:nth-child(1) { animation-delay: 0s; }
.typing-dots span:nth-child(2) { animation-delay: 0.2s; }
.typing-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes modernTyping {
    0%, 60%, 100% {
        transform: scale(0.6) translateY(0);
        opacity: 0.4;
    }
    30% {
        transform: scale(1) translateY(-8px);
        opacity: 1;
    }
}

.chat-input-container {
    border-top: 1px solid var(--border-color);
}

.chat-input {
    display: flex;
    padding: 16px;
    gap: 8px;
    border-top: 1px solid #e2e8f0;
    background: #f8fafc;
}

.chat-input input {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid #d1d5db;
    border-radius: 20px;
    font-size: 0.8rem;
    outline: none;
    transition: all 0.2s ease;
    background: white;
}

.chat-input input:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.1);
}

.chat-send {
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.chat-send:hover {
    background: var(--accent-dark);
    transform: scale(1.05);
}

.chat-send:hover {
    background: var(--accent-dark);
    transform: scale(1.05);
}

.chat-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 16px;
    background: var(--bg-secondary);
    border-radius: 0 0 16px 16px;
    border-top: 1px solid var(--border-color);
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-left i {
    color: var(--accent-color);
    font-size: 0.8rem;
}

.footer-left small,
.footer-right small {
    color: var(--text-light);
    font-size: 0.75rem;
    font-weight: 500;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-heavy);
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.modal-header {
    background: var(--gradient-primary);
    color: white;
    padding: 20px;
    border-radius: 16px 16px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

.modal-body {
    padding: 30px;
}

.modal-body .form-group {
    margin-bottom: 20px;
}

.modal-body label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-primary);
}

.modal-intro {
    color: var(--text-secondary);
    margin-bottom: 24px;
    text-align: center;
    font-style: italic;
}

/* Responsive Design */
@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: var(--shadow-medium);
        padding: 20px 0;
    }

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

    .nav-menu li {
        margin: 16px 0;
    }

    .nav-menu .nav-item:last-child {
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid var(--border-color);
    }

    .cotacao-btn {
        display: none;
    }

    .mobile-cotacao-container {
        display: flex;
        justify-content: center;
        padding: 25px 20px;
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        margin: 0;
        position: relative;
        z-index: 10;
    }

    .mobile-cotacao-btn {
        background: white;
        color: var(--primary-color);
        font-size: 1rem;
        font-weight: 600;
        padding: 15px 30px;
        border-radius: 25px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        transition: all 0.3s ease;
        border: 2px solid transparent;
    }

    .mobile-cotacao-btn:hover {
        background: var(--primary-color);
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    }

    .hero-banner {
        margin-top: 60px;
    }

    .banner-nav {
        padding: 0 10px;
    }

    .banner-btn {
        width: 40px;
        height: 40px;
    }

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

    .vilow-story {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .story-left {
        gap: 30px;
    }

    .vilow-images {
        grid-template-columns: 1fr;
    }

    .team-image {
        height: 180px;
        margin-bottom: 15px;
    }

    .team-img {
        object-fit: cover;
        object-position: center;
    }

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

    .stat-item::after {
        display: none;
    }

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

    .plans-grid {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .plan-card {
        flex: none;
        width: 100%;
        max-width: 350px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .smart-chat-window {
        width: 320px;
        height: 400px;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Responsive Design for Instagram Feed */
@media (max-width: 768px) {
    .instagram-post {
        min-width: 300px;
    }
    
    .post-image {
        height: 300px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .carousel-btn.prev {
        left: -20px;
    }
    
    .carousel-btn.next {
        right: -20px;
    }
}

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

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

    .vilow-stats {
        padding: 40px 20px;
    }

    .stats-container {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }

    .timeline-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .story-timeline::before {
        display: none;
    }

    .vilow-images {
        grid-template-columns: 1fr;
    }

    .team-image {
        height: 160px;
        margin-bottom: 10px;
    }

    .mobile-cotacao-container {
        padding: 15px;
    }

    .mobile-cotacao-btn {
        font-size: 0.95rem;
        padding: 12px 25px;
    }

    .team-img {
        object-fit: cover;
        object-position: center;
        transform: none !important;
    }

    .team-image:hover .team-img {
        transform: none !important;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .image-overlay {
        padding: 15px 10px 10px;
    }

    .image-overlay h4 {
        font-size: 0.9rem;
        margin-bottom: 5px;
    }

    .image-overlay p {
        font-size: 0.8rem;
    }
}

/* Extra small devices (320px and down) */
@media (max-width: 320px) {
    .vilow-images {
        gap: 15px;
    }

    .team-image {
        height: 140px;
    }

    .team-img {
        object-fit: cover;
        object-position: center;
    }

    .image-overlay {
        padding: 10px 8px 8px;
    }

    .image-overlay h4 {
        font-size: 0.85rem;
    }

    .image-overlay p {
        font-size: 0.75rem;
    }

    .plan-card {
        padding: 30px 20px;
        min-height: 400px;
    }

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

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

    .smart-chat-window {
        width: calc(100vw - 40px);
        height: 350px;
    }

    .slider-indicators {
        bottom: 10px;
    }

    .indicator {
        width: 10px;
        height: 10px;
    }
    
    .instagram-post {
        min-width: 280px;
    }
    
    .post-image {
        height: 280px;
    }
    
    .carousel-controls {
        display: none;
    }
    
    .instagram-post {
        scroll-snap-align: center;
    }
    
    /* Watermark responsiveness - removido para evitar conflito com nova configuração */
     
     /* Section Logo responsiveness */
     .section-logo-img {
        width: 80px;
    }

    .vilow-header .section-logo {
        margin: 10px 0;
    }

    .instagram-feed .section-logo {
        margin-bottom: 10px;
    }

    .footer-logo-img {
        width: 70px;
    }

    .footer-logo {
        margin-bottom: 8px;
        justify-content: flex-start;
    }
}

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

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Watermark Section */
.watermark-section {
    position: relative;
}

.watermark-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('./marcadagua.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 400px auto;
    opacity: 0.15;
    pointer-events: none;
    z-index: -5;
}

/* Specific positioning for different sections */
.vilow-section.watermark-section::before {
    background-position: center;
    background-size: 450px auto;
    opacity: 0.18;
}

.about.watermark-section::before {
    background-position: center;
    background-size: 380px auto;
    opacity: 0.16;
}

.plans.watermark-section::before {
    background-position: center;
    background-size: 420px auto;
    opacity: 0.18;
}

.testimonials.watermark-section::before {
    background-position: center;
    background-size: 400px auto;
    opacity: 0.16;
}

.contact.watermark-section::before {
    background-position: center;
    background-size: 350px auto;
    opacity: 0.18;
}

/* Responsividade para marca d'água em seções específicas */
@media (max-width: 768px) {
    .watermark-section::before {
        background-size: 250px auto;
        opacity: 0.12;
    }
    
    .vilow-section.watermark-section::before {
        background-size: 280px auto;
        opacity: 0.14;
    }
    
    .about.watermark-section::before {
        background-size: 240px auto;
        opacity: 0.12;
    }
    
    .plans.watermark-section::before {
        background-size: 260px auto;
        opacity: 0.14;
    }
    
    .testimonials.watermark-section::before {
        background-size: 250px auto;
        opacity: 0.12;
    }
    
    .contact.watermark-section::before {
        background-size: 220px auto;
        opacity: 0.14;
    }
}

/* Section Logo Styles */
.section-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    opacity: 0.8;
    transition: var(--transition);
}

.section-logo-img {
    width: 120px;
    height: auto;
    filter: grayscale(20%) opacity(0.9);
    transition: var(--transition);
}

.section-logo:hover .section-logo-img {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.05);
}

/* Specific positioning for different sections */
.vilow-header .section-logo {
    margin: 15px 0;
}

.instagram-feed .section-logo {
    margin-bottom: 15px;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-tertiary);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}
