/* Reset e configurações base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

html {
    margin: 0;
    padding: 0;
    height: 100%;
}

/* Variáveis de cores neutras */
:root {
    --primary-color: #6c757d;
    --primary-hover: #5a6268;
    --secondary-color: #f8f9fa;
    --accent-color: #495057;
    --text-color: #333;
    --text-dark: #212529;
    --text-muted: #6c757d;
    --border-color: #dee2e6;
    --light-bg: #f8f9fa;
    --shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    --shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.05);
    --shadow-md: 0 0.375rem 0.75rem rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    --success-color: #28a745;
    --warning-color: #ffc107;
    --primary-color-rgb: 108, 117, 125;
}

/* Top Bar */
.top-bar {
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 0;
    font-size: 0.875rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-info {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.top-bar-info span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
}

.top-bar-social {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.whatsapp-btn, .website-btn {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    text-decoration: none;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.whatsapp-btn:hover, .website-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    transform: translateY(-1px);
}

.top-bar a {
    transition: all 0.3s ease;
}

.top-bar a:hover {
    color: var(--primary-color) !important;
    transform: translateY(-1px);
}

.top-bar i {
    font-size: 0.75rem;
}

/* Navegação */
.navbar {
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.95) !important;
    top: 40px; /* Ajuste para top bar */
}

.navbar.scrolled {
    top: 0;
    background-color: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    transform: translateY(-2px);
}

.logo-container {
    position: relative;
    display: inline-block;
}

.logo-img {
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(108, 117, 125, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1;
}

.navbar-brand:hover .logo-glow {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.2);
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo {
    width: 40px;
    height: 40px;
    margin-right: 0.75rem;
    transition: all 0.3s ease;
}

.navbar-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-dark);
}

.brand-name {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--text-dark);
}

.brand-tagline {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 400;
}

.nav-link {
    font-weight: 500;
    color: var(--text-dark) !important;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.75rem 1rem !important;
    border-radius: 8px;
    margin: 0 0.25rem;
}

.nav-link:hover {
    color: var(--primary-color) !important;
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.nav-link i {
    transition: transform 0.3s ease;
}

.nav-link:hover i {
    transform: scale(1.1);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 80%;
}

.navbar-toggler {
    border: none !important;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.navbar-toggler:hover {
    background-color: var(--secondary-color);
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding-top: 120px; /* Ajuste para top bar + navbar */
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(108, 117, 125, 0.05) 0%, rgba(248, 249, 250, 0.1) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
}

.hero-badge .badge {
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 25px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

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

.hero-title {
    position: relative;
    line-height: 1.2;
}

.title-underline {
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
    transition: width 1s ease;
}

.hero-title:hover .title-underline {
    width: 100%;
}

.hero-description {
    font-size: 1.125rem;
    line-height: 1.7;
}

.hero-features {
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateX(5px);
}

.feature-item i {
    font-size: 1rem;
}

.hero-btn {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
}

.btn-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
}

.hero-btn:hover .btn-ripple {
    width: 300px;
    height: 300px;
}

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

.hero-visual {
    position: relative;
    z-index: 2;
}

.logo-container-hero {
    position: relative;
    display: inline-block;
}

.hero-logo {
    max-width: 400px;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
    position: relative;
    z-index: 2;
}

.logo-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.ring {
    position: absolute;
    border: 2px solid rgba(108, 117, 125, 0.1);
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite;
}

.ring-1 {
    width: 120px;
    height: 120px;
    animation-delay: 0s;
}

.ring-2 {
    width: 160px;
    height: 160px;
    animation-delay: 1s;
}

.ring-3 {
    width: 200px;
    height: 200px;
    animation-delay: 2s;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.float-element {
    position: absolute;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    animation: floatElement 4s ease-in-out infinite;
}

.float-element i {
    font-size: 1.25rem;
}

.float-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.float-2 {
    top: 60%;
    right: 15%;
    animation-delay: 1.5s;
}

.float-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 3s;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--text-muted);
    z-index: 2;
    animation: bounce 2s infinite;
}

.scroll-text {
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.scroll-arrow {
    font-size: 1.5rem;
    color: var(--primary-color);
}

/* Animações */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes pulse {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.6;
    }
}

@keyframes floatElement {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg);
    }
    50% { 
        transform: translateY(-15px) rotate(180deg);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Botões */
.btn {
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
}

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

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

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    background-color: transparent;
}

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

/* Cards e seções */
.card {
    transition: all 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
}

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

.service-card {
    transition: all 0.3s ease;
    border-radius: 12px;
    background: white;
}

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

.feature-icon {
    transition: transform 0.3s ease;
}

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

/* Seções */
section {
    position: relative;
}

main {
    flex: 1;
}

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

/* Títulos */
.display-4, .display-5 {
    font-weight: 700;
    letter-spacing: -0.02em;
}

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

/* Ícones de contato */
.contact-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--secondary-color);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.contact-info .d-flex:hover .contact-icon {
    background-color: var(--primary-color);
    color: white !important;
    transform: scale(1.1);
}

/* Formulário de contato */
.form-control {
    border-radius: 8px;
    border: 2px solid var(--border-color);
    padding: 12px 16px;
    transition: all 0.3s ease;
    font-size: 16px;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.25);
    outline: none;
}

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

