/* ==========================================
   EVOLUTION - CSS PRINCIPAL
   ========================================== */

/* Variáveis de Cores - Baseadas na Logo */
:root {
    /* Cores Primárias */
    --primary-color: #412E41;
    --primary-light: #5a4259;
    --primary-dark: #2a1f2b;
    
    /* Cores Secundárias */
    --secondary-color: #AD59C0;
    --secondary-light: #c47ad0;
    --secondary-dark: #8f46a0;
    
    /* Cores de Acento */
    --accent-color: #DE4858;
    --accent-light: #e86b7a;
    --accent-dark: #b93a48;
    
    /* Cores Adicionais */
    --purple-color: #A054D2;
    --purple-light: #b774e0;
    --purple-dark: #8644b0;
    
    /* Cores Neutras - Tema Light */
    --bg-primary: #ffffff;
    --bg-secondary: #ECECEC;
    --bg-tertiary: #e0e0e0;
    --text-primary: #412E41;
    --text-secondary: #5a4259;
    --text-muted: #7a6b80;
    --border-color: #d0d0d0;
    --shadow-color: rgba(65, 46, 65, 0.1);
    
    /* Cores Neutras - Tema Dark */
    --dark-bg-primary: #1a1520;
    --dark-bg-secondary: #251a2e;
    --dark-bg-tertiary: #2f1f3a;
    --dark-text-primary: #ECECEC;
    --dark-text-secondary: #d0c0d8;
    --dark-text-muted: #a090a8;
    --dark-border-color: #4a3a50;
    --dark-shadow-color: rgba(65, 46, 65, 0.3);
    
    /* Gradientes */
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--purple-color) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--secondary-color) 0%, var(--purple-color) 100%);
    --gradient-accent: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 100%);
    --gradient-hero: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--accent-color) 100%);
    --gradient-text: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    
    /* Espaçamentos */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    
    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-full: 9999px;
    
    /* Transições */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Sombras */
    --shadow-sm: 0 1px 2px 0 var(--shadow-color);
    --shadow-md: 0 4px 6px -1px var(--shadow-color);
    --shadow-lg: 0 10px 15px -3px var(--shadow-color);
    --shadow-xl: 0 20px 25px -5px var(--shadow-color);
    
    /* Fontes */
    --font-primary: 'Inter', sans-serif;
    --font-secondary: 'Poppins', sans-serif;
}

/* ==========================================
   RESET E BASE
   ========================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    transition: background-color var(--transition-normal), color var(--transition-normal);
}

body.dark-theme {
    --bg-primary: var(--dark-bg-primary);
    --bg-secondary: var(--dark-bg-secondary);
    --bg-tertiary: var(--dark-bg-tertiary);
    --text-primary: var(--dark-text-primary);
    --text-secondary: var(--dark-text-secondary);
    --text-muted: var(--dark-text-muted);
    --border-color: var(--dark-border-color);
    --shadow-color: var(--dark-shadow-color);
}

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

img {
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
}

/* ==========================================
   PRELOADER
   ========================================== */

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity var(--transition-slow), visibility var(--transition-slow);
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader .spinner-border {
    width: 3rem;
    height: 3rem;
    border-width: 0.25em;
}

/* ==========================================
   HEADER
   ========================================== */

#header {
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    transition: background-color var(--transition-normal), box-shadow var(--transition-normal);
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 100px;
    width: auto;
    max-width: 300px;
}

.navbar-nav .nav-link {
    color: var(--text-primary);
    font-weight: 500;
    padding: 0.5rem 1rem;
    position: relative;
    transition: color var(--transition-fast);
}

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

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

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
    left: 0;
}

.btn-theme-toggle {
    background: none;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-full);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    transition: all var(--transition-fast);
}

.btn-theme-toggle:hover {
    background-color: var(--bg-tertiary);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-consult {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.btn-consult::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left var(--transition-slow);
}

.btn-consult:hover::before {
    left: 100%;
}

.btn-consult:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: white;
}

/* ==========================================
   HERO SECTION
   ========================================== */

.hero-section {
    position: relative;
    padding-top: 120px;
}

.heroSwiper {
    width: 100%;
    height: calc(100vh - 120px);
    min-height: 500px;
}

