/* ==========================================
   RESET & BASE STYLES
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors - Paleta Amarelo Abelha */
    --primary: #FFC107;
    --primary-dark: #FFA000;
    --primary-light: #FFECB3;
    --secondary: #FFD54F;
    --accent: #FF6F00;
    
    /* Neutral Colors - Light Theme */
    --white: #FFFFFF;
    --black: #212121;
    --bg-primary: #FFFFFF;
    --bg-secondary: #FAFAFA;
    --bg-tertiary: #F5F5F5;
    --text-primary: #212121;
    --text-secondary: #616161;
    --text-tertiary: #757575;
    --border-color: #E0E0E0;
    --shadow-color: rgba(0, 0, 0, 0.1);
    
    --gray-50: #FAFAFA;
    --gray-100: #F5F5F5;
    --gray-200: #EEEEEE;
    --gray-300: #E0E0E0;
    --gray-400: #BDBDBD;
    --gray-500: #9E9E9E;
    --gray-600: #757575;
    --gray-700: #616161;
    --gray-800: #424242;
    --gray-900: #212121;
    
    /* Semantic Colors */
    --success: #4CAF50;
    --warning: #FF9800;
    --error: #F44336;
    --info: #2196F3;
    
    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Quicksand', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    
    /* Border Radius */
    --radius-sm: 0.5rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    
    /* Transitions */
    --transition: all 0.3s ease;
}

/* Dark Theme */
[data-theme="dark"] {
    --primary: #FFD54F;
    --primary-dark: #FFC107;
    --primary-light: #4A4A4A;
    
    --bg-primary: #121212;
    --bg-secondary: #1E1E1E;
    --bg-tertiary: #2D2D2D;
    --text-primary: #FFFFFF;
    --text-secondary: #B0B0B0;
    --text-tertiary: #808080;
    --border-color: #3A3A3A;
    --shadow-color: rgba(0, 0, 0, 0.5);
    
    --gray-50: #2D2D2D;
    --gray-100: #2D2D2D;
    --gray-200: #3A3A3A;
    --gray-300: #4A4A4A;
    --gray-400: #606060;
    --gray-500: #808080;
    --gray-600: #B0B0B0;
    --gray-700: #D0D0D0;
    --gray-800: #E0E0E0;
    --gray-900: #FFFFFF;
    
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.6);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--text-primary);
    line-height: 1.6;
    background-color: var(--bg-primary);
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ==========================================
   TYPOGRAPHY
   ========================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.75rem; }
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--radius-full);
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-text {
    background: transparent;
    color: var(--primary);
    padding: 0.5rem 0;
}

.btn-text:hover {
    color: var(--primary-dark);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* ==========================================
   HEADER & NAVIGATION
   ========================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--bg-primary);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: background-color 0.3s ease;
}

[data-theme="dark"] .header {
    background: rgba(18, 18, 18, 0.95);
}

.navbar {
    padding: 1rem 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    font-family: var(--font-secondary);
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--text-primary);
    padding: 0.25rem 0;
}

.logo-icon {
    font-size: 2.25rem;
    line-height: 1;
}

.logo-text {
    letter-spacing: -0.02em;
}

.theme-toggle {
    background: var(--bg-tertiary);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-primary);
    font-size: 1.125rem;
    transition: var(--transition);
}

.theme-toggle:hover {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-md);
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
    background: var(--bg-tertiary);
}

.btn-primary-nav {
    background: var(--primary);
    color: var(--white);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 0.25rem;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--gray-800);
    border-radius: 2px;
    transition: var(--transition);
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: var(--spacing-lg);
        box-shadow: var(--shadow-lg);
        transform: translateX(-100%);
        transition: var(--transition);
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
    padding-top: 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--bg-secondary);
    transition: background-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Abelhinhas Animadas */
.flying-bees {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.bee {
    position: absolute;
    font-size: 2rem;
    opacity: 0.7;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.1));
}

.bee-1 {
    top: 20%;
    left: -50px;
    animation: fly-right 15s linear infinite;
}

.bee-2 {
    top: 40%;
    right: -50px;
    animation: fly-left 18s linear infinite 2s;
}

