/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Inter:wght@300;400;500;600&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
    --primary-color: #0c1220; /* Deep Midnight Blue */
    --secondary-color: #1a2436; /* Slightly lighter blue for cards */
    --accent-gold: #B8860B; /* Dark Goldenrod */
    --accent-gold-light: #F3E5AB;
    --text-light: #f5f5f7;
    --text-dim: #a0aec0;
    --glass-bg: rgba(26, 36, 54, 0.6);
    --glass-border: rgba(255, 255, 255, 0.1);
    --transition-speed: 0.3s;
    --font-heading: 'Outfit', sans-serif;
    --font-serif: 'Cinzel', serif; /* For very specific premium touches */
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--primary-color);
    color: var(--text-light);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-speed);
}

ul {
    list-style: none;
}

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

.text-gold {
    color: var(--accent-gold);
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
    font-weight: 300;
    letter-spacing: -0.02em;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent-gold);
    margin: 1rem auto 0;
}

/* Navigation */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(12, 18, 32, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--text-light); /* Fallback */
}

.brand img {
    height: 49px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dim);
    position: relative;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--accent-gold);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width 0.3s ease;
}

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

.cta-button {
    padding: 0.8rem 1.5rem;
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: var(--accent-gold);
    color: var(--primary-color);
    box-shadow: 0 0 15px rgba(184, 134, 11, 0.4);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    padding-top: 80px;
    padding-left: 4rem;
    padding-right: 4rem;
    background: url('./images/lorvent-capital-banner.png') no-repeat center center/cover;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: left;
    max-width: 800px;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-start;
}

.btn-primary {
    background: var(--accent-gold);
    color: var(--primary-color);
    padding: 1rem 2.5rem;
    font-weight: 600;
    border-radius: 4px;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(184, 134, 11, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 1px solid rgba(255,255,255,0.3);
    padding: 1rem 2.5rem;
    font-weight: 600;
    border-radius: 4px;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.05);
    border-color: var(--text-light);
}

/* Manifesto Section */
.manifesto {
    padding: 8rem 0;
    background: var(--primary-color);
    position: relative;
}

.manifesto-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.manifesto-text h2 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--accent-gold);
}

.manifesto-text p {
    font-size: 1.1rem;
    color: var(--text-dim);
    margin-bottom: 1.5rem;
    border-left: 2px solid var(--accent-gold);
    padding-left: 1.5rem;
}

.manifesto-card {
    background: var(--secondary-color);
    padding: 3rem;
    border-radius: 20px;
    position: relative;
    border: 1px solid var(--glass-border);
}

.manifesto-card::before {
    content: '"';
    font-family: var(--font-serif);
    font-size: 10rem;
    color: rgba(184, 134, 11, 0.1);
    position: absolute;
    top: -2rem;
    left: 2rem;
}

.manifesto-card p {
    font-size: 1.5rem;
    font-weight: 300;
    font-style: italic;
    line-height: 1.6;
    color: var(--text-light);
}

/* Services Section */
.services {
    padding: 8rem 0;
    background: #090e18; /* Darker shade */
}

.tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 4rem;
    gap: 1rem;
}

.tab-btn {
    background: transparent;
    border: none;
    color: var(--text-dim);
    font-size: 1.2rem;
    padding: 1rem 2rem;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all 0.3s;
    font-family: var(--font-heading);
}

.tab-btn.active {
    color: var(--accent-gold);
    border-bottom: 2px solid var(--accent-gold);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    display: none; /* Hidden by default */
    animation: fadeIn 0.5s ease;
}