.hero-slide {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.hero-slide .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 29, 57, 0.85) 0%, rgba(152, 94, 35, 0.75) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
    padding: 2rem 0;
}

.hero-title {
    font-family: var(--font-secondary);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.text-gradient {
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: all var(--transition-normal);
}

.hero-buttons .btn-primary {
    background: var(--gradient-secondary);
    border: none;
}

.hero-buttons .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.hero-buttons .btn-outline-light {
    border: 2px solid white;
    color: white;
}

.hero-buttons .btn-outline-light:hover {
    background: white;
    color: var(--primary-color);
}

/* Swiper Customization */
.swiper-pagination-bullet {
    background: white;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    background: var(--secondary-color);
    opacity: 1;
}

.swiper-button-next,
.swiper-button-prev {
    color: white;
}

/* ==========================================
   SECTIONS GERAL
   ========================================== */

section {
    position: relative;
    overflow: hidden;
}

.section-subtitle {
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.section-title {
    font-family: var(--font-secondary);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-description {
    color: var(--text-secondary);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ==========================================
   ABOUT SECTION
   ========================================== */

.about-section {
    background-color: var(--bg-primary);
}

.about-content {
    padding-right: 2rem;
}

.about-text {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.about-features {
    margin-bottom: 1.5rem;
}

.about-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
}

.about-features li i {
    color: var(--secondary-color);
    margin-right: 0.75rem;
    font-size: 1.25rem;
}

.about-image img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

/* Counter Boxes */
.counter-box {
    text-align: center;
    padding: 2rem;
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
}

.counter-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.counter-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.counter-number {
    font-family: var(--font-secondary);
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.counter-label {
    color: var(--text-secondary);
    font-weight: 500;
}

/* ==========================================
   SERVICES SECTION
   ========================================== */

.services-section {
    background-color: var(--bg-secondary);
}

.service-card {
    background: var(--bg-primary);
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--transition-normal);
    border: 1px solid var(--border-color);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--secondary-color);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    transition: all var(--transition-normal);
}

.service-card:hover .service-icon {
    background: var(--gradient-secondary);
    transform: rotateY(180deg);
}

.service-title {
    font-family: var(--font-secondary);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.service-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.btn-service {
    background: none;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    transition: all var(--transition-fast);
}

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

/* ==========================================
   BENEFITS SECTION
   ========================================== */

.benefits-section {
    background: var(--gradient-primary);
    color: white;
}

.benefits-section .section-subtitle {
    color: var(--secondary-light);
}

.benefits-section .section-title {
    color: white;
}

.benefit-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    backdrop-filter: blur(10px);
}

.benefit-item i {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-right: 1rem;
}

.benefit-item span {
    font-weight: 500;
}

/* ==========================================
   TECHNOLOGIES SECTION
   ========================================== */

.technologies-section {
    background-color: var(--bg-primary);
}

.techSwiper {
    padding: 2rem 0;
}

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
    height: 120px;
}

.tech-item:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
    background: var(--gradient-primary);
}

.tech-item:hover i,
.tech-item:hover span {
    color: white;
}

.tech-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    transition: color var(--transition-fast);
}

.tech-item span {
    font-weight: 600;
    color: var(--text-primary);
    transition: color var(--transition-fast);
}

/* ==========================================
   PORTFOLIO SECTION
   ========================================== */

.portfolio-section {
    background-color: var(--bg-secondary);
}

.portfolio-filter {
    margin-bottom: 2rem;
}

.filter-btn {
    background: none;
    border: 2px solid var(--border-color);
    color: var(--text-secondary);
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-full);
    margin: 0.25rem;
    font-weight: 500;
    transition: all var(--transition-fast);
}

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

.portfolio-card {
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    height: 100%;
}

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

