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

/* Variables */
:root {
    --bg-primary: #09090b;
    --bg-secondary: #121217;
    --bg-card: rgba(18, 18, 23, 0.8);
    --bg-glass: rgba(9, 9, 11, 0.85);
    
    --primary: #e3913b;
    --primary-rgb: 227, 145, 59;
    --primary-hover: #fca74f;
    --primary-glow: rgba(227, 145, 59, 0.15);
    
    --text-primary: #ffffff;
    --text-secondary: #b3b3c2;
    --text-muted: #71717a;
    
    --border: rgba(227, 145, 59, 0.15);
    --border-hover: rgba(227, 145, 59, 0.4);
    --border-light: rgba(255, 255, 255, 0.05);
    
    --font-headings: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.5);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.7);
    --shadow-primary: 0 0 20px rgba(227, 145, 59, 0.25);
    
    --max-width: 1200px;
    --header-height: 90px;
}

/* Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    height: 100%;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-secondary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

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

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

button, input, textarea {
    font-family: inherit;
    background: none;
    border: none;
    outline: none;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: #27272a;
    border-radius: 5px;
    border: 2px solid var(--bg-primary);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Typography & General Utilities */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-headings);
    color: var(--text-primary);
    font-weight: 600;
    line-height: 1.2;
}

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

.title-gradient {
    background: linear-gradient(135deg, #ffffff 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--primary);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem auto;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-secondary);
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

.section-padding {
    padding: 6.5rem 0;
}

/* Glassmorphism utility */
.glass {
    background: var(--bg-glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-light);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.75rem;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    transition: transform 0.3s ease;
}

.btn-primary {
    background-color: var(--primary);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(227, 145, 59, 0.2);
}

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

.btn-primary:hover svg {
    transform: translateX(3px);
}

.btn-secondary {
    border: 1px solid var(--primary);
    color: var(--primary);
}

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

.btn-secondary:hover svg {
    transform: translateX(3px);
}

/* Header & Navigation (Fixed Vertical Alignment) */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    transition: var(--transition-smooth);
    border-bottom: 1px solid transparent;
}

.header.scrolled {
    background: var(--bg-glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    height: 70px;
    border-bottom: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}

.header-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 64px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.6)) drop-shadow(0 0 14px rgba(227, 145, 59, 0.25));
    transition: var(--transition-smooth);
}

.logo:hover img {
    transform: scale(1.04);
    filter: drop-shadow(0 4px 20px rgba(227, 145, 59, 0.5));
}

.header.scrolled .logo img {
    height: 52px;
}

.nav {
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-list {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 2.2rem;
    height: 100%;
    margin: 0;
    padding: 0;
}

.nav-list > li {
    display: flex;
    align-items: center;
    height: 100%;
    position: relative;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    padding: 0.5rem 0;
    display: inline-flex;
    align-items: center;
    line-height: 1.2;
    cursor: pointer;
}

/* Perfect alignment underline positioned strictly below text */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition-smooth);
    border-radius: 2px;
}

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

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

/* Dropdown Menu Vertical Alignment Fix */
.nav-item-dropdown {
    position: relative;
}

.dropdown-trigger {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    cursor: pointer;
}

.dropdown-trigger svg {
    transition: transform 0.3s ease;
    flex-shrink: 0;
    vertical-align: middle;
}

.nav-item-dropdown:hover .dropdown-trigger svg {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% - 0.75rem);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 0.75rem;
    list-style: none;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-md);
    z-index: 1050;
}

.nav-item-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
    display: block;
    width: 100%;
}

.dropdown-menu li a {
    display: block;
    padding: 0.6rem 1rem;
    border-radius: 6px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.dropdown-menu li a:hover {
    background-color: rgba(255, 255, 255, 0.04);
    color: var(--primary);
}

.nav-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--text-primary);
    cursor: pointer;
}

/* Hero Section & Background Carousel */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: var(--header-height);
    overflow: hidden;
}

.about-hero {
    min-height: 55vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: var(--header-height);
    overflow: hidden;
}

.hero-carousel {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.08);
    transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1), transform 7s ease-out;
}

.hero-slide.active {
    opacity: 0.42; /* Clean dark opacity for readability */
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(180deg, rgba(9, 9, 11, 0.85) 0%, rgba(9, 9, 11, 0.6) 50%, rgba(9, 9, 11, 0.95) 100%),
                radial-gradient(circle at 15% 50%, rgba(227, 145, 59, 0.15) 0%, transparent 60%);
}