.service-grid.active {
    display: grid;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.service-card {
    background: var(--secondary-color);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    border-color: rgba(184, 134, 11, 0.3);
}

.service-card h3 {
    font-family: var(--font-heading);
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-card p {
    color: var(--text-dim);
    font-size: 0.95rem;
}

.service-icon {
    font-size: 2rem;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
}

/* Strategic Pillars */
.pillars {
    padding: 8rem 0;
    background: var(--primary-color);
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.pillar-item {
    padding: 2rem;
    border-left: 3px solid rgba(184, 134, 11, 0.3);
    transition: all 0.3s;
}

.pillar-item:hover {
    border-left-color: var(--accent-gold);
    background: linear-gradient(90deg, rgba(184, 134, 11, 0.05), transparent);
}

.pillar-item h4 {
    color: var(--accent-gold);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.pillar-item p {
    color: var(--text-dim);
}

/* Values Section */
.values-section {
    padding: 6rem 0;
    background: var(--secondary-color);
    text-align: center;
}

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

.value-item i {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
    display: block;
}

.value-item h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

/* About Founder/Company */
.about {
    padding: 8rem 0;
    background: linear-gradient(to right, #090e18, #0f172a);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about p {
    margin-bottom: 1.5rem;
    color: var(--text-dim);
    font-size: 1.1rem;
}

.founder-badge {
    margin-top: 3rem;
    display: inline-block;
    padding: 1rem 2rem;
    border: 1px solid var(--accent-gold);
    border-radius: 50px;
    color: var(--accent-gold);
}

/* Partners Section */
.partners-section {
    padding: 6rem 0;
    background: #ffffff;
}

.partners-section .section-title {
    color: var(--primary-color);
}

.partners-section .section-title::after {
    background: var(--accent-gold);
}

.partners-slider {
    position: relative;
    max-width: 1200px;
    margin: 3rem auto 0;
    overflow: hidden;
    padding: 0;
}

.partners-track {
    display: flex;
    gap: 2rem;
    padding: 1rem 0;
}

.partner-logo {
    min-width: 200px;
    height: 120px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem;
    flex-shrink: 0;
}

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

.partner-logo img {
    max-width: 130%;
    max-height: 130%;
    object-fit: contain;
    filter: grayscale(20%);
}

.partner-logo:hover img {
    filter: grayscale(0%);
}

/* Ajuste específico para logo Rodobens */
.partner-logo img[alt="Rodobens"] {
    max-width: 76.5%;
    max-height: 76.5%;
    opacity: 0.9;
}

.slider-btn {
    position: static;
    width: 50px;
    height: 50px;
    background: rgba(12, 18, 32, 0.9);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    color: var(--text-light);
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    margin: 2rem 0.5rem 0;
}

.slider-btn:hover {
    background: rgba(12, 18, 32, 1);
    color: var(--accent-gold);
    box-shadow: 0 4px 12px rgba(184, 134, 11, 0.3);
}

.slider-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.slider-btn-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
}

/* Form Section */
.contact-section {
    padding: 8rem 0;
    background: var(--primary-color);
    position: relative;
    overflow: hidden;
}

/* Decorative background shapes for form */
.contact-section::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(184, 134, 11, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.contact-container {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.form-box {
    background: rgba(26, 36, 54, 0.4);
    backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-gold);
    background: rgba(0, 0, 0, 0.3);
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23D4AF37' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
}

.submit-btn {
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(135deg, var(--accent-gold), #bfa14c);
    color: #000;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.1rem;
    transition: transform 0.2s, box-shadow 0.2s;
    margin-top: 1rem;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(184, 134, 11, 0.4);
}

/* Footer */
footer {
    background: #060910;
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand h2 {
    font-family: var(--font-heading);
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--text-dim);
    max-width: 300px;
}

.footer-links h4 {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links ul li a {
    color: var(--text-dim);
    font-size: 0.9rem;
}

.footer-links ul li a:hover {
    color: var(--accent-gold);
}

.social-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--text-dim);
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: rgba(184, 134, 11, 0.2);
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(184, 134, 11, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: var(--text-dim);
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        padding-left: 2rem;
        padding-right: 2rem;
        justify-content: center;
    }
    
    /* Escurecer imagem do Hero no mobile para melhorar legibilidade */
    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(12, 18, 32, 0.6); /* Overlay escuro */
        z-index: 1;
    }
    
    .hero-content {
        text-align: center;
        position: relative;
        z-index: 10;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .manifesto-grid {
        grid-template-columns: 1fr;
    }
    
    .pillars-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-links {
        display: none; /* Add mobile menu later if needed, but for simplicity we hide on small screens or stack */
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    /* Ajustar botão "Fale Conosco" no mobile */
    .cta-button {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
        white-space: nowrap;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

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

.whatsapp-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.6);
    }
    100% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-icon {
        width: 35px;
        height: 35px;
    }
    
    /* Partners Section Mobile */
    .partners-section {
        padding: 4rem 0;
    }
    
    .partners-slider {
        margin: 2rem auto 0;
        padding: 0;
    }
    
    .partners-track {
        gap: 1rem;
    }
    
    .partner-logo {
        min-width: 150px;
        height: 100px;
        padding: 1rem;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        margin: 1.5rem 0.5rem 0;
    }
}