.portfolio-icon {
    height: 150px;
    background: var(--gradient-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
}

.portfolio-icon i {
    font-size: 4rem;
    color: white;
    transition: all var(--transition-fast);
}

.portfolio-card:hover .portfolio-icon {
    background: var(--gradient-primary);
}

.portfolio-card:hover .portfolio-icon i {
    transform: scale(1.1);
}

.portfolio-image {
    position: relative;
    overflow: hidden;
    height: 300px;
    background: var(--bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.portfolio-image.portfolio-logo img {
    object-fit: contain;
    padding: 0;
    max-width: 100%;
    max-height: 100%;
}

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

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 29, 57, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-lightbox,
.portfolio-link {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.5rem;
    transition: all var(--transition-fast);
    text-decoration: none;
}

.portfolio-lightbox:hover,
.portfolio-link:hover {
    background: var(--secondary-color);
    color: white;
    transform: scale(1.1);
}

.portfolio-info {
    padding: 1.5rem;
    text-align: center;
}

.portfolio-info h4 {
    font-family: var(--font-secondary);
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.portfolio-info p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.btn-portfolio {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--bg-secondary);
    color: var(--text-primary);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all var(--transition-fast);
}

.btn-portfolio:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-2px);
}

/* ==========================================
   DIFFERENTIALS SECTION
   ========================================== */

.differentials-section {
    background: var(--gradient-secondary);
    color: white;
    padding: 4rem 0;
}

.differentialSwiper {
    padding: 2rem 0;
}

.differential-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 3rem 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
}

.differential-card h3 {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    font-weight: 700;
}

/* ==========================================
   PROCESS SECTION
   ========================================== */

.process-section {
    background-color: var(--bg-primary);
}

.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: var(--gradient-primary);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-number {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-secondary);
    font-size: 1.75rem;
    font-weight: 800;
    color: white;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    box-shadow: var(--shadow-lg);
}

.timeline-content {
    flex: 1;
    padding: 2rem;
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    margin: 0 4rem;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.timeline-item:nth-child(odd) .timeline-content {
    text-align: right;
}

.timeline-content h4 {
    font-family: var(--font-secondary);
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    font-size: 1.25rem;
}

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

/* ==========================================
   PARTNERS SECTION
   ========================================== */

.partners-section {
    background-color: var(--bg-secondary);
}

.partnersSwiper {
    padding: 2rem 0;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    height: 120px;
    transition: all var(--transition-normal);
    text-decoration: none;
    border: 2px solid var(--border-color);
}

.partner-logo:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary-color);
}

.partner-logo-img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: all var(--transition-fast);
}

.partner-logo span {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1rem;
    text-align: center;
    transition: color var(--transition-fast);
}

.partner-logo:hover span {
    color: var(--secondary-color);
}

/* ==========================================
   INSTAGRAM SECTION
   ========================================== */

.instagram-section {
    background-color: var(--bg-primary);
}

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

.instagram-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    aspect-ratio: 1;
}

.instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.instagram-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 29, 57, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

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

.instagram-overlay i {
    font-size: 2rem;
    color: white;
}

/* ==========================================
   GOOGLE REVIEWS SECTION
   ========================================== */

.google-reviews-section {
    background-color: var(--bg-secondary);
}