.bee-3 {
    top: 60%;
    left: -50px;
    animation: fly-diagonal-right 20s linear infinite 4s;
}

.bee-4 {
    top: 15%;
    right: -50px;
    animation: fly-diagonal-left 17s linear infinite 1s;
}

.bee-5 {
    top: 70%;
    left: -50px;
    animation: fly-right 16s linear infinite 6s;
}

.bee-6 {
    top: 35%;
    right: -50px;
    animation: fly-wavy 22s linear infinite 3s;
}

@keyframes fly-right {
    0% {
        transform: translateX(0) translateY(0) scaleX(-1) rotate(0deg);
    }
    25% {
        transform: translateX(calc(25vw)) translateY(-10px) scaleX(-1) rotate(-8deg);
    }
    50% {
        transform: translateX(calc(50vw)) translateY(0) scaleX(-1) rotate(5deg);
    }
    75% {
        transform: translateX(calc(75vw)) translateY(-10px) scaleX(-1) rotate(-8deg);
    }
    100% {
        transform: translateX(calc(100vw + 100px)) translateY(0) scaleX(-1) rotate(0deg);
    }
}

@keyframes fly-left {
    0% {
        transform: translateX(0) translateY(0) rotate(0deg);
    }
    25% {
        transform: translateX(calc(-25vw)) translateY(10px) rotate(-8deg);
    }
    50% {
        transform: translateX(calc(-50vw)) translateY(0) rotate(5deg);
    }
    75% {
        transform: translateX(calc(-75vw)) translateY(10px) rotate(-8deg);
    }
    100% {
        transform: translateX(calc(-100vw - 100px)) translateY(0) rotate(0deg);
    }
}

@keyframes fly-diagonal-right {
    0% {
        transform: translateX(0) translateY(0) scaleX(-1) rotate(-10deg);
    }
    33% {
        transform: translateX(calc(33vw)) translateY(-60px) scaleX(-1) rotate(5deg);
    }
    66% {
        transform: translateX(calc(66vw)) translateY(-30px) scaleX(-1) rotate(-10deg);
    }
    100% {
        transform: translateX(calc(100vw + 100px)) translateY(0) scaleX(-1) rotate(5deg);
    }
}

@keyframes fly-diagonal-left {
    0% {
        transform: translateX(0) translateY(0) rotate(-10deg);
    }
    33% {
        transform: translateX(calc(-33vw)) translateY(60px) rotate(5deg);
    }
    66% {
        transform: translateX(calc(-66vw)) translateY(30px) rotate(-10deg);
    }
    100% {
        transform: translateX(calc(-100vw - 100px)) translateY(0) rotate(5deg);
    }
}

@keyframes fly-wavy {
    0% {
        transform: translateX(0) translateY(0) rotate(0deg);
    }
    20% {
        transform: translateX(calc(-20vw)) translateY(-50px) rotate(-10deg);
    }
    40% {
        transform: translateX(calc(-40vw)) translateY(-20px) rotate(5deg);
    }
    60% {
        transform: translateX(calc(-60vw)) translateY(50px) rotate(-10deg);
    }
    80% {
        transform: translateX(calc(-80vw)) translateY(20px) rotate(5deg);
    }
    100% {
        transform: translateX(calc(-100vw - 100px)) translateY(0) rotate(0deg);
    }
}

[data-theme="light"] .hero {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--white) 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
    padding: var(--spacing-2xl) 0;
    position: relative;
    z-index: 2;
}

.hero-label {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: var(--spacing-md);
    line-height: 1.1;
}

.highlight {
    color: var(--primary);
    position: relative;
}

.bee-icon {
    display: inline-block;
    margin-left: 0.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-600);
    margin-bottom: var(--spacing-lg);
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.hero-stats {
    display: flex;
    gap: var(--spacing-lg);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-700);
}

.stat-item i {
    color: var(--primary);
    font-size: 1.5rem;
}

.hero-image {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: contain;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.image-placeholder {
    background: var(--gray-200);
    border-radius: var(--radius-lg);
    aspect-ratio: 3/4;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--gray-500);
    width: 100%;
    overflow: hidden;
}

