/* Reset e Variáveis */
:root {
    --primary-color: #1a1a1a;
    --secondary-color: #8b7355;
    --accent-color: #c9a961;
    --text-color: #333;
    --text-light: #666;
    --bg-light: #f8f6f3;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }

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

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

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    transition: var(--transition);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: var(--transition);
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2416 100%);
    color: var(--white);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../imagens/artes/IMG-20240925-WA0001.jpg') center/cover;
    opacity: 0.2;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.5) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 2rem;
    animation: fadeInUp 1s ease-out;
}

.hero-seal {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    animation: fadeIn 1.5s ease-out;
}

.hero h1 {
    color: var(--white);
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: rgba(255,255,255,0.9);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator span {
    display: block;
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 12px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: rgba(255,255,255,0.8);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    font-size: 1rem;
}

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

.btn-primary:hover {
    background: transparent;
    color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

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

.btn-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    display: inline-block;
    padding-bottom: 2px;
}

.btn-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--accent-color);
    transition: var(--transition);
}

.btn-link:hover::after {
    width: 0;
}

/* Manifesto Section */
.manifesto {
    padding: 6rem 0;
    background: var(--white);
}

.manifesto h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.manifesto-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
}

.manifesto-content .lead {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.manifesto-content p {
    margin-bottom: 1.5rem;
}

.manifesto-signature {
    text-align: center;
    font-size: 1.2rem;
    margin-top: 2.5rem;
    color: var(--primary-color);
}

/* Destaques Section */
.destaques {
    padding: 6rem 0;
    background: var(--bg-light);
}

.destaques-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.destaque-item {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 8px;
    transition: var(--transition);
}

.destaque-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.destaque-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    color: var(--accent-color);
}

.destaque-icon svg {
    width: 100%;
    height: 100%;
}

.destaque-item h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.destaque-item p {
    color: var(--text-light);
}

/* Cervejas em Destaque */
.cervejas-destaque {
    padding: 6rem 0;
    background: var(--white);
}

.cervejas-destaque h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.cervejas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.cerveja-card {
    background: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
}

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

.cerveja-image {
    height: 300px;
    overflow: hidden;
    background: var(--primary-color);
}

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

.cerveja-card:hover .cerveja-image img {
    transform: scale(1.1);
}

.cerveja-info {
    padding: 2rem;
}

.cerveja-info h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.cerveja-info p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* Timeline Section */
.timeline-section {
    padding: 6rem 0;
    background: var(--primary-color);
    color: var(--white);
}

.timeline-section h2 {
    text-align: center;
    color: var(--white);
    margin-bottom: 4rem;
}

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

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

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

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

.timeline-year {
    flex: 0 0 100px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    font-family: 'Playfair Display', serif;
}

.timeline-content {
    flex: 1;
    padding: 1.5rem;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    margin: 0 2rem;
    position: relative;
}

.timeline-item.highlight .timeline-content {
    background: var(--accent-color);
    color: var(--primary-color);
}

.timeline-item.highlight .timeline-year {
    color: var(--white);
}

/* CTAs Section */
.ctas-section {
    padding: 6rem 0;
    background: var(--bg-light);
}

.ctas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.cta-card {
    background: var(--white);
    padding: 3rem 2rem;
    text-align: center;
    border-radius: 8px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.cta-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.cta-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.cta-card p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* Section CTA */
.section-cta {
    text-align: center;
    margin-top: 3rem;
}

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

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    width: 150px;
    margin-bottom: 1rem;
}