/* Footer */
.footer-section {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #ecf0f1;
    position: relative;
    margin-top: 0;
    overflow: hidden;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="footerPattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ffffff" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23footerPattern)"/></svg>');
    opacity: 0.5;
}

.footer-main {
    padding: 60px 0 30px;
    position: relative;
    z-index: 2;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

.footer-widget {
    height: 100%;
}

.footer-logo img {
    transition: all 0.3s ease;
    filter: brightness(1.2);
}

.footer-logo:hover img {
    transform: scale(1.05);
    filter: brightness(1.5);
}

.footer-brand {
    color: #ecf0f1;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.footer-tagline {
    color: var(--primary-color);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.footer-description {
    color: #bdc3c7;
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.footer-badges .badge {
    font-size: 0.75rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 500;
    margin-bottom: 0.5rem;
    display: inline-block;
}

.footer-title {
    color: #ecf0f1;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
    display: inline-block;
}

.footer-title i {
    color: var(--primary-color);
}

.footer-subtitle {
    color: #ecf0f1;
    font-weight: 600;
    font-size: 0.95rem;
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    padding: 0.75rem;
    border-radius: 8px;
}

.footer-contact li:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(5px);
}

.footer-contact li i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-right: 1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
    width: 24px;
    text-align: center;
}

.footer-contact li div {
    display: flex;
    flex-direction: column;
}

.footer-contact li div span:first-child {
    color: #ecf0f1;
    font-weight: 500;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.footer-contact li div span:not(:first-child),
.footer-contact li div a {
    color: #bdc3c7;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-contact li div a:hover {
    color: var(--primary-color);
    transform: translateX(3px);
}

.footer-links {
    list-style: none;
    padding: 0;
}

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

.footer-links li a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 1rem;
    display: block;
    padding: 0.5rem 0;
}

.footer-links li a::before {
    content: '▸';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
    transform: translateX(-5px);
    opacity: 0;
}

.footer-links li a:hover {
    color: var(--primary-color);
    padding-left: 1.5rem;
}

.footer-links li a:hover::before {
    transform: translateX(0);
    opacity: 1;
}

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

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ecf0f1;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
    transform: translate(-50%, -50%);
}

.social-link:hover::before {
    width: 100%;
    height: 100%;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    border-color: var(--primary-color);
    color: var(--primary-color);
    box-shadow: 0 5px 20px rgba(108, 117, 125, 0.3);
}

.social-link.whatsapp:hover {
    border-color: #25d366;
    color: #25d366;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
}

.social-link.email:hover {
    border-color: #e74c3c;
    color: #e74c3c;
    box-shadow: 0 5px 20px rgba(231, 76, 60, 0.3);
}

.social-link.phone:hover {
    border-color: #3498db;
    color: #3498db;
    box-shadow: 0 5px 20px rgba(52, 152, 219, 0.3);
}

.social-link.website:hover {
    border-color: #9b59b6;
    color: #9b59b6;
    box-shadow: 0 5px 20px rgba(155, 89, 182, 0.3);
}

.footer-copyright {
    color: #bdc3c7;
    font-size: 0.9rem;
}

.footer-copyright strong {
    color: #ecf0f1;
    font-weight: 600;
}

.footer-meta {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
}

.footer-badge {
    background: rgba(255, 255, 255, 0.1);
    color: #ecf0f1;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.footer-badge:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.footer-badge i {
    color: var(--primary-color);
}

/* FAQ Section */
.faq-section {
    position: relative;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

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

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
}

