/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}

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

/* Header */
.header {
    background: #000;
    color: white;
    padding: 10px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

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

.logo-text {
    color: #22c55e;
    font-weight: bold;
    font-size: 1.2rem;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.nav a:hover {
    color: #22c55e;
}

.btn-anunciar {
    background: #dc2626;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s;
}

.btn-anunciar:hover {
    background: #b91c1c;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    background: #000;
    padding: 20px;
    z-index: 999;
}

.mobile-menu a {
    display: block;
    color: white;
    text-decoration: none;
    padding: 10px 0;
    border-bottom: 1px solid #333;
}

.mobile-menu a:hover {
    color: #22c55e;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #166534, #16a34a);
    color: white;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.hero-text {
    flex: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 30px;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.highlight {
    color: #86efac;
}

.hero-subtext {
    font-size: 1.3rem;
    margin-bottom: 40px;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #22c55e;
    color: white;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    transition: all 0.3s;
}

.btn-whatsapp:hover {
    background: #16a34a;
    transform: translateY(-2px);
}

.hero-image {
    flex: 1;
    position: relative;
    text-align: center;
}

.hero-image img {
    max-width: 400px;
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hero-icon {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: #f97316;
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

/* About Section */
.about {
    padding: 80px 0;
    background: rgb(255, 255, 255);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    color: #16a34a;
    margin-bottom: 20px;
    font-weight: bold;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 50px;
    text-align: center;
    color: #555;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.about-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
}

.about-item p {
    color: #666;
    line-height: 1.7;
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background: #f8fafc;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-item i {
    color: #16a34a;
    font-size: 1.5rem;
    flex-shrink: 0;
}

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

/* Services Section */
.services {
    padding: 80px 0;
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s;
    cursor: pointer;
}

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

.service-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

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

.service-number {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #16a34a;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.service-content {
    padding: 25px;
}

.service-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #333;
}

.service-content p {
    color: #666;
    margin-bottom: 15px;
}

.service-details {
    display: none;
    background: #f0fdf4;
    padding: 20px;
    border-radius: 8px;
    margin-top: 15px;
}

.service-details.active {
    display: block;
}

.service-details p {
    font-size: 0.9rem;
    color: #16a34a;
    margin-bottom: 15px;
}

.btn-orcamento {
    background: #16a34a;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s;
}

.btn-orcamento:hover {
    background: #15803d;
}

/* Process Section */
.process {
    padding: 80px 0;
    background: #f8fafc;
}

.process-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 50px;
}

.process-item h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: #333;
}

.process-item p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: white;
}

.pricing-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.pricing-text {
    flex: 1;
}

.pricing-text h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: #333;
}

.pricing-text p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
}

.btn-orcamento-whatsapp {
    display: inline-block;
    background: #16a34a;
    color: white;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s;
}

.btn-orcamento-whatsapp:hover {
    background: #15803d;
}

.pricing-badge {
    flex: 0 0 300px;
    text-align: center;
}

.badge-content {
    background: #2563eb;
    color: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
}

.badge-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.badge-main {
    font-size: 3.5rem;
    font-weight: bold;
    color: #fbbf24;
    margin-bottom: 10px;
}

.badge-subtitle {
    font-size: 1.5rem;
    font-weight: bold;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #16a34a;
    color: white;
    text-align: center;
}

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

.contact-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.btn-contact {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: #16a34a;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s;
}

