:root {
    --primary-color: #293f7c; /* Cliente Blue */
    --primary-light: #566cb8;
    --primary-dark: #18254a;
    --accent-color: #ffd700; /* Gold */
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: #fff;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
}

/* Custom Buttons */
.btn-talent {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 6px rgba(26, 35, 126, 0.3);
    transition: all 0.3s ease;
}

.btn-talent:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(26, 35, 126, 0.4);
    color: #fff;
}

.btn-accent {
    background-color: var(--accent-color);
    color: var(--primary-dark);
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 700;
    border: none;
    box-shadow: 0 4px 6px rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.btn-accent:hover {
    background-color: #ffea00;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(255, 215, 0, 0.4);
    color: var(--primary-dark);
}

/* Navbar */
.navbar {
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.95) !important;
}

.navbar-brand img {
    height: 50px; /* Adjust based on logo needs */
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--text-dark);
    margin: 0 5px;
    transition: color 0.3s;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 90vh;
    min-height: 600px;
    color: white;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Update path for external CSS file */
    background-image: url('../../assets/img/banner.jpg');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(41, 63, 124, 0.95) 0%, rgba(24, 37, 74, 0.95) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 300;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Cards and Sections */
.section-title {
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--accent-color);
    margin: 10px auto 0;
    border-radius: 2px;
}

.card-custom {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    background: #fff;
    transition: all 0.4s ease;
    height: 100%;
}

.card-custom:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.card-custom .card-img-top {
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card-custom:hover .card-img-top {
    transform: scale(1.05);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Platform Section */
.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

/* Footer */
.footer-modern {
    background-color: #0f172a;
    color: #94a3b8;
    font-size: 0.95rem;
}

.footer-modern h5, .footer-modern h6 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 1.2rem;
}

.social-link {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s;
    text-decoration: none;
}

.social-link:hover {
    background: var(--accent-color);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

/* Floating WhatsApp Button */
.btn-whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 1050;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-whatsapp-float:hover {
    transform: scale(1.1);
    color: white;
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* Cookie Banner (LGPD) */
#cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    display: none;
    z-index: 9999;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    border: 1px solid #e2e8f0;
}
#cookie-banner p {
    margin: 0;
    color: var(--text-dark);
    flex: 1;
    min-width: 250px;
    margin-right: 20px;
}
