/* 
 * Project: Landing Page Palestrante
 * Theme: Corporate Premium Orange
 * Author: Antigravity
 */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary-color: #ff6600;
    /* Laranja Original */
    --primary-dark: #e65c00;
    --primary-light: #ffaa5e;
    --whatsapp-green: #25d366;
    --whatsapp-dark: #128c7e;
    --secondary-color: #111111;
    --text-color: #333333;
    --light-bg: #f8f9fa;
    --dark-bg: #0f0f0f;
    --white: #ffffff;
    --font-main: 'Manrope', sans-serif;
    --transition: all 0.3s ease;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 20px 40px rgba(255, 102, 0, 0.15);
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    color: var(--secondary-color);
    letter-spacing: -0.02em;
}

/* Fix: Allow text utilities to override default heading color */
.text-white h1,
.text-white h2,
.text-white h3,
.text-white h4,
.text-white h5,
.text-white h6 {
    color: #fff !important;
}

.text-primary h1,
.text-primary h2,
.text-primary h3,
.text-primary h4,
.text-primary h5,
.text-primary h6 {
    color: var(--primary-color) !important;
}

.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

/* UI Elements - Buttons */
.btn-custom {
    padding: 14px 32px;
    font-weight: 600;
    border-radius: 8px !important;
    /* Padronizado conforme solicitado */
    transition: var(--transition);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: none;
}

.btn-primary-custom {
    background: linear-gradient(135deg, var(--whatsapp-green), var(--whatsapp-dark));
    color: var(--white);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.3);
    color: var(--white);
}

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

.btn-outline-custom:hover {
    background: var(--whatsapp-green);
    color: var(--white);
    transform: translateY(-3px);
}

.section-padding {
    padding: 100px 0;
}

/* Animations */
.micro-anim {
    transition: var(--transition);
}

.micro-anim:hover {
    transform: translateY(-5px);
}

/* Navbar */
.navbar {
    padding: 20px 0;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.navbar-brand.text-white {
    color: var(--white) !important;
}

.nav-link {
    font-weight: 600;
    color: var(--text-color) !important;
    margin-left: 20px;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
}

/* Hero Section */
.hero-section {
    position: relative;
    padding-top: 130px;
    /* Garante que a frase não suma atrás da navbar */
    padding-bottom: 60px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(to right, #ffffff, #fff5eb);
    overflow: hidden;
}

.hero-content h1,
.hero-title {
    font-size: 2.3rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-section p {
    display: none;
    /* Removido conforme solicitado */
}

.hero-video-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.hero-video-poster {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.hero-video-wrapper:hover .hero-video-poster {
    transform: scale(1.02);
}

/* Training Section Refinements */
#treinamentos .card {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
}

#treinamentos .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2) !important;
    border: 1px solid var(--primary-color) !important;
}

#treinamentos .card h4 {
    color: var(--primary-color) !important;
    font-weight: 800;
    line-height: 1.3;
    transition: color 0.3s ease;
}

#treinamentos .card:hover h4 {
    color: var(--primary-color);
}

#treinamentos .card p {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Floating WhatsApp Button */
.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.3);
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--primary-color);
    color: var(--white);
}

/* Authority Block */
.authority-section {
    background: var(--secondary-color);
    color: var(--white);
    padding: 80px 0;
}

.authority-quote {
    font-size: 2rem;
    font-weight: 300;
    border-left: 4px solid var(--primary-color);
    padding-left: 30px;
    margin-bottom: 0;
    color: var(--white);
}

/* Lectures & Themes */
.card-theme {
    background: var(--white);
    border: none;
    border-radius: 12px;
    padding: 30px;
    height: 100%;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.card-theme::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--primary-color);
    z-index: -1;
    transition: 0.4s ease;
}

.card-theme:hover::before {
    width: 100%;
}

.card-theme:hover h4 {
    color: var(--white);
}

.card-theme:hover p,
.card-theme:hover i {
    color: rgba(255, 255, 255, 0.9);
}

.theme-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    transition: var(--transition);
}

.lecture-gallery-item {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    height: 300px;
}

.lecture-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 15% !important;
    transform-origin: center top !important;
    transition: transform 0.6s ease;
}

.lecture-gallery-item:hover img {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.image-overlay h5 {
    color: var(--primary-color) !important;
    margin-bottom: 0;
    font-weight: 700;
}

/* Positioning */
.positioning-section {
    background: url('../assets/img/01.jpeg') no-repeat center center/cover;
    position: relative;
}

.overlay-dark {
    background: rgba(0, 0, 0, 0.75);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.positioning-section h2 {
    color: var(--white);
}

/* About / Persona */
.persona-img-wrapper {
    position: relative;
}

.persona-img-wrapper::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: var(--primary-color);
    z-index: -1;
    border-radius: 12px;
}

.persona-img {
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Testimonials */
.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
    position: relative;
    border-top: 5px solid transparent;
    transition: var(--transition);
}

.testimonial-card:hover {
    border-top-color: var(--primary-color);
    transform: translateY(-5px);
}

.testimonial-quote-icon {
    color: #eee;
    font-size: 3rem;
    position: absolute;
    top: 20px;
    right: 30px;
    opacity: 0.5;
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 3px solid var(--primary-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Footer */
.footer {
    background: var(--dark-bg);
    color: #aaa;
    padding: 80px 0 30px;
}

.footer h3,
.footer h5 {
    color: var(--white);
}

.footer h5 {
    color: var(--white);
    margin-bottom: 25px;
}

.footer-link {
    color: #aaa;
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
    transition: var(--transition);
}

.footer-link:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

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

.social-icon:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Responsibility */
@media (max-width: 991px) {
    .hero-content h1 {
        font-size: 3rem;
    }

    .authority-quote {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }

    .card-theme {
        margin-bottom: 20px;
    }
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}