.footer-tagline {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

.footer-col h4 {
    margin-bottom: 1rem;
    color: var(--accent-color);
    font-size: 1rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9rem;
}

.footer-col a:hover {
    color: var(--accent-color);
}

.footer-social {
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-social h4 {
    margin-bottom: 1rem;
    color: var(--white);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

.social-links svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

.disclaimer {
    font-weight: 500;
    color: var(--accent-color);
}

.footer-credit {
    font-style: italic;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

@keyframes scroll {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(0);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(15px);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        padding: 2rem;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        transition: var(--transition);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero {
        height: 80vh;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item,
    .timeline-item:nth-child(odd) {
        flex-direction: row;
    }
    
    .timeline-year {
        flex: 0 0 60px;
    }
    
    .timeline-content {
        margin: 0 0 0 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-seal {
        width: 80px;
        height: 80px;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Page Header */
.page-header {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2416 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../imagens/artes/IMG-20240925-WA0005.jpg') center/cover;
    opacity: 0.15;
    z-index: 0;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.4) 100%);
    z-index: 1;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    color: var(--white);
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.9);
}

/* Content Blocks */
.historia-section {
    padding: 6rem 0;
    background: var(--white);
}

.content-block {
    max-width: 900px;
    margin: 0 auto 4rem;
}

.content-block h2 {
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.content-block .lead {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

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

.highlight-block {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

/* Timeline Full */
.timeline-full-section {
    padding: 6rem 0;
    background: var(--primary-color);
    color: var(--white);
}

.timeline-full-section h2 {
    text-align: center;
    color: var(--white);
    margin-bottom: 4rem;
}

.timeline-full {
    max-width: 900px;
    margin: 0 auto;
}

.timeline-full-item {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.timeline-full-item:last-child {
    border-bottom: none;
}

.timeline-full-year {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    font-family: 'Playfair Display', serif;
}

.timeline-full-content h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.timeline-full-content p {
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
}

.timeline-full-item.highlight {
    background: rgba(201, 169, 97, 0.1);
    padding: 2rem;
    border-radius: 8px;
    border: 2px solid var(--accent-color);
}

.timeline-full-item.highlight .timeline-full-year {
    color: var(--white);
}

/* Content Split */
.renascimento-section {
    padding: 6rem 0;
    background: var(--bg-light);
}

.content-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.content-text h2 {
    margin-bottom: 2rem;
    color: var(--primary-color);
}

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

.content-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* Valores Section */
.valores-section {
    padding: 6rem 0;
    background: var(--white);
}

.valores-section h2 {
    text-align: center;
    margin-bottom: 4rem;
}

.valores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.valor-card {
    padding: 2.5rem;
    background: var(--bg-light);
    border-radius: 8px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.valor-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.valor-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.valor-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    text-align: center;
    color: var(--white);
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(255,255,255,0.9);
}

/* Cervejas Page Styles */
.cervejas-intro {
    padding: 6rem 0;
    background: var(--white);
    text-align: center;
}

.cervejas-intro h2 {
    margin-bottom: 2rem;
}

.cervejas-intro p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
    color: var(--text-light);
}

.cerveja-detail {
    padding: 6rem 0;
    background: var(--bg-light);
}

.cerveja-detail:nth-child(even) {
    background: var(--white);
}

.cerveja-detail-content {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 4rem;
    align-items: center;
}

.cerveja-detail-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.cerveja-detail-info h2 {
    margin-bottom: 1rem;
}

.cerveja-detail-subtitle {
    font-size: 1.25rem;
    color: var(--secondary-color);
    font-style: italic;
    margin-bottom: 2rem;
}

.cerveja-detail-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.cerveja-specs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.cerveja-spec {
    text-align: center;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 8px;
}

.cerveja-detail:nth-child(even) .cerveja-spec {
    background: var(--bg-light);
}

.cerveja-spec-label {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.cerveja-spec-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    font-family: 'Playfair Display', serif;
}

.cerveja-harmonizacao {
    padding: 1.5rem;
    background: rgba(201, 169, 97, 0.1);
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.cerveja-harmonizacao strong {
    color: var(--primary-color);
}

/* Processo Section */
.processo-section {
    padding: 6rem 0;
    background: var(--primary-color);
    color: var(--white);
}

.processo-section h2 {
    text-align: center;
    color: var(--white);
    margin-bottom: 4rem;
}

.processo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.processo-item {
    padding: 2.5rem;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    transition: var(--transition);
}

.processo-item:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-5px);
}

.processo-item h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.processo-item p {
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .content-split,
    .cerveja-detail-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .timeline-full-item {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .cerveja-specs {
        grid-template-columns: 1fr;
    }
}

/* Onde Encontrar Page */
.onde-intro {
    padding: 6rem 0;
    background: var(--white);
    text-align: center;
}

.onde-intro h2 {
    margin-bottom: 2rem;
}

.onde-intro .lead {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
    color: var(--text-light);
}

.localizador-section {
    padding: 4rem 0;
    background: var(--bg-light);
}

.localizador-box {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.localizador-box h3 {
    margin-bottom: 1rem;
}

.localizador-box p {
    margin-bottom: 2rem;
    color: var(--text-light);
}

.localizador-form {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.localizador-input {
    flex: 1;
    min-width: 250px;
    padding: 1rem 1.5rem;
    border: 2px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: var(--transition);
}

.localizador-input:focus {
    outline: none;
    border-color: var(--accent-color);
}

.pontos-venda-section {
    padding: 6rem 0;
    background: var(--white);
}

.pontos-venda-section h2 {
    text-align: center;
    margin-bottom: 4rem;
}

.pontos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.ponto-card {
    padding: 2.5rem;
    background: var(--bg-light);
    border-radius: 8px;
    transition: var(--transition);
}

.ponto-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.ponto-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.ponto-endereco {
    color: var(--accent-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

.ponto-descricao {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.ponto-cervejas {
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

/* Empresas Page */
.empresas-intro {
    padding: 6rem 0;
    background: var(--white);
}

.servico-section {
    padding: 6rem 0;
    background: var(--bg-light);
}

.servico-section.alt {
    background: var(--white);
}

.content-split.reverse {
    grid-template-columns: 1fr 1fr;
}

.lista-beneficios {
    list-style: none;
    margin: 2rem 0;
}

.lista-beneficios li {
    padding-left: 2rem;
    margin-bottom: 1rem;
    position: relative;
    line-height: 1.6;
}

.lista-beneficios li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.diferenciais-section {
    padding: 6rem 0;
    background: var(--primary-color);
    color: var(--white);
}

.diferenciais-section h2 {
    text-align: center;
    color: var(--white);
    margin-bottom: 4rem;
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.diferencial-card {
    padding: 2.5rem;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    text-align: center;
    transition: var(--transition);
}

.diferencial-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-5px);
}

.diferencial-card h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.diferencial-card p {
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
}

/* Blog Page */
.blog-intro {
    padding: 6rem 0;
    background: var(--white);
}

.blog-posts {
    padding: 4rem 0 6rem;
    background: var(--bg-light);
}

.blog-posts h2 {
    text-align: center;
    margin-bottom: 4rem;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2.5rem;
}

.post-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

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

.post-image {
    height: 220px;
    overflow: hidden;
    background: var(--primary-color);
}

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

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

.post-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.post-category {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--bg-light);
    color: var(--accent-color);
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: 20px;
    margin-bottom: 1rem;
    align-self: flex-start;
}

.post-content h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-size: 1.35rem;
}

.post-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: auto;
}

.post-meta {
    margin-top: 1.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
    font-style: italic;
}

.newsletter-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
}

.newsletter-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    color: var(--white);
}

.newsletter-box h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.newsletter-box p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: rgba(255,255,255,0.9);
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.newsletter-form input {
    flex: 1;
    min-width: 250px;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border-radius: 4px;
    font-size: 1rem;
    transition: var(--transition);
}

.newsletter-form input::placeholder {
    color: rgba(255,255,255,0.6);
}

.newsletter-form input:focus {
    outline: none;
    background: rgba(255,255,255,0.2);
    border-color: var(--accent-color);
}

/* Contato Page */
.contato-intro {
    padding: 6rem 0;
    background: var(--white);
    text-align: center;
}

.contato-content {
    padding: 4rem 0 6rem;
    background: var(--bg-light);
}

.contato-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
}

.contato-form-wrapper h3 {
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.contato-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.form-group textarea {
    resize: vertical;
}

.contato-info h3 {
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.info-block {
    margin-bottom: 2.5rem;
}

.info-block h4 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.info-block p {
    color: var(--text-light);
    line-height: 1.6;
}

.info-block a {
    color: var(--accent-color);
    text-decoration: none;
    transition: var(--transition);
}

.info-block a:hover {
    color: var(--secondary-color);
}

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

.social-links-contato a {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
}

.social-links-contato a:hover {
    color: var(--accent-color);
}

.social-links-contato svg {
    width: 24px;
    height: 24px;
}

@media (max-width: 768px) {
    .contato-grid,
    .content-split.reverse {
        grid-template-columns: 1fr;
    }
    
    .localizador-form,
    .newsletter-form {
        flex-direction: column;
    }
    
    .posts-grid {
        grid-template-columns: 1fr;
    }
}
