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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Barra Superior */
.top-bar {
    background-color: #1a1a1a;
    color: #fff;
    padding: 10px 0;
    font-size: 14px;
}

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

.top-links a {
    color: #fff;
    text-decoration: none;
    margin-right: 20px;
    transition: color 0.3s;
}

.top-links a:hover {
    color: #4CAF50;
}

.top-info {
    color: #ccc;
}

/* Header */
.header {
    background-color: #fff;
    padding: 20px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

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

.logo h1 {
    font-size: 32px;
    color: #2c3e50;
    font-weight: bold;
    line-height: 1.2;
}

.logo h1 span {
    color: #4CAF50;
    font-size: 36px;
}

.logo a {
    text-decoration: none;
}

.header-contact {
    display: flex;
    gap: 20px;
}

.phone-box {
    text-align: center;
}

.phone-label {
    display: block;
    font-size: 12px;
    color: #666;
    margin-bottom: 5px;
}

.phone-number {
    display: block;
    font-size: 20px;
    font-weight: bold;
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s;
}

.phone-number:hover {
    color: #4CAF50;
}

.phone-number.whatsapp {
    color: #25D366;
}

/* Menu de Navegação */
.main-nav {
    background-color: #2c3e50;
    padding: 0;
}

.nav-menu {
    list-style: none;
    display: flex;
    justify-content: center;
    margin: 0;
}

.nav-menu li a {
    display: block;
    color: #fff;
    text-decoration: none;
    padding: 15px 25px;
    transition: background-color 0.3s;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    background-color: #4CAF50;
}

/* Menu de Serviços */
.services-menu {
    background-color: #34495e;
    padding: 0;
    overflow-x: auto;
}

.services-list {
    list-style: none;
    display: flex;
    justify-content: center;
    margin: 0;
    white-space: nowrap;
}

.services-list li a {
    display: block;
    color: #fff;
    text-decoration: none;
    padding: 12px 20px;
    font-size: 14px;
    transition: background-color 0.3s;
    border-right: 1px solid rgba(255,255,255,0.1);
}

.services-list li:last-child a {
    border-right: none;
}

.services-list li a:hover {
    background-color: #4CAF50;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 500px;
    overflow: hidden;
    background-color: #1a1a1a;
}

.slider-container {
    position: relative;
    height: 100%;
}

.slide {
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #2c3e50 100%);
    background-size: cover;
    background-position: center;
}

.slide.active {
    display: block;
}

.slide-content {
    display: flex;
    align-items: center;
    height: 100%;
    position: relative;
    z-index: 2;
}

.hero-text {
    color: #fff;
    max-width: 600px;
}

.badge {
    display: inline-block;
    background-color: #4CAF50;
    color: #fff;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 20px;
}

.hero-text h2 {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text .highlight {
    color: #4CAF50;
    font-size: 56px;
    font-style: italic;
}

.cta-text {
    font-size: 24px;
    margin-bottom: 30px;
    color: #4CAF50;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    flex-direction: column;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.btn-primary {
    background-color: #e74c3c;
    color: #fff;
}

.btn-success {
    background-color: #25D366;
    color: #fff;
}

.btn-label {
    font-size: 12px;
    opacity: 0.9;
}

.btn-phone {
    font-size: 20px;
    margin-top: 5px;
}

/* Botões do Slider */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255,255,255,0.3);
    color: #fff;
    border: none;
    padding: 15px 20px;
    font-size: 24px;
    cursor: pointer;
    transition: background-color 0.3s;
    z-index: 3;
}

.slider-btn:hover {
    background-color: rgba(76, 175, 80, 0.8);
}

.slider-btn.prev {
    left: 20px;
}

.slider-btn.next {
    right: 20px;
}

/* Dots do Slider */
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active,
.dot:hover {
    background-color: #4CAF50;
}

/* Seções */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 15px;
    line-height: 1.3;
}

.section-header p {
    font-size: 18px;
    color: #666;
}

/* Seção Sobre */
.about-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.about-text p {
    margin-bottom: 20px;
    text-align: justify;
    font-size: 16px;
    line-height: 1.8;
}

.highlight-box {
    background-color: #4CAF50;
    color: #fff;
    padding: 30px;
    border-radius: 10px;
    margin: 30px 0;
}

.highlight-box h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-box {
    background-color: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
}

.feature-icon {
    font-size: 36px;
    color: #4CAF50;
    margin-bottom: 15px;
}

.feature-box h3 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.feature-box p {
    font-size: 14px;
    color: #666;
}