.btn-contact:hover {
    background: #f3f4f6;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #000;
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer-subtitle {
    margin-top: 10px;
    color: #999;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s;
}

.whatsapp-float a:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .pricing-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-image img {
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .benefit-item {
        padding: 20px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float a {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

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

.service-card,
.benefit-item,
.about-item {
    animation: fadeInUp 0.6s ease-out;
}

/* Loading Animation */
.service-card.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Hover Effects */
.service-card:hover .service-content h3 {
    color: #16a34a;
}

.benefit-item:hover i {
    transform: scale(1.2);
}

/* Focus States */
button:focus,
a:focus {
    outline: 2px solid #16a34a;
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .header,
    .whatsapp-float,
    .mobile-menu {
        display: none;
    }
    
    .hero {
        background: white;
        color: black;
    }
    
    .section-title {
        color: black;
    }
}



/* SEO and Performance Optimizations */

/* Image optimization for SEO */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Lazy loading support */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

/* Critical above-the-fold content */
.hero {
    contain: layout style paint;
}


/* Reduce layout shift */
.service-image {
    aspect-ratio: 16/9;
    background-color: #f3f4f6;
}

.hero-image img {
    aspect-ratio: 4/3;
}

/* Optimize animations for performance */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Core Web Vitals optimizations */
.service-card {
    content-visibility: auto;
    contain-intrinsic-size: 400px;
}

/* Improve text rendering */
body {
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Schema.org microdata styling */
[itemscope] {
    display: block;
}

/* Structured data elements */
.schema-hidden {
    display: none;
}

/* SEO-friendly button states */
button:focus-visible,
a:focus-visible {
    outline: 2px solid #16a34a;
    outline-offset: 2px;
}

/* Optimize for search engine crawlers */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Image SEO enhancements */
.service-image img {
    object-fit: cover;
    object-position: center;
}

/* Performance optimizations for mobile */
@media (max-width: 768px) {
    .hero-image img {
        max-width: 300px;
        height: auto;
    }
    
    .service-image {
        height: 180px;
    }
}

/* Preload critical resources */
.hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
    z-index: -1;
}

/* Optimize for Core Web Vitals */
.container {
    contain: layout;
}

/* Improve SEO with semantic HTML styling */
main {
    display: block;
}

article {
    display: block;
}

section {
    display: block;
}

/* Enhanced accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #000;
    color: #fff;
    padding: 8px;
    text-decoration: none;
    z-index: 1001;
}

.skip-link:focus {
    top: 6px;
}

/* Optimize for search snippets */
.hero-title {
    font-weight: 700;
    line-height: 1.1;
}

.section-title {
    font-weight: 600;
    line-height: 1.2;
}

/* Image optimization for different screen densities */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero-image img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Optimize for featured snippets */
.faq-item {
    margin-bottom: 1.5rem;
}

.faq-question {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.faq-answer {
    line-height: 1.6;
    color: #555;
}

/* Local business schema styling */
.business-info {
    display: none; /* Hidden but available for schema */
}

/* Optimize for voice search */
.hero-subtitle {
    font-size: clamp(1.2rem, 4vw, 2rem);
}

/* Performance: Reduce paint complexity */
.service-card {
    will-change: transform;
    backface-visibility: hidden;
}

.service-card:hover {
    will-change: auto;
}

/* Critical CSS inlining support */
.above-fold {
    display: block;
}

/* Optimize for mobile-first indexing */
@media (max-width: 480px) {
    .hero-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
    }
    
    .section-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }
}

/* Enhanced image loading states */
.image-placeholder {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Optimize for Google's Page Experience */
.content-shift-prevention {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Schema.org JSON-LD support styling */
script[type="application/ld+json"] {
    display: none;
}



/* Blog Slider Styles */
.blog-slider {
    padding: 4rem 0;
    background: #f8f9fa;
}

.slider-container {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease;
}

.slider-item {
    min-width: 100%;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.slider-content {
    display: flex;
    align-items: center;
    padding: 2rem;
    gap: 2rem;
}

.slider-image {
    flex: 0 0 300px;
}

.slider-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

.slider-text {
    flex: 1;
}

.slider-text h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.slider-text p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.slider-btn {
    background: #16a34a;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.slider-btn:hover {
    background: #15803d;
    transform: translateY(-2px);
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: #16a34a;
}

.btn-secondary {
    background: transparent;
    color: #16a34a;
    border: 2px solid #16a34a;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-secondary:hover {
    background: #16a34a;
    color: white;
    transform: translateY(-2px);
}

/* FAQ Styles */
.faq-section {
    padding: 4rem 0;
    background: white;
}

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

.faq-item {
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #e9ecef;
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    line-height: 1.6;
    color: #555;
    display: none;
    animation: fadeIn 0.3s ease;
}

.faq-answer.active {
    display: block;
}

.faq-icon {
    transition: transform 0.3s ease;
    color: #16a34a;
}

.faq-icon.active {
    transform: rotate(180deg);
}

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

/* Tips Section Styles */
.tips-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

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

.tip-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

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

.tip-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #16a34a, #15803d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.tip-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.tip-card p {
    color: #666;
    line-height: 1.6;
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .slider-content {
        flex-direction: column;
        text-align: center;
    }
    
    .slider-image {
        flex: none;
        width: 100%;
    }
    
    .slider-text h3 {
        font-size: 1.3rem;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .faq-question {
        font-size: 1rem;
        padding: 1rem;
    }
    
    .faq-answer {
        padding: 0 1rem 1rem;
    }
}

/* Additional animations */
.slider-item {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.slider-item.active {
    opacity: 1;
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Enhanced hover effects */
.tip-card:hover .tip-icon {
    transform: scale(1.1);
}

.faq-item:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* Loading states */
.slider-image img {
    transition: opacity 0.3s ease;
}

.slider-image img:not([src]) {
    opacity: 0;
}

/* Accessibility improvements */
.faq-question:focus,
.slider-btn:focus,
.btn-secondary:focus {
    outline: 2px solid #16a34a;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .slider-controls,
    .faq-question,
    .tip-icon {
        display: none;
    }
    
    .faq-answer {
        display: block !important;
    }
}

.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 30px; /* Desktop */
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #25d366;
  color: white;
  font-size: 16px;
  font-weight: bold;
  padding: 12px 20px;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.3s ease;
  cursor: pointer;
  z-index: 9999;
}

/* ✅ No mobile: ajusta o espaço para 10px da borda direita */
@media (max-width: 768px) {
  .whatsapp-button {
    right: 10px;
    left: auto; /* Garante que o left não atrapalhe */
  }
}


.whatsapp-button img {
  width: 24px;
  height: 24px;
}

.whatsapp-button:hover {
  background-color: #1ebe57;
}
.blog-slider {
  padding: 40px 0;
  background: #f9f9f9;
}

.blog-slider h2 {
  text-align: center;
  margin-bottom: 20px;
}

.slider-wrapper {
  overflow: hidden;
  position: relative;
}

.slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slide {
  min-width: calc(100% / 3); /* padrão: 3 por vez */
  box-sizing: border-box;
  padding: 10px;
  text-align: center;
}

.slide img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 10px;
  max-height: 250px; /* garante padrão */
  object-fit: cover; /* mantém proporção */
}

.slide h3 {
  font-size: 1rem;
  margin-bottom: 5px;
}

.slide a {
  display: inline-block;
  margin-top: 5px;
  color: #0077cc;
  text-decoration: none;
  font-weight: bold;
}

/* Responsividade */
@media (max-width: 992px) {
  .slide {
    min-width: 50%; /* mostra 2 por vez em tablets */
  }
}

@media (max-width: 600px) {
  .slide {
    min-width: 100%; /* mostra 1 por vez em celulares */
  }

  .slide h3 {
    font-size: 0.9rem;
  }

  .slide a {
    font-size: 0.85rem;
  }
}

.blog-slider .slide img {
  width: 300px;      /* largura fixa */
  height: 250px;     /* altura fixa */
  object-fit: cover; /* corta a imagem proporcionalmente */
  display: block;
  margin: 0 auto;    /* centraliza */
  border-radius: 6px; /* opcional, bordas arredondadas */
}
 section.forro-beneficios {
      max-width: 1200px;
      margin: 2rem auto;
      padding: 1rem;
      font-family: Inter, system-ui, Arial, sans-serif;
      color: #222;
    }

    section.forro-beneficios h2 {
      font-size: 1.9rem;
      margin-bottom: 1.5rem;
      text-align: center;
      color: #0a2a43;
    }

    section.forro-beneficios ul {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 1.5rem;
      list-style: none;
      padding: 0;
      margin: 0;
    }

    section.forro-beneficios li {
      background: #f9fafc;
      padding: 1.2rem;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.05);
      transition: transform 0.3s ease;
      text-align: center;
    }

    section.forro-beneficios li:hover {
      transform: translateY(-5px);
    }

    section.forro-beneficios svg {
      width: 50px;
      height: 50px;
      margin-bottom: 0.8rem;
      fill: #0c3b5c;
    }

    section.forro-beneficios h3 {
      font-size: 1.1rem;
      margin-bottom: 0.5rem;
      color: #0c3b5c;
    }

    section.forro-beneficios p {
      font-size: 0.95rem;
      line-height: 1.5;
      margin: 0;
      color: #444;
    }
    .chass-forro-pvc {
  max-width: 1100px;
  margin: 2rem auto;
  background: linear-gradient(#fff, #f9fafc);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(10, 20, 30, 0.08);
}

.chass-forro-pvc img {
  max-width: 50%;    /* garante que não ultrapasse o container */
  width: 100%;         /* você pode mudar manualmente */
  height: auto;       /* mantém proporção */
  border-radius: 12px;
  margin: 1rem auto 2rem auto; /* centraliza horizontalmente */
  display: block;     /* essencial para o margin auto funcionar */
  object-fit: contain; /* mantém a imagem sem cortes */
}



.chass-forro-pvc h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  text-align: center;
  color: #0c3b5c;
}

.chass-forro-pvc h2 {
  font-size: 1.5rem;
  margin-top: 1.8rem;
  margin-bottom: 0.8rem;
  color: #0a2a43;
}

.chass-forro-pvc p {
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 1rem 0;
  color: #333;
}

.chass-forro-pvc ul {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.chass-forro-pvc li {
  margin-bottom: 0.6rem;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .chass-forro-pvc {
    padding: 1rem;
  }
  .chass-forro-pvc h1 {
    font-size: 1.6rem;
  }
  .chass-forro-pvc h2 {
    font-size: 1.25rem;
  }
}
.chass-forro-gesso {
  max-width: 1100px;
  margin: 2rem auto;
  background: linear-gradient(#fff, #f9fafc);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(10, 20, 30, 0.08);
}

.chass-forro-gesso img {
  max-width: 50%;   /* impede de estourar o container */
  width: 100%;        /* valor inicial (você pode mudar manualmente) */
  height: auto;      /* mantém a proporção */
  border-radius: 12px;
  margin: 1rem auto 2rem auto; /* centraliza a imagem */
  display: block;    /* necessário pro margin auto funcionar */
  object-fit: contain; /* mantém proporção sem cortes */
}



.chass-forro-gesso h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  text-align: center;
  color: #5c0c1a;
}

.chass-forro-gesso h2 {
  font-size: 1.5rem;
  margin-top: 1.8rem;
  margin-bottom: 0.8rem;
  color: #2a0a0f;
}

.chass-forro-gesso p {
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 1rem 0;
  color: #333;
}

.chass-forro-gesso ul {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.chass-forro-gesso li {
  margin-bottom: 0.6rem;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .chass-forro-gesso {
    padding: 1rem;
  }
  .chass-forro-gesso h1 {
    font-size: 1.6rem;
  }
  .chass-forro-gesso h2 {
    font-size: 1.25rem;
  }
}
.whatsapp-button {
  position: fixed;       /* fica fixo na tela */
  bottom: 20px;          /* distância do rodapé */
  right: 20px;           /* distância da lateral direita */
  background-color: #25D366;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  padding: 12px 20px;
  border-radius: 50px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 9999;         /* fica acima de tudo */
  transition: background 0.3s ease;
}

.whatsapp-button:hover {
  background-color: #1ebe5d;
}

.whatsapp-button::before {
  content: "📲"; /* ou pode trocar por <img> */
  font-size: 18px;
}