.hero-container {
    position: relative;
    z-index: 3;
}

.hero-content {
    max-width: 680px;
}

.hero-title {
    font-size: 3.6rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #d1d1db;
    margin-bottom: 2.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
}

/* Carousel Control Dots */
.carousel-dots {
    position: absolute;
    bottom: 2.5rem;
    right: 3rem;
    z-index: 4;
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.carousel-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

.carousel-dots .dot:hover {
    background-color: rgba(255, 255, 255, 0.6);
}

.carousel-dots .dot.active {
    width: 32px;
    border-radius: 20px;
    background-color: var(--primary);
    box-shadow: 0 0 10px rgba(227, 145, 59, 0.6);
}

/* Grid Sections (O que fazemos) */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 2.5rem;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(227, 145, 59, 0.05) 0%, rgba(0, 0, 0, 0) 100%);
    opacity: 0;
    transition: var(--transition-smooth);
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-hover);
    box-shadow: var(--shadow-md);
}

.service-card:hover::before {
    opacity: 1;
}

.card-icon {
    width: 54px;
    height: 54px;
    background: rgba(227, 145, 59, 0.1);
    color: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    border: 1px solid rgba(227, 145, 59, 0.2);
}

.card-icon svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.service-card h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Split Showcase Section */
.showcase-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.showcase-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.showcase-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.showcase-features {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.showcase-feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 500;
}

.showcase-feature-item svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
}

.showcase-image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-md);
}

.showcase-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.showcase-image-wrapper:hover .showcase-image {
    transform: scale(1.03);
}

/* Partners / Clients Grid (3 Columns Horizontal) */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: stretch;
}

.partner-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 2.2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    min-height: 175px;
    text-align: center;
    position: relative;
}

.partner-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-hover);
    box-shadow: var(--shadow-md);
}

.partner-logo-box {
    background: #ffffff;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 210px;
    height: 72px;
    margin-bottom: 0.75rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.partner-logo-box img {
    max-height: 52px;
    max-width: 100%;
    object-fit: contain;
}

.partner-card h3 {
    color: var(--text-primary);
    font-size: 1.15rem;
    font-weight: 600;
    margin-top: 0.25rem;
    margin-bottom: 0.2rem;
}

.partner-category {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--primary);
    margin-top: 0.35rem;
    text-transform: uppercase;
}

.highlight-banner {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.highlight-quote {
    font-family: var(--font-headings);
    font-size: 1.85rem;
    font-weight: 600;
    line-height: 1.5;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.highlight-author {
    color: var(--primary);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

/* Tabs Component (Services Page) */
.tabs-container {
    margin-top: 2rem;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 1.5rem;
}

.tab-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 500;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition-fast);
    border: 1px solid transparent;
}

.tab-btn:hover {
    color: var(--primary);
    background-color: rgba(255, 255, 255, 0.02);
}

.tab-btn.active {
    background-color: var(--primary-glow);
    color: var(--primary);
    border-color: var(--border);
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

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

/* Plans & Pricing Cards */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.plan-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 3rem 2.2rem;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
    position: relative;
}

.plan-card.featured {
    border-color: var(--primary);
    box-shadow: var(--shadow-primary);
}

.plan-tag {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background-color: var(--primary);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    text-transform: uppercase;
}

.plan-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-hover);
    box-shadow: var(--shadow-md);
}

.plan-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.plan-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-grow: 1;
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.plan-features li svg {
    width: 18px;
    height: 18px;
    color: var(--primary);
    margin-top: 0.2rem;
    flex-shrink: 0;
}

/* Portfolio Filters and Gallery */
.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.5rem 1.25rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    color: var(--text-secondary);
    transition: var(--transition-fast);
    border: 1px solid var(--border-light);
}

.filter-btn:hover {
    color: var(--primary);
    border-color: var(--primary);
}

.filter-btn.active {
    background-color: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
    box-shadow: 0 4px 10px rgba(227, 145, 59, 0.2);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 2rem;
}

.portfolio-item {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--border-light);
    aspect-ratio: 16/9;
    cursor: pointer;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.3) 70%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: var(--transition-smooth);
}

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

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

.portfolio-overlay h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

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

.play-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary);
    font-weight: 600;
}

.play-badge svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