/* Seção de Serviços */
.services-section {
    padding: 80px 0;
}

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

.service-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

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

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

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

.service-content {
    padding: 25px;
}

.service-content h3 {
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.service-content p {
    font-size: 15px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.btn-service {
    display: inline-block;
    background-color: #2c3e50;
    color: #fff;
    padding: 10px 25px;
    border-radius: 5px;
    text-decoration: none;
    margin-right: 10px;
    margin-bottom: 10px;
    transition: background-color 0.3s;
}

.btn-service:hover {
    background-color: #4CAF50;
}

.btn-whatsapp {
    display: inline-block;
    background-color: #25D366;
    color: #fff;
    padding: 10px 25px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.btn-whatsapp:hover {
    background-color: #1ea952;
}

/* Seção de Contato */
.contact-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info h3 {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.8;
}

.contact-item {
    margin-bottom: 20px;
    padding: 15px;
    background-color: #fff;
    border-radius: 5px;
}

.contact-item strong {
    display: block;
    color: #2c3e50;
    margin-bottom: 5px;
}

.contact-item a {
    color: #4CAF50;
    text-decoration: none;
    font-size: 18px;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* Formulário */
.contact-form {
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #2c3e50;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4CAF50;
}

.form-group textarea {
    resize: vertical;
}

button[type="submit"] {
    width: 100%;
    padding: 15px;
    background-color: #4CAF50;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

button[type="submit"]:hover {
    background-color: #45a049;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 50px 0 20px;
}

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

.footer-col h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #4CAF50;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.8;
    color: #ccc;
}

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

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #4CAF50;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    color: #999;
    font-size: 14px;
}

/* Botão WhatsApp Flutuante */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: transform 0.3s;
}

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

.whatsapp-float img {
    width: 35px;
    height: 35px;
}

/* Página Interna */
.page-header {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 18px;
    opacity: 0.9;
}

/* Página de Serviço */
.service-page {
    padding: 60px 0;
}

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

.service-content-full h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 20px;
    margin-top: 40px;
}

.service-content-full h3 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 15px;
    margin-top: 30px;
}

.service-content-full p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
    color: #444;
}

.service-content-full ul {
    margin: 20px 0;
    padding-left: 30px;
}

.service-content-full ul li {
    margin-bottom: 10px;
    line-height: 1.8;
}

.info-box {
    background-color: #e8f5e9;
    border-left: 4px solid #4CAF50;
    padding: 20px;
    margin: 30px 0;
    border-radius: 5px;
}

.info-box h3 {
    color: #2c3e50;
    margin-top: 0;
}

.warning-box {
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 20px;
    margin: 30px 0;
    border-radius: 5px;
}

.cta-box {
    background-color: #4CAF50;
    color: #fff;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    margin: 40px 0;
}

.cta-box h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

.cta-box p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #fff;
}

.cta-box .btn {
    margin: 10px;
}