.faq-question:hover {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.faq-question h5 {
    color: var(--text-dark);
    font-weight: 600;
    margin: 0;
    flex: 1;
    transition: color 0.3s ease;
}

.faq-question:hover h5 {
    color: var(--primary-color);
}

.faq-question i:first-child {
    font-size: 1.2rem;
    margin-right: 1rem;
}

.faq-arrow {
    font-size: 1.1rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-question[aria-expanded="true"] .faq-arrow {
    transform: rotate(180deg);
    color: var(--accent-color);
}

.faq-answer {
    background: white;
}

.faq-content {
    padding: 1.5rem;
    color: var(--text-muted);
    line-height: 1.7;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.faq-content p {
    margin: 0;
    font-size: 0.95rem;
}

.faq-content strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* FAQ CTA Section */
.faq-cta-content {
    background: white;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.faq-cta-content:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.faq-cta h4 {
    color: var(--text-dark);
    font-weight: 700;
}

.faq-cta .btn {
    border-radius: 8px;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
}

.faq-cta .btn-success {
    background-color: #25d366;
    border-color: #25d366;
}

.faq-cta .btn-success:hover {
    background-color: #128c7e;
    border-color: #128c7e;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Animações do FAQ */
.faq-item {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.2s; }
.faq-item:nth-child(3) { animation-delay: 0.3s; }
.faq-item:nth-child(4) { animation-delay: 0.4s; }
.faq-item:nth-child(5) { animation-delay: 0.5s; }
.faq-item:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Garantir que não há espaços extras */
.footer-section {
    margin-bottom: 0 !important;
}

body::after,
html::after {
    display: none;
}

/* Remover qualquer espaçamento extra do último elemento */
.footer-bottom {
    margin-bottom: 0 !important;
    padding-bottom: 20px !important;
}

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

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #128c7e;
    color: white;
}

.whatsapp-float i {
    transition: transform 0.3s ease;
}

.whatsapp-float:hover i {
    transform: scale(1.1);
}

/* Animações de entrada */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsividade */
@media (max-width: 768px) {
    .top-bar {
        display: none;
    }
    
    .navbar {
        top: 0;
    }
    
    .hero-section {
        padding-top: 100px;
        text-align: center;
    }
    
    .hero-logo {
        max-width: 300px !important;
        margin-top: 2rem;
    }
    
    .display-4 {
        font-size: 2.5rem;
    }
    
    .hero-features {
        text-align: left;
    }
    
    .floating-elements {
        display: none;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 25px;
        bottom: 20px;
        right: 20px;
    }
    
    .btn-lg {
        padding: 12px 24px;
        font-size: 16px;
    }
    
    .brand-tagline {
        display: none;
    }
    
    /* Footer Responsivo */
    .footer-main {
        padding: 40px 0 20px;
    }
    
    .footer-widget {
        margin-bottom: 2rem;
        text-align: center;
    }
    
    .footer-contact li {
        text-align: left;
        justify-content: flex-start;
    }
    
    .footer-links {
        text-align: left;
    }
    
    .footer-social .social-links {
        justify-content: center;
    }
    
    .footer-meta {
        justify-content: center;
        text-align: center;
    }
    
    .footer-meta .footer-badge {
        margin-bottom: 0.5rem;
    }
    
    /* FAQ Responsivo */
    .faq-container {
        max-width: 100%;
    }
    
    .faq-question {
        padding: 1rem;
    }
    
    .faq-question h5 {
        font-size: 1rem;
    }
    
    .faq-content {
        padding: 1rem;
    }
    
    .faq-cta .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 576px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .hero-section {
        padding-top: 120px;
    }
    
    .display-4 {
        font-size: 2rem;
    }
    
    .lead {
        font-size: 1.1rem;
    }
    
    .hero-features .col-6 {
        width: 100%;
        margin-bottom: 0.5rem;
    }
}

/* Scroll suave */
html {
    scroll-behavior: smooth;
}

/* Melhorias de acessibilidade */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Estados de foco para acessibilidade */
.btn:focus,
.form-control:focus,
.nav-link:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Página de Serviços - Estilos Específicos */
.services-hero {
    padding-top: 120px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.services-hero-content {
    position: relative;
    z-index: 2;
}

.services-badge .badge {
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 25px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

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

.services-hero-visual {
    position: relative;
    z-index: 2;
}

.services-hero-logo {
    max-width: 400px;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

.services-visual-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.service-icon-float {
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    animation: floatElement 4s ease-in-out infinite;
}

.service-icon-float i {
    font-size: 1.5rem;
}

.service-icon-float.float-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.service-icon-float.float-2 {
    top: 60%;
    right: 15%;
    animation-delay: 1.5s;
}

.service-icon-float.float-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 3s;
}

/* Cards de Visão Geral dos Serviços */
.service-card-overview {
    transition: all 0.3s ease;
    background: white;
    border: 1px solid var(--border-color);
}

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

.service-icon-large {
    transition: transform 0.3s ease;
}

.service-card-overview:hover .service-icon-large {
    transform: scale(1.1);
}

.service-features-list {
    text-align: left;
}

.service-features-list .d-flex {
    transition: all 0.3s ease;
}

.service-features-list .d-flex:hover {
    transform: translateX(5px);
}

/* Serviços Detalhados */
.service-detail-card {
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-detail-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.service-category .badge {
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 20px;
}

.service-specs .spec-item {
    display: flex;
    align-items: center;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: rgba(248, 249, 250, 0.7);
}

.service-specs .spec-item:hover {
    background: rgba(248, 249, 250, 0.9);
    transform: translateX(5px);
}

.service-benefits ul li {
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

.service-benefits ul li:hover {
    transform: translateX(5px);
    color: var(--primary-color);
}

.service-image-container {
    position: relative;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 16px;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.service-image-overlay {
    position: absolute;
    bottom: 2rem;
    text-align: center;
    z-index: 2;
}

.service-image-container i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

/* Processo de Produção */
.process-step {
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
}

.process-icon-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: white;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.process-step:hover .process-icon-circle {
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
}

/* Formulário de Contato da Página de Serviços */
.contact-form-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.contact-form-container {
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.contact-form-container:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

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

.form-label {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.form-control,
.form-select {
    border-radius: 8px;
    border: 2px solid var(--border-color);
    padding: 12px 16px;
    transition: all 0.3s ease;
    font-size: 16px;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.25);
    outline: none;
}

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

/* Seção CTA */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
}

.cta-content {
    position: relative;
    overflow: hidden;
}

.cta-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="ctaPattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23ctaPattern)"/></svg>');
    opacity: 0.3;
}

.cta-content > * {
    position: relative;
    z-index: 2;
}

/* Responsividade para Página de Serviços */
@media (max-width: 768px) {
    .services-hero {
        padding-top: 100px;
        text-align: center;
    }
    
    .services-hero-logo {
        max-width: 300px;
        margin-top: 2rem;
    }
    
    .service-detail-card {
        margin-bottom: 2rem;
    }
    
    .service-detail-content {
        order: 2;
        margin-top: 2rem;
    }
    
    .service-detail-image {
        order: 1;
    }
    
    .process-step {
        margin-bottom: 2rem;
    }
    
    .cta-content .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 576px) {
    .services-hero {
        padding-top: 120px;
    }
    
    .service-specs .col-6 {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .contact-form-container {
        padding: 2rem 1.5rem;
    }
}

/* Hover states para dispositivos touch */
@media (hover: none) {
    .card:hover,
    .service-card:hover,
    .btn:hover {
        transform: none;
        box-shadow: var(--shadow);
    }
}

/* ===== QUEM SOMOS PAGE STYLES ===== */

/* About Hero Section */
.about-hero {
    padding-top: 120px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.about-hero-content {
    color: white;
    position: relative;
    z-index: 2;
}

.about-hero-content h1 {
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.about-hero-content .text-primary {
    color: var(--accent-color) !important;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.about-hero-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    font-weight: 500;
}

.feature-item i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.about-hero-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-elements {
    position: relative;
    width: 300px;
    height: 300px;
}

.floating-icon {
    position: absolute;
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    animation: float 6s ease-in-out infinite;
    animation-delay: var(--delay);
}

.floating-icon i {
    font-size: 2rem;
    color: white;
}

.floating-icon:nth-child(1) {
    top: 20px;
    left: 20px;
}

.floating-icon:nth-child(2) {
    top: 120px;
    right: 20px;
}

.floating-icon:nth-child(3) {
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* About Company Section */
.about-company {
    background: white;
}

.about-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.05);
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.about-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.about-icon i {
    font-size: 2rem;
    color: white;
}

.about-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.about-card p {
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
}

/* Company History Section */
.company-history {
    background: var(--light-bg);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: 0;
    margin-right: 60px;
    text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 60px;
    margin-right: 0;
    text-align: left;
}

.timeline-content {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    border: 1px solid rgba(0,0,0,0.05);
}

.timeline-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 50%;
    transform: translateY(-50%);
    border: 4px solid white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.timeline-item:nth-child(odd) .timeline-icon {
    right: -30px;
}

.timeline-item:nth-child(even) .timeline-icon {
    left: -30px;
}

.timeline-icon i {
    font-size: 1.5rem;
    color: white;
}

.timeline-content h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.timeline-content p {
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
}

/* Why Choose Us Section */
.why-choose-us {
    background: white;
}

.advantage-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.05);
    text-align: center;
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.advantage-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.advantage-icon i {
    font-size: 2rem;
    color: white;
}

.advantage-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.advantage-card p {
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
}

/* Team Section */
.team-section {
    background: var(--light-bg);
}

.team-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.05);
    text-align: center;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.team-photo {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.team-photo i {
    font-size: 3rem;
    color: white;
}

.team-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.team-card p {
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    min-width: 140px;
    transition: all 0.3s ease;
}

.cta-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Responsive Adjustments for Quem Somos Page */
@media (max-width: 768px) {
    .about-hero {
        padding-top: 100px;
        text-align: center;
    }
    
    .about-hero-visual {
        height: 300px;
        margin-top: 2rem;
    }
    
    .floating-elements {
        width: 250px;
        height: 250px;
    }
    
    .floating-icon {
        width: 60px;
        height: 60px;
    }
    
    .floating-icon i {
        font-size: 1.5rem;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 60px;
        margin-right: 0;
        text-align: left;
    }
    
    .timeline-item:nth-child(odd) .timeline-icon,
    .timeline-item:nth-child(even) .timeline-icon {
        left: -30px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .about-card,
    .advantage-card,
    .team-card {
        padding: 1.5rem;
    }
    
    .about-icon,
    .advantage-icon,
    .team-photo {
        width: 60px;
        height: 60px;
    }
    
    .about-icon i,
    .advantage-icon i {
        font-size: 1.5rem;
    }
    
    .team-photo i {
        font-size: 2rem;
    }
    
    .timeline-content {
        padding: 1.5rem;
    }
    
    .floating-elements {
        width: 200px;
        height: 200px;
    }
    
    .floating-icon {
        width: 50px;
        height: 50px;
    }
    
    .floating-icon i {
        font-size: 1.2rem;
    }
}

/* ===== CONTATO PAGE STYLES ===== */

/* Contact Hero Section */
.contact-hero {
    padding-top: 120px;
    background: linear-gradient(135deg, #495057 0%, #6c757d 100%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.contact-hero-content {
    color: white;
    position: relative;
    z-index: 2;
}

.contact-hero-content h1 {
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.contact-hero-content .text-primary {
    color: #f8f9fa !important;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.contact-hero-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(10px);
}

.feature-item i {
    font-size: 1.25rem;
    color: #f8f9fa;
}

.feature-item span {
    color: white;
    font-weight: 500;
    font-size: 0.95rem;
}

.contact-hero-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-elements {
    position: relative;
    width: 100%;
    height: 100%;
}

.floating-icon {
    position: absolute;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 6s ease-in-out infinite;
    animation-delay: var(--delay);
}

.floating-icon:nth-child(1) {
    top: 20%;
    left: 20%;
}

.floating-icon:nth-child(2) {
    top: 50%;
    right: 20%;
}

.floating-icon:nth-child(3) {
    bottom: 20%;
    left: 50%;
}

.floating-icon i {
    font-size: 2rem;
    color: white;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-20px) rotate(5deg);
    }
    66% {
        transform: translateY(10px) rotate(-5deg);
    }
}

/* Contact Form Section */
.contact-form-section {
    background: white;
}

.section-title {
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.contact-form-container {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    border: 1px solid rgba(0,0,0,0.05);
}

.contact-form .form-label {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-form .form-control,
.contact-form .form-select {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: #495057;
    box-shadow: 0 0 0 0.2rem rgba(73, 80, 87, 0.25);
    transform: translateY(-2px);
}

.contact-form .form-check-label {
    color: var(--text-color);
    font-size: 0.9rem;
}

.contact-form .btn {
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #495057, #6c757d);
    border: none;
    position: relative;
    overflow: hidden;
}

.contact-form .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

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

.contact-form .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Contact Info Sidebar */
.contact-info-sidebar {
    position: sticky;
    top: 120px;
}

.contact-card {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 1.5rem;
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.contact-card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #495057, #6c757d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.contact-card-icon i {
    font-size: 1.5rem;
    color: white;
}

.contact-card h5 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-weight: 600;
    font-size: 1.1rem;
}

.contact-card p {
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

.contact-card a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: var(--secondary-color);
}

/* Quick Contact Section */
.quick-contact-section {
    background: var(--light-bg);
}

.quick-contact-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    text-align: center;
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.quick-contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.quick-contact-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.whatsapp-card .quick-contact-icon {
    background: linear-gradient(135deg, #25d366, #20c997);
}

.phone-card .quick-contact-icon {
    background: linear-gradient(135deg, #495057, #6c757d);
}

.email-card .quick-contact-icon {
    background: linear-gradient(135deg, #17a2b8, #138496);
}

.quick-contact-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.quick-contact-card p {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.quick-contact-card .btn {
    border-radius: 10px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    display: inline-block;
}

.quick-contact-card .btn-success {
    background: linear-gradient(135deg, #25d366, #20c997);
    color: white;
}

.quick-contact-card .btn-primary {
    background: linear-gradient(135deg, #495057, #6c757d);
    color: white;
}

.quick-contact-card .btn-info {
    background: linear-gradient(135deg, #17a2b8, #138496);
    color: white;
}

.quick-contact-card .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Map Section */
.map-section {
    background: white;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.map-placeholder {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.map-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="map-pattern" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M0 0h20v20H0z" fill="none" stroke="%23dee2e6" stroke-width="0.5"/></defs><rect width="100" height="100" fill="url(%23map-pattern)"/></svg>');
    opacity: 0.5;
}

.map-content {
    text-align: center;
    position: relative;
    z-index: 2;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.map-content i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.map-content h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.map-content p {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.map-content .btn {
    border-radius: 10px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
}

/* FAQ Contact Section */
.faq-contact-section {
    background: var(--light-bg);
}

.faq-contact-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.faq-contact-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.faq-contact-question {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.faq-contact-question i {
    font-size: 1.5rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.faq-contact-question h5 {
    color: var(--primary-color);
    margin: 0;
    font-weight: 600;
    font-size: 1.1rem;
}

.faq-contact-item p {
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

/* Responsive Adjustments for Contato Page */
@media (max-width: 768px) {
    .contact-hero {
        padding-top: 100px;
        text-align: center;
        min-height: auto;
        padding-bottom: 3rem;
    }
    
    .contact-hero-visual {
        height: 300px;
        margin-top: 2rem;
    }
    
    .floating-icon {
        width: 60px;
        height: 60px;
    }
    
    .floating-icon i {
        font-size: 1.5rem;
    }
    
    .contact-form-container {
        padding: 1.5rem;
    }
    
    .contact-info-sidebar {
        position: static;
        margin-top: 2rem;
    }
    
    .map-placeholder {
        height: 300px;
    }
    
    .map-content {
        padding: 1.5rem;
    }
    
    .quick-contact-card {
        padding: 1.5rem;
    }
    
    .quick-contact-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .feature-item {
        padding: 0.5rem 0.75rem;
    }
    
    .feature-item span {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .contact-hero {
        padding-top: 80px;
        padding-bottom: 2rem;
    }
    
    .contact-form-container {
        padding: 1rem;
    }
    
    .contact-card {
        padding: 1rem;
    }
    
    .quick-contact-card {
        padding: 1rem;
    }
    
    .faq-contact-item {
        padding: 1.5rem;
    }
    
    .map-content {
        padding: 1rem;
    }
    
    .map-content i {
        font-size: 2rem;
    }
    
    .contact-hero-visual {
        height: 250px;
    }
    
    .floating-icon {
        width: 50px;
        height: 50px;
    }
    
    .floating-icon i {
        font-size: 1.25rem;
    }
    
    .feature-item {
        padding: 0.5rem;
        margin-bottom: 0.5rem;
    }
    
    .feature-item span {
        font-size: 0.85rem;
    }
    
    .contact-hero-content h1 {
        font-size: 2rem;
    }
    
    .contact-hero-content .lead {
        font-size: 1rem;
    }
}

/* ===== ESTILOS PARA A PÁGINA DE BLOG ===== */

/* Blog Hero Section */
.blog-hero {
    background: linear-gradient(135deg, #495057 0%, #6c757d 100%);
    color: white;
    padding-top: 120px;
    padding-bottom: 80px;
    position: relative;
    overflow: hidden;
}

.blog-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.blog-hero-content {
    position: relative;
    z-index: 2;
}

.blog-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

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

.blog-hero-features {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.blog-hero-features .feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.blog-hero-features .feature-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.blog-hero-features .feature-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.blog-hero-features .feature-item span {
    font-weight: 500;
    color: white;
}

.blog-hero-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Featured Posts Section */
.featured-posts-section {
    background: var(--light-bg);
}

.featured-post-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.featured-post-card .post-image {
    position: relative;
    overflow: hidden;
}

.featured-post-card .post-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.featured-post-card .post-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 500;
}

.featured-post-card .post-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.featured-post-card .post-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.featured-post-card .post-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.featured-post-card .post-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
    line-height: 1.4;
}

.featured-post-card .post-excerpt {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    flex: 1;
    line-height: 1.6;
}

.featured-post-card .btn {
    align-self: flex-start;
    margin-top: auto;
}

/* Blog Categories Section */
.category-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid var(--border-color);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.category-card .category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.category-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.category-card p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.category-card .post-count {
    background: var(--light-bg);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Recent Posts Section */
.recent-post-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.recent-post-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.recent-post-item .post-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.recent-post-item .post-category {
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.875rem;
    font-weight: 500;
}

.recent-post-item .post-date {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.recent-post-item .post-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
    line-height: 1.4;
}

.recent-post-item .post-excerpt {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.recent-post-item .read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.recent-post-item .read-more:hover {
    color: var(--primary-hover);
    transform: translateX(5px);
}

/* Blog Sidebar */
.blog-sidebar {
    position: sticky;
    top: 120px;
}

.sidebar-widget {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
    border: 1px solid var(--border-color);
}

.sidebar-widget h5 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.5rem;
}

/* Search Widget */
.search-form .input-group {
    border-radius: 25px;
    overflow: hidden;
}

.search-form .form-control {
    border: 1px solid var(--border-color);
    border-right: none;
    padding: 0.75rem 1rem;
}

.search-form .btn {
    border-radius: 0 25px 25px 0;
    padding: 0.75rem 1rem;
}

/* Popular Posts Widget */
.popular-post-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.popular-post-item:last-child {
    border-bottom: none;
}

.popular-post-item img {
    border-radius: 8px;
    flex-shrink: 0;
}

.popular-post-item .post-info h6 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    line-height: 1.4;
}

.popular-post-item .post-date {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Newsletter Widget */
.newsletter-form .form-control {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.75rem 1rem;
}

.newsletter-form .btn {
    border-radius: 8px;
    padding: 0.75rem 1rem;
}

/* Tags Widget */
.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    background: var(--light-bg);
    color: var(--text-muted);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.tag:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

/* Pagination */
.pagination .page-link {
    color: var(--primary-color);
    border: 1px solid var(--border-color);
    padding: 0.75rem 1rem;
    margin: 0 0.25rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.pagination .page-link:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.pagination .page-item.active .page-link {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.pagination .page-item.disabled .page-link {
    color: var(--text-muted);
    border-color: var(--border-color);
    background: var(--light-bg);
}

/* Responsividade para Blog */
@media (max-width: 991px) {
    .blog-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .blog-hero-features {
        gap: 1rem;
    }
    
    .blog-hero-features .feature-item {
        padding: 0.75rem 1rem;
    }
    
    .blog-sidebar {
        position: static;
        margin-top: 2rem;
    }
    
    .featured-post-card .post-image img {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .blog-hero {
        padding-top: 100px;
        padding-bottom: 3rem;
    }
    
    .blog-hero-content h1 {
        font-size: 2rem;
    }
    
    .blog-hero-content .lead {
        font-size: 1.1rem;
    }
    
    .blog-hero-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .blog-hero-features .feature-item {
        justify-content: center;
    }
    
    .blog-hero-visual {
        height: 300px;
        margin-top: 2rem;
    }
    
    .featured-post-card .post-content {
        padding: 1rem;
    }
    
    .category-card {
        padding: 1.5rem;
    }
    
    .recent-post-item {
        padding: 1.5rem;
    }
    
    .recent-post-item .post-title {
        font-size: 1.25rem;
    }
    
    .sidebar-widget {
        padding: 1rem;
    }
}

@media (max-width: 576px) {
    .blog-hero {
        padding-top: 80px;
        padding-bottom: 2rem;
    }
    
    .blog-hero-content h1 {
        font-size: 1.75rem;
    }
    
    .blog-hero-content .lead {
        font-size: 1rem;
    }
    
    .blog-hero-features .feature-item {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .blog-hero-features .feature-item i {
        font-size: 1.25rem;
    }
    
    .blog-hero-visual {
        height: 250px;
    }
    
    .featured-post-card .post-image img {
        height: 180px;
    }
    
    .featured-post-card .post-title {
        font-size: 1.1rem;
    }
    
    .category-card {
        padding: 1rem;
    }
    
    .category-card .category-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .recent-post-item {
        padding: 1rem;
    }
    
    .recent-post-item .post-title {
        font-size: 1.1rem;
    }
    
    .sidebar-widget {
        padding: 1rem;
    }
    
    .tags-cloud {
        gap: 0.25rem;
    }
    
    .tag {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
}

/* ===== ESTILOS PARA A PÁGINA DE POST INDIVIDUAL ===== */
/* Post Hero Section */
/* Product Page Styles */
.product-card {
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.product-icon {
    text-align: center;
    padding: 1rem;
    background: var(--light-bg);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-title {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.product-subtitle {
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.feature-list li:last-child {
    border-bottom: none;
}

.application-tags .badge {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
}

.specs-table {
    border: 1px solid var(--border-color);
}

.specs-table .table th {
    background: var(--primary-color);
    color: white;
    border: none;
    font-weight: 500;
}

.specs-table .table td {
    border-color: var(--border-color);
    padding: 1rem;
}

.specs-table .table-striped > tbody > tr:nth-of-type(odd) > td {
    background-color: var(--light-bg);
}

/* Hero Features */
.hero-features {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    backdrop-filter: blur(10px);
    font-size: 0.9rem;
}

.hero-cta {
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* ===== ESTILOS PARA SEÇÃO INTERATIVA DE ROLDANAS ===== */
.content-card {
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.content-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.intro-content .lead {
    font-size: 1.1rem;
    line-height: 1.6;
}

.info-card {
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.info-icon {
    text-align: center;
    color: var(--primary-color);
}

.info-title {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 1rem;
}

.info-text {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.info-text:last-child {
    margin-bottom: 0;
}

.info-list {
    list-style: none;
    padding: 0;
}

.info-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-muted);
}

.info-list li:last-child {
    border-bottom: none;
}

.comparison-card {
    border: 1px solid var(--border-color);
}

.comparison-card .table th {
    background: var(--primary-color);
    color: white;
    border: none;
    font-weight: 500;
    padding: 1rem;
}

.comparison-card .table td {
    border-color: var(--border-color);
    padding: 1rem;
    vertical-align: middle;
}

.comparison-card .table-hover > tbody > tr:hover > td {
    background-color: var(--light-bg);
}

.application-card {
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.application-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.application-icon {
    color: var(--primary-color);
}

.application-title {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 1rem;
}

.application-text {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

.advantage-detail-card {
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.advantage-detail-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.advantage-header {
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 1rem;
}

.advantage-title {
    color: var(--text-dark);
    font-weight: 600;
}

.advantage-description {
    color: var(--text-muted);
    line-height: 1.6;
}

.case-study-card {
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.case-study-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.case-study-title {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 1rem;
}

.case-study-description {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.case-study-example {
    border-left: 4px solid var(--primary-color);
    font-style: italic;
}

.guide-card {
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.guide-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.guide-icon {
    text-align: center;
    color: var(--primary-color);
}

.guide-title {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 1rem;
}

.guide-text {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.guide-list {
    list-style: none;
    padding: 0;
}

.guide-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-muted);
}

.guide-list li:last-child {
    border-bottom: none;
}

.maintenance-tip {
    border-left: 4px solid var(--warning-color);
    font-style: italic;
}

.materials-comparison-card {
    border: 1px solid var(--border-color);
}

.materials-comparison-card .table th {
    background: var(--primary-color);
    color: white;
    border: none;
    font-weight: 500;
    padding: 1rem;
}

.materials-comparison-card .table td {
    border-color: var(--border-color);
    padding: 1rem;
    vertical-align: middle;
}

.regional-card {
    border: 1px solid var(--border-color);
}

.regional-title {
    color: var(--text-dark);
    font-weight: 600;
}

.regional-description {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.regional-example {
    border-left: 4px solid var(--primary-color);
    font-style: italic;
    margin-bottom: 1rem;
}

.cities-grid .badge {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
}

.safety-card {
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.safety-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.safety-icon {
    text-align: center;
    color: var(--primary-color);
}

.safety-title {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 1rem;
}

.safety-text {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.safety-list {
    list-style: none;
    padding: 0;
}

.safety-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-muted);
}

.safety-list li:last-child {
    border-bottom: none;
}

.safety-tip {
    border-left: 4px solid var(--warning-color);
    font-style: italic;
}

.interactive-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border: none;
}

.interactive-cta h3 {
    color: white;
    font-weight: 700;
}

.interactive-cta .lead {
    color: rgba(255, 255, 255, 0.9);
}

/* Responsividade para seção interativa */
@media (max-width: 768px) {
    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .feature-item {
        width: 100%;
        text-align: center;
    }
    
    .cities-grid {
        justify-content: center;
    }
    
    .interactive-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .interactive-cta .btn {
        width: 100%;
        max-width: 300px;
    }
}

.post-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 120px 0 60px;
    position: relative;
    overflow: hidden;
}

.post-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.post-breadcrumb {
    margin-bottom: 2rem;
}

.post-breadcrumb .breadcrumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 0.75rem 1.5rem;
    backdrop-filter: blur(10px);
}

.post-breadcrumb .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-breadcrumb .breadcrumb-item a:hover {
    color: white;
}

.post-breadcrumb .breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.6);
}

.post-header {
    text-align: center;
    color: white;
}

.post-category {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
}

.post-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.post-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.post-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    opacity: 0.9;
}

.post-meta i {
    font-size: 1.1rem;
}

/* Post Content Section */
.post-content-section {
    padding: 4rem 0;
    background: var(--bg-light);
}

.post-content {
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.post-featured-image {
    position: relative;
    overflow: hidden;
}

.post-featured-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.post-content:hover .post-featured-image img {
    transform: scale(1.05);
}

.post-text {
    padding: 3rem;
}

.post-text .lead {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.post-text h2 {
    color: var(--text-dark);
    font-size: 1.8rem;
    font-weight: 600;
    margin: 2.5rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
}

.post-text h3 {
    color: var(--text-dark);
    font-size: 1.4rem;
    font-weight: 600;
    margin: 2rem 0 1rem;
}

.post-text p {
    color: var(--text-regular);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.post-text ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.post-text li {
    color: var(--text-regular);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.post-text strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* Post CTA */
.post-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    text-align: center;
}

.post-cta h3 {
    color: white;
    margin-bottom: 1rem;
}

.post-cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Post Footer */
.post-footer {
    background: var(--bg-light);
    padding: 2rem 3rem;
    border-top: 1px solid var(--border-color);
}

.post-tags, .post-share {
    margin-bottom: 1.5rem;
}

.post-tags h5, .post-share h5 {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 1rem;
}

.tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag {
    background: var(--primary-color);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

.share-buttons {
    display: flex;
    gap: 0.5rem;
}

.share-buttons .btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.share-buttons .btn:hover {
    transform: translateY(-2px);
}

/* Related Posts */
.related-posts {
    background: var(--bg-light);
    padding: 3rem;
    border-top: 1px solid var(--border-color);
}

.related-posts h3 {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
}

.related-post-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    height: 100%;
}

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

.related-post-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.related-post-content {
    padding: 1.5rem;
}

.related-post-content h5 {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.related-post-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: var(--secondary-color);
}

/* Post Sidebar */
.post-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.sidebar-widget:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.sidebar-widget h5 {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--primary-color);
}

/* Author Widget */
.author-widget {
    text-align: center;
}

.author-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 1rem;
    border: 3px solid var(--primary-color);
}

.author-info h6 {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.author-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

/* Table of Contents */
.toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.toc-list li {
    margin-bottom: 0.75rem;
}

.toc-list a {
    color: var(--text-regular);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: block;
    padding: 0.5rem;
    border-radius: 8px;
}

.toc-list a:hover {
    color: var(--primary-color);
    background: var(--bg-light);
    padding-left: 0.75rem;
}

/* Popular Posts Widget */
.popular-post-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.popular-post-item:last-child {
    border-bottom: none;
}

.popular-post-item img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
}

.post-info h6 {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
    line-height: 1.3;
}

.post-date {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* Newsletter Widget */
.newsletter-form .form-control {
    border-radius: 25px 0 0 25px;
    border: 2px solid var(--border-color);
    padding: 0.75rem 1rem;
}

.newsletter-form .btn {
    border-radius: 0 25px 25px 0;
    padding: 0.75rem 1rem;
}

/* Contact Widget */
.contact-buttons .btn {
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-buttons .btn:hover {
    transform: translateY(-2px);
}

/* Responsividade para Post */
@media (max-width: 991px) {
    .post-sidebar {
        position: static;
        margin-top: 3rem;
    }
    
    .post-text {
        padding: 2rem;
    }
    
    .post-footer {
        padding: 2rem;
    }
    
    .related-posts {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .post-hero {
        padding: 100px 0 40px;
    }
    
    .post-title {
        font-size: 2rem;
    }
    
    .post-meta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .post-text {
        padding: 1.5rem;
    }
    
    .post-text h2 {
        font-size: 1.5rem;
    }
    
    .post-text h3 {
        font-size: 1.25rem;
    }
    
    .post-footer {
        padding: 1.5rem;
    }
    
    .related-posts {
        padding: 1.5rem;
    }
    
    .sidebar-widget {
        padding: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 576px) {
    .post-hero {
        padding: 80px 0 30px;
    }
    
    .post-title {
        font-size: 1.75rem;
    }
    
    .post-breadcrumb .breadcrumb {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    .post-text {
        padding: 1rem;
    }
    
    .post-text .lead {
        font-size: 1.1rem;
    }
    
    .post-text h2 {
        font-size: 1.4rem;
    }
    
    .post-text h3 {
        font-size: 1.2rem;
    }
    
    .post-footer {
        padding: 1rem;
    }
    
    .related-posts {
        padding: 1rem;
    }
    
    .sidebar-widget {
        padding: 1rem;
    }
    
    .related-post-card img {
        height: 150px;
    }
    
    .related-post-content {
        padding: 1rem;
    }
    
    .related-post-content h5 {
        font-size: 1rem;
    }
}
