/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #1e3a8a;
    --secondary-blue: #2563eb;
    --accent-orange: #f97316;
    --text-white: #ffffff;
    --text-dark: #1e293b;
    --text-gray: #64748b;
    --surface-light: #f8fafc;
    --border-radius: 8px;
    --border-radius-lg: 12px;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--text-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.logo-image {
    height: 75px;
    width: auto;
    max-width: 270px;
    object-fit: contain;
    transition: var(--transition);
}

.logo-image:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--secondary-blue);
}

.nav-cta .btn-cta {
    background: #ff4757;
    color: var(--text-white);
    padding: 8px 16px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.nav-cta .btn-cta:hover {
    background: #ff3742;
    transform: translateY(-1px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    background: var(--primary-blue);
    color: var(--text-white);
    padding: 120px 0 80px;
    position: relative;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 2rem;
}

.hero-badge {
    background: var(--accent-orange);
    color: var(--text-white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.text-highlight {
    color: var(--accent-orange);
}

.hero-subtitle {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-contact {
    margin-bottom: 2rem;
}

.hero-contact span {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.phone-input {
    background: var(--text-white);
    border: none;
    padding: 12px 16px;
    border-radius: var(--border-radius);
    width: 100%;
    max-width: 250px;
    font-size: 1rem;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-orange);
    margin-bottom: 0.25rem;
}

.stat-item p {
    font-size: 0.9rem;
    color: white;
    opacity: 1;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.products-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    width: 100%;
    max-width: 400px;
}

.product-icon {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--border-radius-lg);
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition);
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

.product-icon:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.product-icon i {
    font-size: 2rem;
    color: var(--accent-orange);
    margin-bottom: 0.5rem;
    display: block;
}

.product-icon span {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-white);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.building-image {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.building-image img {
    width: 300px;
    height: 200px;
    object-fit: cover;
}

.image-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--text-dark);
    padding: 8px 12px;
    border-radius: var(--border-radius);
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.image-badge i {
    color: #10b981;
}

.hero-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 1rem 0;
    margin-top: 2rem;
}

.bottom-links {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.bottom-links span {
    font-size: 0.9rem;
    opacity: 0.9;
}

.client-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.client-links a {
    color: var(--text-white);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.8;
    transition: var(--transition);
}

.client-links a:hover {
    opacity: 1;
}

/* Catalog Section */
.catalog {
    padding: 5rem 0;
    background: var(--text-white);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.catalog-card {
    background: var(--text-white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.catalog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.catalog-image {
    height: 150px;
    overflow: hidden;
}

.catalog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.catalog-card:hover .catalog-image img {
    transform: scale(1.05);
}

.catalog-content {
    padding: 1rem;
}

.catalog-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.catalog-content p {
    color: var(--text-gray);
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 0.75rem;
}

.catalog-link {
    color: var(--accent-orange);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.catalog-link:hover {
    color: var(--primary-blue);
}

.catalog-actions {
    text-align: center;
}

.catalog-extra-links {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.catalog-extra-links a {
    color: var(--text-gray);
    text-decoration: underline;
    font-size: 0.9rem;
    transition: var(--transition);
}

.catalog-extra-links a:hover {
    color: var(--secondary-blue);
}

/* Categories Section */
.categories {
    padding: 5rem 0;
    background: var(--surface-light);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.category-item {
    background: var(--text-white);
    padding: 2rem 1.5rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 1px solid rgba(30, 58, 138, 0.05);
}

.category-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: var(--secondary-blue);
}

.category-item i {
    font-size: 2.5rem;
    color: var(--secondary-blue);
    margin-bottom: 1rem;
    display: block;
}

.category-item h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.category-item p {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.4;
}

/* Benefits Section */
.benefits {
    padding: 5rem 0;
    background: var(--primary-blue);
    color: var(--text-white);
}

.benefits .section-header h2 {
    color: var(--text-white);
}

.benefits .section-header p {
    color: rgba(255, 255, 255, 0.8);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius-lg);
    padding: 1.5rem;
    transition: var(--transition);
}

.benefit-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.benefit-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.benefit-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    line-height: 1.4;
}

.benefits-stats {
    margin-top: 3rem;
}

.stats-container {
    background: var(--text-white);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.stat-box {
    text-align: center;
}

.stat-box h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.stat-box p {
    color: var(--text-gray);
    font-weight: 600;
}

/* Modern Contact Section */
.contact-modern {
    position: relative;
    overflow: hidden;
}

.contact-bg {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 50%, #cbd5e1 100%);
    position: relative;
    padding: 6rem 0;
}

.contact-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%231e293b" fill-opacity="0.05"><circle cx="30" cy="30" r="1"/></g></svg>');
    pointer-events: none;
}

/* Header da Seção */
.contact-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.contact-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(59, 130, 246, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(59, 130, 246, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    color: #1e40af;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.contact-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.contact-subtitle {
    font-size: 1.2rem;
    color: #475569;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Grid de Cards */
.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.contact-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #06b6d4, #10b981);
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 1);
}

.contact-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    position: relative;
}

.contact-phone .contact-card-icon {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.contact-email .contact-card-icon {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.contact-location .contact-card-icon {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.contact-card-badge {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.contact-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.contact-number, .contact-email-address, .contact-address {
    font-size: 1rem;
    font-weight: 600;
    color: #3b82f6;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.contact-email-address {
    word-break: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    font-size: 0.95rem;
}

.contact-hours {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.contact-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
}

.email-btn {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
}

.location-btn {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
}

.contact-action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Seção de Orçamento */
.quote-section {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 3rem;
}

.quote-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.quote-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.quote-title h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.quote-title p {
    color: #64748b;
    font-size: 1rem;
}

.modern-quote-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: #374151;
    font-size: 0.9rem;
}

.form-group label i {
    color: #3b82f6;
    width: 16px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    color: #374151;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
    transform: translateY(-1px);
}

.modern-submit-btn {
    position: relative;
    background: linear-gradient(135deg, #25d366, #128c7e);
    border: none;
    border-radius: 16px;
    padding: 1.2rem 2rem;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.4s ease;
    overflow: hidden;
    margin-top: 1rem;
}

.btn-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    position: relative;
    z-index: 2;
}

.btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.modern-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
}

.modern-submit-btn:hover .btn-glow {
    left: 100%;
}

/* Footer da Seção */
.contact-footer {
    text-align: center;
}

.contact-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: #475569;
}

.stat-item i {
    font-size: 2rem;
    color: #3b82f6;
    margin-bottom: 0.5rem;
}

.stat-item span {
    font-weight: 600;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-bg {
        padding: 4rem 0;
    }
    
    .contact-header h2 {
        font-size: 2.2rem;
    }
    
    .contact-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .quote-section {
        padding: 2rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .quote-header {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-stats {
        gap: 2rem;
    }
}

/* Buttons */
.btn {
    padding: 12px 24px;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: var(--transition);
    cursor: pointer;
    font-size: 1rem;
    font-family: inherit;
}

.btn-primary {
    background: var(--secondary-blue);
    color: var(--text-white);
}

.btn-primary:hover {
    background: var(--primary-blue);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--text-gray);
}

.btn-secondary:hover {
    background: var(--text-gray);
    color: var(--text-white);
}

.btn-whatsapp {
    background: #25d366;
    color: var(--text-white);
}

.btn-whatsapp:hover {
    background: #128c7e;
}

.btn-whatsapp-hero {
    background: #25d366;
    color: var(--text-white);
    padding: 14px 24px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    font-size: 1.1rem;
}

.btn-whatsapp-hero:hover {
    background: #128c7e;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.btn-submit {
    background: var(--primary-blue);
    color: var(--text-white);
    width: 100%;
}

.btn-submit:hover {
    background: var(--secondary-blue);
}

/* Footer */
.footer {
    background: var(--primary-blue);
    color: var(--text-white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--text-white);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent-orange);
}

.footer-section p i {
    margin-right: 0.5rem;
    color: var(--accent-orange);
}

.btn-footer-cta {
    background: var(--accent-orange);
    color: var(--text-white);
    margin-top: 1rem;
}

.btn-footer-cta:hover {
    background: #ea580c;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    margin: 0;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-float a {
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float a:hover {
    background: #128c7e;
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
    font-size: 1.8rem;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.8);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

/* Brands Section */
.brands {
    padding: 5rem 0;
    background: linear-gradient(45deg, #f8fafc 0%, #e2e8f0 100%);
}

.brands-showcase {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.brand-item {
    background: var(--text-white);
    padding: 2rem 1.5rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    color: var(--text-dark);
    border: 2px solid transparent;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.brand-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: var(--gradient-blue);
    transition: var(--transition);
}

.brand-item:hover::before {
    left: 0;
}

.brand-item:hover {
    background: var(--text-white);
    color: var(--text-dark);
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: var(--secondary-blue);
}

.brand-item.featured {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: var(--text-white);
    border: 2px solid var(--accent-orange);
}

.brand-item.featured:hover {
    background: linear-gradient(135deg, var(--secondary-blue) 0%, var(--accent-orange) 100%);
    color: var(--text-white);
    transform: translateY(-10px) scale(1.05);
}

.brand-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto;
    font-size: 1.5rem;
    color: var(--text-white);
}

.brand-item h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.brand-item p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0;
}

.brands-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: var(--text-white);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    min-width: 150px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary-blue);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-gray);
    font-weight: 600;
}

/* History Section */
.history {
    padding: 5rem 0;
    background: var(--surface-light);
}

.special-section {
    background: linear-gradient(135deg, #1e3a8a 0%, #7c3aed 100%);
    color: var(--text-white);
    position: relative;
    overflow: hidden;
}

.special-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="white" opacity="0.1"/><circle cx="30" cy="30" r="1" fill="white" opacity="0.08"/><circle cx="50" cy="50" r="1" fill="white" opacity="0.12"/><circle cx="70" cy="70" r="1" fill="white" opacity="0.09"/><circle cx="90" cy="90" r="1" fill="white" opacity="0.11"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.history-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    text-align: center;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.history-badge {
    background: var(--accent-orange);
    color: var(--text-white);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    animation: pulse 2s infinite;
}

.history-main {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-direction: column;
    text-align: center;
}

.history-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 2.5rem;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.history-text h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.history-text h3 {
    font-size: 1.6rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.history-text p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin: 0 auto 2rem auto;
    max-width: 600px;
    text-align: center;
}

.history-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.history-buttons .btn-secondary {
    background: var(--accent-orange);
    color: var(--text-white);
    border: 2px solid var(--accent-orange);
    font-weight: 700;
    padding: 14px 28px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 165, 0, 0.3);
    animation: glow 2s ease-in-out infinite alternate;
}

.history-buttons .btn-secondary:hover {
    background: #ff8c00;
    border-color: #ff8c00;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 165, 0, 0.5);
}

@keyframes glow {
    from {
        box-shadow: 0 4px 15px rgba(255, 165, 0, 0.3);
    }
    to {
        box-shadow: 0 4px 20px rgba(255, 165, 0, 0.6);
    }
}

/* Page Hero */
.page-hero {
    background: var(--gradient-blue);
    color: var(--text-white);
    padding: 120px 0 80px;
    text-align: center;
}

.page-hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.page-hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Emotional Hero Styles */
.emotional-hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #3730a3 50%, #581c87 100%);
    position: relative;
    overflow: hidden;
}

.emotional-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hero-grain" width="4" height="4" patternUnits="userSpaceOnUse"><rect width="4" height="4" fill="url(%23noise)"/><defs><filter id="noise"><feTurbulence baseFrequency="0.9" numOctaves="1" seed="1"/><feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.03 0"/></filter></defs></pattern></defs><rect width="100" height="100" fill="url(%23hero-grain)"/></svg>');
    opacity: 0.5;
}

/* Removido - hero-particles */

.hero-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    padding: 12px 24px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 2rem;
    animation: float 3s ease-in-out infinite;
}

.hero-badge i {
    color: #ff6b9d;
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.text-gradient {
    background: linear-gradient(45deg, #fbbf24, #f59e0b, #d97706, #92400e);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientMove 4s ease-in-out infinite;
}

@keyframes gradientMove {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    min-width: 150px;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease-out calc(0.7s + var(--delay, 0s)) both;
}

.stat-card:nth-child(1) { --delay: 0s; }
.stat-card:nth-child(2) { --delay: 0.2s; }
.stat-card:nth-child(3) { --delay: 0.4s; }

.stat-card:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    background: linear-gradient(45deg, #ff6b9d, #feca57);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 600;
}

.white-text {
    color: #ffffff !important;
    opacity: 1;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Timeline */
.history-full {
    padding: 5rem 0;
    background: var(--surface-light);
}

/* Emotional Timeline Styles */
.emotional-timeline {
    background: linear-gradient(45deg, #ffeef8 0%, #f0f9ff 50%, #fef7ed 100%);
    position: relative;
}

.section-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.section-intro h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-intro p {
    font-size: 1.2rem;
    color: var(--text-gray);
    font-style: italic;
    max-width: 600px;
    margin: 0 auto;
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
    opacity: 0;
    animation: slideInFromLeft 0.8s ease-out forwards;
    animation-delay: calc(var(--item-index, 0) * 0.3s);
}

.timeline-item:nth-child(1) { --item-index: 0; }
.timeline-item:nth-child(2) { --item-index: 1; }
.timeline-item:nth-child(3) { --item-index: 2; }
.timeline-item:nth-child(4) { --item-index: 3; }
.timeline-item:nth-child(5) { --item-index: 4; }

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.timeline-icon {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    z-index: 2;
    animation: pulse 2s infinite;
}

.timeline-item[data-emotion="spark"] .timeline-icon {
    background: linear-gradient(45deg, #ff6b9d, #feca57);
    box-shadow: 0 0 20px rgba(255, 107, 157, 0.5);
}

.timeline-item[data-emotion="courage"] .timeline-icon {
    background: linear-gradient(45deg, #ff4757, #ff6b9d);
    box-shadow: 0 0 20px rgba(255, 71, 87, 0.5);
}

.timeline-item[data-emotion="growth"] .timeline-icon {
    background: linear-gradient(45deg, #2ed573, #7bed9f);
    box-shadow: 0 0 20px rgba(46, 213, 115, 0.5);
}

.timeline-item[data-emotion="success"] .timeline-icon {
    background: linear-gradient(45deg, #5352ed, #70a1ff);
    box-shadow: 0 0 20px rgba(83, 82, 237, 0.5);
}

.timeline-item[data-emotion="legacy"] .timeline-icon {
    background: linear-gradient(45deg, #ffa502, #ff6348);
    box-shadow: 0 0 20px rgba(255, 165, 2, 0.5);
}

.emotion-badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.emotion-badge.spark {
    background: linear-gradient(45deg, #ff6b9d, #feca57);
}

.emotion-badge.courage {
    background: linear-gradient(45deg, #ff4757, #ff6b9d);
}

.emotion-badge.growth {
    background: linear-gradient(45deg, #2ed573, #7bed9f);
}

.emotion-badge.success {
    background: linear-gradient(45deg, #5352ed, #70a1ff);
}

.emotion-badge.legacy {
    background: linear-gradient(45deg, #ffa502, #ff6348);
}

.timeline-content {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 3px solid transparent;
    background-clip: padding-box;
    position: relative;
    overflow: hidden;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #ff6b9d, #feca57, #48dbfb, #ff9ff3);
    background-size: 400% 400%;
    animation: gradientMove 8s ease-in-out infinite;
    z-index: -2;
    border-radius: 20px;
}

.timeline-content::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    right: 3px;
    bottom: 3px;
    background: white;
    border-radius: 17px;
    z-index: -1;
}

.timeline-content h3 {
    color: var(--text-dark);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.timeline-content p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 1rem;
}

.timeline-content strong {
    color: var(--primary-blue);
    font-weight: 700;
}

.timeline-content em {
    color: #ff6b9d;
    font-style: italic;
    font-weight: 600;
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--secondary-blue);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    width: 120px;
    background: var(--secondary-blue);
    color: var(--text-white);
    padding: 1rem;
    border-radius: var(--border-radius);
    text-align: center;
    font-weight: 700;
    align-self: flex-start;
}

.timeline-content {
    flex: 1;
    background: var(--text-white);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    margin: 0 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.timeline-content h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.timeline-content p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* MVV Section */
.mvv-section {
    padding: 5rem 0;
    background: var(--surface-light);
}

.mvv-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 4rem;
    background: var(--text-white);
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.mvv-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 2rem;
    flex-shrink: 0;
}

.mvv-content h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.mvv-content p {
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.6;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.value-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--surface-light);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--accent-orange);
}

.value-check {
    width: 30px;
    height: 30px;
    background: var(--accent-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    flex-shrink: 0;
}

.value-text h3 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.value-text p {
    color: var(--text-gray);
    line-height: 1.5;
    margin: 0;
}

/* Contact Info Section */
.contact-info-section {
    padding: 5rem 0;
    background: var(--text-white);
}

.contact-info-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 3rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-info-item {
    background: var(--surface-light);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    transition: var(--transition);
}

.contact-info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.contact-info-item i {
    font-size: 2.5rem;
    color: var(--secondary-blue);
    margin-bottom: 1rem;
}

.contact-info-item h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-info-item p {
    color: var(--text-gray);
    font-weight: 600;
    word-break: break-all;
}

/* CTA Sections */
.mvv-cta, .cta-section {
    text-align: center;
    background: var(--text-white);
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.mvv-cta h2, .cta-section h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.mvv-cta p, .cta-section p {
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsividade */
@media (max-width: 768px) {
    .logo-image {
        height: 60px;
        max-width: 210px;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--text-white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-cta {
        display: none;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .building-image img {
        width: 250px;
        height: 150px;
    }

    .catalog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .products-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        max-width: 300px;
    }

    .timeline::before {
        left: 30px;
    }

    .timeline-item {
        flex-direction: row !important;
    }

    .timeline-year {
        width: 80px;
        font-size: 0.9rem;
        padding: 0.75rem;
    }

    .timeline-content {
        margin-left: 1rem;
        margin-right: 0;
    }

    .mvv-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .stats-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-buttons {
        flex-direction: column;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .bottom-links {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .client-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .logo-image {
        height: 50px;
        max-width: 180px;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero-container {
        padding: 0 15px;
        gap: 1.5rem;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-stats {
        gap: 1rem;
        justify-content: center;
    }

    .catalog-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .products-showcase {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 200px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .catalog-actions .btn {
        width: 100%;
    }

    .contact-buttons .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Emotional Founders Styles */
.emotional-founders {
    padding: 5rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.founders-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.founders-intro h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.founders-intro p {
    font-size: 1.2rem;
    opacity: 0.9;
    font-style: italic;
}

.founders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 4rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.founder-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.founder-card:hover {
    transform: translateY(-10px) scale(1.02);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.founder-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(45deg, #f59e0b, #d97706);
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    color: white;
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.2);
    z-index: 10;
}

.founder-avatar {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    background: linear-gradient(45deg, #f59e0b, #d97706);
    animation: float 3s ease-in-out infinite;
}

.avatar-ring {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: rotate 8s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.founder-quote {
    font-style: italic;
    font-size: 1.1rem;
    color: #fbbf24;
    margin-bottom: 1.5rem;
    font-weight: 600;
    position: relative;
}

.founder-quote::before,
.founder-quote::after {
    content: '"';
    font-size: 2rem;
    color: #f59e0b;
    font-weight: 900;
}

.founder-traits {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.trait {
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Emotional Values Styles */
.emotional-values {
    padding: 5rem 0;
    background: linear-gradient(45deg, #ff9a9e 0%, #fecfef 50%, #fecfef 100%);
}

.values-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.values-intro h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.values-intro p {
    font-size: 1.2rem;
    color: var(--text-gray);
    font-style: italic;
}

.value-item {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.value-item:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.value-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 107, 157, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.value-item:hover .value-glow {
    opacity: 1;
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    position: relative;
    animation: float 3s ease-in-out infinite;
}

.value-item.passion .value-icon {
    background: linear-gradient(45deg, #ff6b9d, #ff4757);
    box-shadow: 0 0 20px rgba(255, 107, 157, 0.5);
}

.value-item.love .value-icon {
    background: linear-gradient(45deg, #ff4757, #ff3838);
    box-shadow: 0 0 20px rgba(255, 71, 87, 0.5);
}

.value-item.trust .value-icon {
    background: linear-gradient(45deg, #5352ed, #3742fa);
    box-shadow: 0 0 20px rgba(83, 82, 237, 0.5);
}

.value-item.community .value-icon {
    background: linear-gradient(45deg, #2ed573, #20bf6b);
    box-shadow: 0 0 20px rgba(46, 213, 115, 0.5);
}

.value-emotion {
    font-size: 1rem;
    font-weight: 600;
    color: #ff6b9d;
    margin-bottom: 1rem;
    font-style: italic;
}

/* Emotional CTA Styles */
.emotional-cta {
    background: linear-gradient(135deg, #1f2937 0%, #374151 50%, #4b5563 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.emotional-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="cta-grain" width="4" height="4" patternUnits="userSpaceOnUse"><rect width="4" height="4" fill="url(%23noise2)"/><defs><filter id="noise2"><feTurbulence baseFrequency="0.8" numOctaves="1" seed="2"/><feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.02 0"/></filter></defs></pattern></defs><rect width="100" height="100" fill="url(%23cta-grain)"/></svg>');
    opacity: 0.3;
}

/* Removido - cta-particles */

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.cta-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.cta-title-clear {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-subtitle-clear {
    color: #ffffff;
    font-size: 1.4rem;
    margin-bottom: 3rem;
    line-height: 1.6;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    opacity: 0.95;
}

.cta-title-white {
    color: #ffffff !important;
}

.cta-title-white .text-gradient {
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    -webkit-text-fill-color: #ffffff !important;
    color: #ffffff !important;
}

.cta-promise {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.promise-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 600;
}

.promise-item i {
    color: #f59e0b;
    font-size: 1.2rem;
}

.emotional-btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.emotional-btn:hover {
    transform: translateY(-3px) scale(1.05);
}

.btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.emotional-btn:hover .btn-glow {
    left: 100%;
}

/* Professional MVV Page Styles */
.mvv-hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #1d4ed8 100%);
    position: relative;
    overflow: hidden;
}

.mvv-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="mvv-grain" width="4" height="4" patternUnits="userSpaceOnUse"><rect width="4" height="4" fill="url(%23mvv-noise)"/><defs><filter id="mvv-noise"><feTurbulence baseFrequency="0.9" numOctaves="1" seed="3"/><feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.02 0"/></filter></defs></pattern></defs><rect width="100" height="100" fill="url(%23mvv-grain)"/></svg>');
    opacity: 0.4;
}

.hero-badge-mvv {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 12px 24px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 2rem;
    color: #fbbf24;
    font-weight: 600;
}

.hero-badge-mvv i {
    color: #fbbf24;
}

.text-highlight-mvv {
    color: #fbbf24;
    font-weight: 800;
}

.mvv-professional {
    background: linear-gradient(45deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 6rem 0;
}

.mvv-item {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    transition: all 0.3s ease;
}

.mvv-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.mvv-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    flex-shrink: 0;
}

.mission-icon {
    background: linear-gradient(45deg, #1e40af, #3b82f6);
    box-shadow: 0 10px 25px rgba(30, 64, 175, 0.3);
}

.vision-icon {
    background: linear-gradient(45deg, #059669, #10b981);
    box-shadow: 0 10px 25px rgba(5, 150, 105, 0.3);
}

.values-icon {
    background: linear-gradient(45deg, #7c3aed, #8b5cf6);
    box-shadow: 0 10px 25px rgba(124, 58, 237, 0.3);
}

.mvv-content h2 {
    color: #1e293b;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.mvv-content p {
    color: #475569;
    font-size: 1.1rem;
    line-height: 1.7;
}

.values-professional {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.value-trust {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.value-trust:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: #1e40af;
}

.value-check {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #1e40af, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 20px rgba(30, 64, 175, 0.3);
}

.value-text h3 {
    color: #1e293b;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.value-text p {
    color: #64748b;
    line-height: 1.6;
}

.professional-cta {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border: 2px solid #1e40af;
    border-radius: 25px;
    padding: 4rem 3rem;
    text-align: center;
    color: #1e293b;
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(30, 64, 175, 0.1);
}

.cta-badge {
    background: linear-gradient(45deg, #1e40af, #3b82f6);
    border: none;
    border-radius: 50px;
    padding: 12px 24px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 2rem;
    color: white;
    font-weight: 600;
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 20px rgba(30, 64, 175, 0.3);
}

.professional-cta h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    color: #1e293b;
}

.professional-cta p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.8;
    position: relative;
    z-index: 1;
    color: #475569;
}

.professional-btn {
    position: relative;
    z-index: 1;
    margin: 0 1rem;
    padding: 15px 30px;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.professional-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.professional-contact {
    background: linear-gradient(45deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 5rem 0;
}

.contact-header {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-header h2 {
    color: #1e293b;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-header p {
    color: #64748b;
    font-size: 1.2rem;
}

.professional-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info-item {
    background: white;
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 70px;
    height: 70px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    margin: 0 auto 2rem auto;
}

.contact-sales .contact-icon,
.contact-finance .contact-icon {
    background: #ffffff;
    color: #64748b;
    border: 2px solid #e2e8f0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.contact-info-item h3 {
    color: #1e293b;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.contact-info-item p {
    color: #64748b;
    font-size: 1rem;
    font-weight: 500;
}

/* Full Width Sections */
.full-width {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    position: relative;
}

.full-width .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Ajustes específicos para seções full-width */
.emotional-hero.full-width {
    padding: 120px 0 100px;
}

.emotional-founders.full-width {
    padding: 6rem 0;
}

.emotional-values.full-width {
    padding: 6rem 0;
}

.emotional-cta.full-width {
    padding: 6rem 0;
}

/* Responsive adjustments for full-width */
@media (max-width: 768px) {
    .full-width .container {
        padding: 0 1rem;
    }
    
    .emotional-hero.full-width {
        padding: 100px 0 80px;
    }
    
    .emotional-founders.full-width,
    .emotional-values.full-width,
    .emotional-cta.full-width {
        padding: 4rem 0;
    }
    
    /* Timeline adjustments for mobile */
    .timeline {
        margin-left: 0;
        padding-left: 0;
        max-width: 100%;
    }
    
    .timeline::before {
        display: none;
    }
    
    .timeline-item {
        display: block;
        margin-bottom: 2.5rem;
        padding-left: 0;
    }
    
    .timeline-icon {
        display: none;
    }
    
    .timeline-year {
        position: static;
        display: inline-block;
        background: var(--secondary-blue);
        color: white;
        padding: 6px 16px;
        border-radius: 15px;
        font-size: 0.9rem;
        font-weight: 600;
        margin-bottom: 1rem;
        margin-left: 0;
    }
    
    .timeline-content {
        margin-left: 0;
        padding: 1.5rem;
        background: white;
        border-radius: 12px;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
        border-left: 4px solid var(--secondary-blue);
    }
    
    .timeline-content h3 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }
    
    .timeline-content p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .emotion-badge {
        margin-bottom: 0.75rem;
        display: inline-block;
    }
    
    /* Founders adjustments for mobile */
    .founders-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        max-width: 500px;
    }
    
    .founder-badge {
        top: 10px;
        right: 10px;
        padding: 8px 14px;
        font-size: 0.75rem;
    }
    
    .founder-avatar {
        width: 80px;
        height: 80px;
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .avatar-ring {
        top: -8px;
        left: -8px;
        right: -8px;
        bottom: -8px;
        border-width: 2px;
    }
    
    /* Values section adjustments for mobile */
    .values-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .value-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .value-item {
        padding: 2rem 1.5rem;
        text-align: center;
    }
    
    /* Hero stats adjustments for mobile */
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .stat-item p {
        color: white !important;
        opacity: 1 !important;
        font-size: 0.9rem;
    }
    
    .stat-card {
        min-width: 120px;
        padding: 1.5rem 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    /* Emotion badges adjustments */
    .emotion-badge {
        font-size: 0.8rem;
        padding: 6px 12px;
        margin-bottom: 0.5rem;
    }
    
    /* CTA section adjustments */
    .cta-promise {
        flex-direction: column;
        gap: 1rem;
        margin: 2rem 0;
    }
    
    .promise-item {
        flex-direction: row;
        justify-content: center;
    }
}

/* Extra small screens (smartphones) */
@media (max-width: 480px) {
    .timeline {
        padding: 0;
        margin: 0;
    }
    
    .timeline::before {
        display: none;
    }
    
    .timeline-icon {
        display: none;
    }
    
    .timeline-year {
        margin-left: 0;
        font-size: 0.8rem;
        padding: 4px 12px;
    }
    
    .timeline-content {
        margin-left: 0;
        padding: 1rem;
    }
    
    .timeline-content h3 {
        font-size: 1.1rem;
    }
    
    .timeline-content p {
        font-size: 0.85rem;
    }
    
    .emotion-badge {
        font-size: 0.7rem;
        padding: 4px 8px;
    }
    
    /* Hero section for extra small screens */
    .emotional-hero.full-width {
        padding: 80px 0 60px;
    }
    
    .stat-item p {
        color: white !important;
        opacity: 1 !important;
        font-size: 0.8rem;
    }
    
    .stat-card {
        min-width: 100px;
        padding: 1rem 0.75rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
}