.image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* ==========================================
   SECTION STYLES
   ========================================== */
section {
    padding: var(--spacing-2xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.section-label {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 1px;
    margin-bottom: var(--spacing-sm);
}

.section-title {
    margin-bottom: var(--spacing-md);
}

.section-description {
    font-size: 1.125rem;
    color: var(--gray-600);
    max-width: 700px;
    margin: 0 auto;
}

/* ==========================================
   ESPECIALIDADES SECTION
   ========================================== */
.especialidades {
    background: var(--bg-secondary);
}

.especialidades-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
}

.card-especialidade {
    background: var(--bg-primary);
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.card-especialidade:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
}

.card-icon i {
    font-size: 2rem;
    color: var(--white);
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
}

.card-description {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
}

.card-list {
    list-style: none;
    margin-bottom: var(--spacing-md);
}

.card-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--gray-700);
}

.card-list i {
    color: var(--success);
    margin-top: 0.25rem;
}

/* ==========================================
   SOBRE SECTION
   ========================================== */
.sobre-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

/* Novo layout V2 */
.sobre-wrapper-v2 {
    max-width: 900px;
    margin: 0 auto;
}

.sobre-header {
    position: relative;
    margin-bottom: var(--spacing-xl);
}

.section-label-top {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--primary);
    color: var(--gray-900);
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sobre-profile-card {
    background: var(--gray-900);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    box-shadow: var(--shadow-lg);
}

.profile-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary);
}

.profile-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    color: var(--white);
}

.profile-info strong {
    font-size: 1.125rem;
    font-weight: 700;
}

.profile-info span {
    font-size: 0.875rem;
    color: var(--gray-300);
}

.sobre-content-v2 {
    text-align: center;
}

.section-title-center {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: var(--spacing-lg);
    font-weight: 700;
}

.sobre-text-full {
    margin-bottom: var(--spacing-md);
    font-size: 1.125rem;
    color: var(--gray-700);
    text-align: left;
    line-height: 1.8;
}

.sobre-quote-v2 {
    background: var(--primary-light);
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    margin: var(--spacing-xl) 0;
    position: relative;
}

.sobre-quote-v2 i {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.sobre-quote-v2 p {
    font-size: 1.125rem;
    color: var(--gray-800);
    font-style: italic;
}

.sobre-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
    margin: var(--spacing-xl) 0;
}

.badge-item {
    background: var(--bg-secondary);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    transition: var(--transition);
}

.badge-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.badge-item i {
    color: var(--primary);
    font-size: 1.5rem;
}

.badge-item strong {
    display: block;
    color: var(--gray-900);
    font-size: 0.95rem;
}

.badge-item span {
    display: block;
    font-size: 0.8rem;
    color: var(--gray-600);
    line-height: 1.4;
}

.btn-center {
    margin: var(--spacing-lg) auto 0;
    display: inline-flex;
}

/* Layout antigo mantido para compatibilidade */
.sobre-image {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sobre-image img {
    width: 100%;
    max-width: 450px;
    height: auto;
    object-fit: contain;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.sobre-image .image-placeholder {
    min-height: 400px;
}

.sobre-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--white);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    z-index: 10;
}

.sobre-badge i {
    font-size: 2rem;
    color: var(--primary);
}

.sobre-badge strong {
    display: block;
    color: var(--gray-900);
}

.sobre-badge span {
    display: block;
    font-size: 0.875rem;
    color: var(--gray-600);
}

.sobre-text {
    margin-bottom: var(--spacing-md);
    font-size: 1.125rem;
    color: var(--gray-700);
}

.sobre-quote {
    background: var(--primary-light);
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary);
    margin: var(--spacing-lg) 0;
    position: relative;
}