/* Lightbox Modal */
.modal {
    position: fixed;
    inset: 0;
    background-color: rgba(9, 9, 11, 0.95);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.modal.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-wrapper {
    width: 90%;
    max-width: 960px;
    position: relative;
}

.modal-content-container {
    width: 100%;
    aspect-ratio: 16/9;
    background-color: #000000;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-light);
}

.modal-content-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.modal-close {
    position: absolute;
    top: -2.5rem;
    right: 0;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.modal-close:hover {
    color: var(--primary);
}

/* Contact Page Layout */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

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

.contact-info h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.info-block {
    display: flex;
    gap: 1.25rem;
}

.info-icon {
    width: 46px;
    height: 46px;
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-light);
    color: var(--primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.info-icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.info-details h4 {
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
}

.info-details p, .info-details a {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

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

.contact-form {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 3rem;
}

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

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

.form-control {
    width: 100%;
    background-color: var(--bg-primary);
    border: 1px solid var(--border-light);
    color: var(--text-primary);
    padding: 0.85rem 1rem;
    border-radius: 6px;
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 1px var(--primary);
}

textarea.form-control {
    resize: vertical;
    min-height: 130px;
}

.form-message {
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    display: none;
}

.form-message.success {
    display: block;
    background-color: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #10b981;
}

.form-message.error {
    display: block;
    background-color: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

/* Footer */
.footer {
    background-color: #050507;
    border-top: 1px solid var(--border-light);
    padding: 5rem 0 2rem 0;
    margin-top: auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-about p {
    margin: 1.5rem 0;
    max-width: 320px;
    font-size: 0.95rem;
}

.footer-links h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary);
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links ul a {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.footer-links ul a:hover {
    color: var(--primary);
    padding-left: 4px;
}

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

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.social-icon svg {
    width: 16px;
    height: 16px;
    fill: var(--text-secondary);
    transition: var(--transition-fast);
}

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

.social-icon:hover svg {
    fill: #ffffff;
    transform: scale(1.1);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-light);
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Floating WhatsApp Widget (Clean official styling) */
.whatsapp-bubble {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    display: flex;
    align-items: center;
}

.wa-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    transition: var(--transition-smooth);
    color: #ffffff;
}

.wa-btn svg {
    width: 32px;
    height: 32px;
    fill: #ffffff;
}

.wa-btn:hover {
    transform: scale(1.08) rotate(6deg);
    box-shadow: 0 6px 22px rgba(37, 211, 102, 0.6);
}

.wa-tooltip {
    position: absolute;
    right: 75px;
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-light);
    color: var(--text-primary);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
    box-shadow: var(--shadow-sm);
    pointer-events: none;
    opacity: 0;
    transform: translateX(10px);
    transition: var(--transition-smooth);
}

.whatsapp-bubble:hover .wa-tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* Scroll Animation classes */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .showcase-split {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .showcase-image-wrapper {
        order: -1;
    }
    
    .showcase-image {
        height: 350px;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }
    
    .section-padding {
        padding: 4.5rem 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.05rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .nav-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        color: var(--text-primary);
        cursor: pointer;
        z-index: 1002;
        padding: 0.5rem;
    }
    
    .nav {
        position: fixed;
        top: var(--header-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background-color: #09090b;
        flex-direction: column;
        align-items: flex-start;
        padding: 2.5rem 2rem;
        gap: 2rem;
        transition: var(--transition-smooth);
        border-top: 1px solid var(--border-light);
        z-index: 1001;
        overflow-y: auto;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.9);
    }
    
    .nav.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: 1.25rem;
        height: auto;
    }

    .nav-list > li {
        height: auto;
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .nav-link {
        font-size: 1.15rem;
        display: inline-flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 0.6rem 0;
    }
    
    .nav-link::after {
        bottom: 0;
    }
    
    .dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        border: none;
        background-color: rgba(255, 255, 255, 0.02);
        border-left: 2px solid var(--primary);
        border-radius: 0 8px 8px 0;
        padding-left: 1rem;
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
        margin-top: 0.5rem;
        width: 100%;
        display: none;
    }
    
    .nav-item-dropdown.active .dropdown-menu {
        display: block;
    }
    
    .carousel-dots {
        right: 50%;
        transform: translateX(50%);
        bottom: 1.5rem;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .whatsapp-bubble {
        bottom: 1.5rem;
        right: 1.5rem;
    }
    
    .wa-btn {
        width: 50px;
        height: 50px;
    }
    
    .wa-btn svg {
        width: 26px;
        height: 26px;
    }
}