/* Blog */
.blog-section {
    padding: 60px 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.blog-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

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

.blog-image {
    height: 250px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-content {
    padding: 30px;
}

.blog-content h2 {
    font-size: 24px;
    margin-bottom: 15px;
}

.blog-content h2 a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s;
}

.blog-content h2 a:hover {
    color: #4CAF50;
}

.blog-meta {
    font-size: 14px;
    color: #999;
    margin-bottom: 15px;
}

.blog-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.btn-read-more {
    display: inline-block;
    color: #4CAF50;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.btn-read-more:hover {
    color: #2c3e50;
}

/* Página de Contato */
.contact-page {
    padding: 60px 0;
}

.contact-info-full h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.contact-info-full p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #666;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.contact-method {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

.contact-method h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.contact-method p {
    font-size: 15px;
    color: #666;
    margin-bottom: 15px;
}

.contact-link {
    display: inline-block;
    color: #4CAF50;
    font-size: 20px;
    font-weight: bold;
    text-decoration: none;
}

.contact-link:hover {
    text-decoration: underline;
}

.service-area {
    background-color: #e8f5e9;
    padding: 30px;
    border-radius: 10px;
    margin: 30px 0;
}

.service-area h3 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.contact-form-full {
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.contact-form-full h3 {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 30px;
    text-align: center;
}

/* Responsividade */
@media (max-width: 768px) {
    .top-bar-content {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .header-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .header-contact {
        flex-direction: column;
        gap: 15px;
    }

    .nav-menu {
        flex-direction: column;
    }

    .services-list {
        justify-content: flex-start;
    }

    .hero-slider {
        height: 400px;
    }

    .hero-text h2 {
        font-size: 32px;
    }

    .hero-text .highlight {
        font-size: 38px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .slider-btn {
        padding: 10px 15px;
        font-size: 18px;
    }

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

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .contact-methods {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 24px;
    }

    .logo h1 span {
        font-size: 28px;
    }

    .phone-number {
        font-size: 16px;
    }

    .hero-slider {
        height: 350px;
    }

    .hero-text h2 {
        font-size: 24px;
    }

    .hero-text .highlight {
        font-size: 28px;
    }

    .cta-text {
        font-size: 18px;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float img {
        width: 28px;
        height: 28px;
    }
}

/* Logo com imagem */
.logo img {
    max-height: 80px;
    width: auto;
    display: block;
}

/* Menu Mobile Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 30px;
    height: 3px;
    background-color: #2c3e50;
    margin: 3px 0;
    transition: all 0.3s ease;
    display: block;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    min-width: 250px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    list-style: none;
    padding: 10px 0;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    transition: background-color 0.3s;
}

.dropdown-menu a:hover {
    background-color: #f5f5f5;
    color: #4CAF50;
}

/* Footer Moderno */
.footer {
    background-color: #1a1a1a;
    color: #fff;
}

.footer-main {
    padding: 60px 0 30px;
}

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

.footer-col {
    padding: 0 15px;
}

.footer-logo img {
    max-width: 200px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-desc {
    color: #ccc;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background-color: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s;
}

.footer-social a:hover {
    background-color: #4CAF50;
    transform: translateY(-3px);
}

.footer-title {
    color: #fff;
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: #4CAF50;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
    display: inline-block;
}

.footer-links a:hover {
    color: #4CAF50;
    padding-left: 5px;
}

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

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: #ccc;
    font-size: 14px;
}

.footer-contact svg {
    flex-shrink: 0;
    color: #4CAF50;
}

.footer-contact a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact a:hover {
    color: #4CAF50;
}

.footer-hours {
    margin-top: 20px;
    padding: 15px;
    background-color: #222;
    border-radius: 5px;
}

.footer-hours strong {
    color: #4CAF50;
    display: block;
    margin-bottom: 8px;
}

.footer-hours p {
    color: #ccc;
    font-size: 14px;
    line-height: 1.6;
}

.footer-bottom {
    background-color: #111;
    padding: 20px 0;
    text-align: center;
}

.footer-bottom-content {
    font-size: 13px;
    color: #999;
}

.footer-bottom-content p {
    margin: 5px 0;
}

/* Responsivo Mobile */
@media (max-width: 768px) {
    /* Header Mobile */
    .header-content {
        flex-wrap: wrap;
    }
    
    .logo img {
        max-height: 60px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .header-contact {
        display: none !important;
    }
    
    .top-bar {
        display: none;
    }
    
    /* Menu Mobile */
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: #fff;
        box-shadow: -2px 0 10px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .nav-menu {
        flex-direction: column;
        padding: 80px 0 20px;
    }
    
    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid #eee;
    }
    
    .nav-menu a {
        display: block;
        padding: 15px 20px;
        color: #333;
    }
    
    .dropdown-menu {
        position: static;
        display: none;
        box-shadow: none;
        background-color: #f5f5f5;
        padding: 0;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .dropdown-menu a {
        padding-left: 40px;
        font-size: 14px;
    }
    
    /* Services Menu Mobile */
    .services-menu {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .services-list {
        flex-wrap: nowrap;
        min-width: max-content;
    }
    
    .services-list li {
        white-space: nowrap;
    }
    
    /* Hero Slider Mobile */
    .hero-text h2 {
        font-size: 32px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn {
        width: 100%;
    }
    
    /* Footer Mobile */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-logo img {
        max-width: 150px;
    }
}

@media (max-width: 786px) {
    .logo img {
        max-height: 160px;
    }
    
    .hero-text h2 {
        font-size: 24px;
    }
    
    .btn-phone {
        font-size: 16px;
    }
}
/* Botões fixos no rodapé (somente mobile) */
.footer-buttons-mobile {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  background-color: #fff;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
  z-index: 9999;
}

.footer-btn {
  flex: 1;
  text-align: center;
  padding: 15px 0;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  color: #fff;
}

.call-btn {
  background-color: #007bff; /* Azul para ligação */
}

.whatsapp-btn {
  background-color: #25d366; /* Verde WhatsApp */
}

.footer-btn:hover {
  opacity: 0.9;
}

/* Mostrar apenas em telas até 768px */
@media (min-width: 769px) {
  .footer-buttons-mobile {
    display: none;
  }
}