.sobre-quote i {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.sobre-quote p {
    font-size: 1.125rem;
    color: var(--gray-800);
    font-style: italic;
}

.sobre-features {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.feature-item i {
    color: var(--success);
    font-size: 1.5rem;
}

.feature-item strong {
    display: block;
    color: var(--gray-900);
}

.feature-item span {
    display: block;
    font-size: 0.875rem;
    color: var(--gray-600);
}

@media (max-width: 768px) {
    .sobre-wrapper {
        grid-template-columns: 1fr;
    }
    
    .sobre-wrapper-v2 {
        padding: 0 var(--spacing-md);
    }
    
    .sobre-profile-card {
        flex-direction: column;
        text-align: center;
    }
    
    .section-label-top {
        position: static;
        display: inline-block;
        margin-bottom: var(--spacing-md);
    }
    
    .sobre-badges {
        grid-template-columns: 1fr;
    }
    
    .section-title-center {
        font-size: 2rem;
    }
}

/* ==========================================
   DEPOIMENTOS SECTION
   ========================================== */
.depoimentos {
    background: var(--bg-secondary);
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.card-depoimento {
    background: var(--bg-primary);
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.depoimento-rating {
    color: var(--primary);
    margin-bottom: var(--spacing-md);
}

.depoimento-text {
    font-size: 1.125rem;
    color: var(--gray-700);
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
}

.depoimento-author {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary-light);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.depoimento-author strong {
    display: block;
    color: var(--gray-900);
}

.depoimento-author span {
    display: block;
    font-size: 0.875rem;
    color: var(--gray-600);
}

/* ==========================================
   BLOG SECTION
   ========================================== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-lg);
}

.card-blog {
    background: var(--bg-primary);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.card-blog:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.blog-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-image .image-placeholder {
    height: 100%;
    border-radius: 0;
}

.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
}

.blog-content {
    padding: var(--spacing-lg);
}

.blog-title {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--gray-900);
}

.blog-excerpt {
    color: var(--gray-600);
    margin-bottom: var(--spacing-md);
}

/* ==========================================
   CONTATO SECTION
   ========================================== */
.contato {
    background: var(--bg-secondary);
}

.contato-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--spacing-xl);
}

.contato-text {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: var(--spacing-lg);
}

.contato-items {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.contato-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
}

.contato-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contato-item strong {
    display: block;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.contato-item a,
.contato-item p {
    color: var(--gray-600);
    text-decoration: none;
}

.contato-item a:hover {
    color: var(--primary);
}

.social-links {
    display: flex;
    gap: var(--spacing-sm);
}

.social-link {
    width: 45px;
    height: 45px;
    background: var(--primary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

.contato-form {
    background: var(--bg-primary);
    padding: var(--spacing-xl);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
}

.form-group label {
    display: block;
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition);
    background: var(--bg-primary);
    color: var(--text-primary);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group textarea {
    resize: vertical;
}

@media (max-width: 768px) {
    .contato-wrapper {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background: var(--bg-tertiary);
    color: var(--text-secondary);
    padding: var(--spacing-2xl) 0 var(--spacing-md);
    border-top: 1px solid var(--border-color);
}

[data-theme="dark"] .footer {
    background: #0A0A0A;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-secondary);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

.footer-tagline {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.footer-text {
    color: var(--gray-400);
    line-height: 1.6;
}

.footer-title {
    color: var(--text-primary);
    font-size: 1.125rem;
    margin-bottom: var(--spacing-md);
}

.footer-links,
.footer-contact {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: var(--gray-400);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-400);
}

.footer-contact i {
    color: var(--primary);
}

.footer-social {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: var(--gray-800);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-lg);
    border-top: 1px solid var(--gray-800);
    color: var(--gray-500);
    font-size: 0.875rem;
}

.footer-bottom span {
    color: var(--primary);
}

/* ==========================================
   BACK TO TOP BUTTON
   ========================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius-full);
    font-size: 1.25rem;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* ==========================================
   UTILITIES
   ========================================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: var(--spacing-xs); }
.mt-2 { margin-top: var(--spacing-sm); }
.mt-3 { margin-top: var(--spacing-md); }
.mt-4 { margin-top: var(--spacing-lg); }
.mt-5 { margin-top: var(--spacing-xl); }

.mb-1 { margin-bottom: var(--spacing-xs); }
.mb-2 { margin-bottom: var(--spacing-sm); }
.mb-3 { margin-bottom: var(--spacing-md); }
.mb-4 { margin-bottom: var(--spacing-lg); }
.mb-5 { margin-bottom: var(--spacing-xl); }