.google-business-card {
    max-width: 400px;
    margin: 0 auto;
    background: var(--bg-primary);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.google-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.google-header i {
    font-size: 2.5rem;
    color: #4285f4;
}

.google-header h4 {
    font-family: var(--font-secondary);
    font-weight: 700;
    color: var(--text-primary);
}

.google-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.google-rating i {
    color: #ffc107;
}

.google-rating span {
    font-weight: 700;
    color: var(--text-primary);
}

.google-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.btn-google {
    background: #4285f4;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    transition: all var(--transition-normal);
}

.btn-google:hover {
    background: #3367d6;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ==========================================
   TESTIMONIALS SECTION
   ========================================== */

.testimonials-section {
    background-color: var(--bg-primary);
}

.testimonialsSwiper {
    padding: 2rem 0;
}

.testimonial-card {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
}

.testimonial-rating {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.testimonial-rating i {
    color: #ffc107;
}

.testimonial-text {
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

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

.author-info h5 {
    font-family: var(--font-secondary);
    font-weight: 700;
    margin-bottom: 0;
    color: var(--text-primary);
}

.author-info span {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* ==========================================
   FAQ SECTION
   ========================================== */

.faq-section {
    background-color: var(--bg-secondary);
}

.accordion-item {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    margin-bottom: 0.5rem;
    overflow: hidden;
}

.accordion-button {
    background: var(--bg-primary);
    color: var(--text-primary);
    font-weight: 600;
    padding: 1rem 1.5rem;
}

.accordion-button:not(.collapsed) {
    background: var(--gradient-primary);
    color: white;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-body {
    background: var(--bg-primary);
    color: var(--text-secondary);
    padding: 1rem 1.5rem;
}

/* ==========================================
   CONTACT SECTION
   ========================================== */

.contact-section {
    background-color: var(--bg-primary);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

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

.contact-details h4 {
    font-family: var(--font-secondary);
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.contact-details p,
.contact-details a {
    color: var(--text-secondary);
    transition: color var(--transition-fast);
}

.contact-details a:hover {
    color: var(--primary-color);
}

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

.social-link {
    width: 45px;
    height: 45px;
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    font-size: 1.25rem;
    transition: all var(--transition-fast);
}

.social-link:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-3px);
}

.contact-form {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: var(--radius-lg);
}

.form-control,
.form-select {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 29, 57, 0.1);
}

.form-control::placeholder {
    color: var(--text-muted);
}

.form-check-input {
    border-color: var(--border-color);
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.form-check-label {
    color: var(--text-secondary);
}

.btn-primary {
    background: var(--gradient-primary);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: all var(--transition-normal);
}

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

/* ==========================================
   MAP SECTION
   ========================================== */

.map-section {
    padding: 0;
}

.map-placeholder iframe {
    width: 100%;
    border: none;
}

/* ==========================================
   FOOTER
   ========================================== */

.footer {
    background: var(--primary-color);
    color: white;
    padding: 4rem 0 0;
}

.footer-logo {
    height: 120px;
    width: auto;
    max-width: 350px;
}

.footer-text {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all var(--transition-fast);
}

.footer-social-link:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-title {
    font-family: var(--font-secondary);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

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

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-fast);
}

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

.footer-contact ul li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact ul li i {
    color: var(--secondary-color);
    margin-top: 0.25rem;
}

.footer-bottom {
    margin-top: 3rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-end;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-fast);
}

.footer-legal a:hover {
    color: var(--secondary-color);
}

/* ==========================================
   FLOATING BUTTONS
   ========================================== */

.floating-buttons {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    z-index: 1000;
}

.floating-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    cursor: pointer;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-lg);
}

.whatsapp-btn {
    background: #25D366;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    background: #20bd5a;
}

.instagram-btn {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.instagram-btn:hover {
    transform: scale(1.1);
}

.chatbot-btn {
    background: var(--gradient-primary);
}

.chatbot-btn:hover {
    transform: scale(1.1);
}

/* ==========================================
   CHATBOT
   ========================================== */

.chatbot {
    position: fixed;
    bottom: 7rem;
    right: 2rem;
    width: 350px;
    max-width: calc(100vw - 4rem);
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    z-index: 1000;
    overflow: hidden;
    transform: translateY(20px);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
}

.chatbot.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.chatbot-header {
    background: var(--gradient-primary);
    color: white;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chatbot-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
}

.chatbot-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.25rem;
    cursor: pointer;
    transition: transform var(--transition-fast);
}

.chatbot-close:hover {
    transform: rotate(90deg);
}

.chatbot-messages {
    max-height: 300px;
    overflow-y: auto;
    padding: 1.5rem;
    background: var(--bg-secondary);
}

.chatbot-message {
    margin-bottom: 1rem;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    max-width: 80%;
}

.bot-message {
    background: var(--bg-tertiary);
    color: var(--text-primary);
}

.user-message {
    background: var(--gradient-primary);
    color: white;
    margin-left: auto;
}

.chatbot-options {
    padding: 1rem;
    background: var(--bg-primary);
    border-top: 1px solid var(--border-color);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.chatbot-option {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 0.75rem;
    font-size: 0.875rem;
    color: var(--text-primary);
    cursor: pointer;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.chatbot-option:hover {
    background: var(--gradient-primary);
    border-color: var(--primary-color);
    color: white;
}

.chatbot-option i {
    font-size: 1rem;
}

/* ==========================================
   BACK TO TOP
   ========================================== */

.back-to-top {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.25rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    z-index: 999;
    box-shadow: var(--shadow-lg);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-3px);
}

/* ==========================================
   GLIGHTBOX CUSTOMIZATION
   ========================================== */

.glightbox-clean {
    background: rgba(0, 29, 57, 0.95);
}

.glightbox-clean .gslide-description {
    color: white;
}

/* ==========================================
   SCROLLBAR
   ========================================== */

::-webkit-scrollbar {
    width: 10px;
}

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

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
}

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