/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    transition: background 0.8s ease, color 0.5s ease;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}
p {
    margin-bottom: 1rem;
    color: #666;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #1465AE 100%);
    color: white;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #667eea;
    border: 2px solid #667eea;
}
.btn-secondary:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
}

/* Botão de tema */
.btn-theme {
    background: transparent;
    color: #333;
    border: 1px solid #ccc;
    font-size: 0.95rem;
    padding: 8px 14px;
    border-radius: 6px;
    gap: 6px;
    transition: all 0.3s ease;
}
.btn-theme i {
    font-size: 1rem;
}
.btn-theme:hover {
    border-color: #667eea;
    color: #667eea;
    background: rgba(102, 126, 234, 0.1);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}
.navbar {
    padding: 1rem 0;
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.5rem;
    color: #333;
}
.nav-logo img {
    width: 90px;
    height: 60px;
    border-radius: 8px;
}
.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}
.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}
.nav-link:hover {
    color: #667eea;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #667eea;
    transition: width 0.3s ease;
}
.nav-link:hover::after {
    width: 100%;
}
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}
.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}
.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #333;
}
.highlight {
    background: linear-gradient(135deg, #667eea, #1465AE);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #666;
}
.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}
.section-subtitle {
    font-size: 1.125rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    padding: 80px 0;
    background: white;
}
.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}
.about-text h3 {
    font-size: 1.5rem;
    color: #333;
    margin: 2rem 0 1rem;
}
.about-text h3:first-child {
    margin-top: 0;
}
.mission-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.value-item {
    text-align: center;
    padding: 2rem;
    border-radius: 12px;
    background: #f8f9ff;
    transition: transform 0.3s ease;
}
.value-item:hover {
    transform: translateY(-5px);
}
.value-item i {
    font-size: 2.5rem;
    color: #1465AE;
    margin-bottom: 1rem;
}
.value-item h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #333;
}
.about-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Services Section */
.services {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}
.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #667eea, #1465AE);
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.service-card.featured {
    border: 2px solid #1465AE;
    transform: scale(1.05);
}
.service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #1465AE;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}
.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea, #1465AE);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}
.service-icon i {
    font-size: 2rem;
    color: white;
}
.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}
.service-card p {
    margin-bottom: 1.5rem;
    color: #666;
}
.service-features {
    list-style: none;
}
.service-features li {
    padding: 0.5rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}
.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

/* Video Section */
.video-section {
    padding: 80px 0;
    background: #f8f9ff;
    text-align: center;
}
.video-container {
    margin-top: 2rem;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
.video-container video {
    width: 100%;
    height: auto;
}

/* Gallery Section */
.services-gallery {
    padding: 80px 0;
    background: white;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}
.gallery-item {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.4s ease;
}
.modal-content {
    background: white;
    border-radius: 16px;
    width: 90%;
    max-width: 500px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    text-align: center;
    position: relative;
    animation: slideUp 0.4s ease;
}
.modal-content img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.modal-content h3 {
    font-size: 1.5rem;
    margin: 1rem 1.5rem 0.5rem;
    color: #333;
}
.modal-content p {
    padding: 0 1.5rem 1.5rem;
    color: #666;
    font-size: 0.95rem;
}
.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.5rem;
    color: white;
    background: rgba(0,0,0,0.3);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
}
.modal-close:hover {
    background: rgba(0,0,0,0.6);
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes slideUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Produto Destaque */
.product-highlight {
    padding: 80px 0;
    background: white;
}
.product-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.product-text h2 {
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 1rem;
}
.product-text p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}
.product-slider {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.slider-container {
    position: relative;
    width: 100%;
    height: 370px;
}
.slider-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s ease;
}
.slider-image.active {
    opacity: 1;
}

/* Monitoring Section */
.monitoring-section {
    padding: 80px 0;
    background: white;
}
.monitoring-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.monitoring-slider {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.slider {
    position: relative;
    width: 100%;
    height: 400px;
}
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s ease;
}
.slide.active {
    opacity: 1;
}
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}
.dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease;
}
.dot.active, .dot:hover {
    background: white;
}
.monitoring-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.monitoring-text .section-subtitle {
    font-size: 1.125rem;
    color: #666;
    margin-bottom: 1.5rem;
}
.monitoring-text p {
    color: #666;
    margin-bottom: 1.5rem;
    text-align: justify;
}

/* Schedule Section */
.schedule {
    padding: 80px 0;
    background: white;
}
.schedule-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.schedule-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    margin-bottom: 1rem;
    background: #f8f9ff;
    border-radius: 12px;
    border-left: 4px solid #1465AE;
}
.schedule-item .day {
    font-weight: 600;
    color: #333;
}
.schedule-item .time {
    font-weight: 500;
    color: #1465AE;
}
.schedule-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}
.contact-item i {
    font-size: 1.5rem;
    color: #1465AE;
    margin-top: 0.25rem;
}
.contact-item h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: #333;
}
.contact-item p {
    color: #666;
    margin: 0;
}
.map-container {
    margin-top: 4rem;
}
.map-container h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: #333;
}
.map-wrapper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
}
.map-info {
    text-align: center;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}
.map-info i {
    color: #1465AE;
    margin-right: 0.5rem;
}

/* Footer */
.footer {
    background: #1a202c;
    color: white;
    padding: 60px 0 0;
}
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
.footer-logo img {
    width: 80px;
    height: 60px;
    border-radius: 10px;
}
.footer-section h4 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: white;
}
.footer-section ul {
    list-style: none;
}
.footer-section ul li {
    margin-bottom: 0.5rem;
}
.footer-section ul li a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-section ul li a:hover {
    color: #1465AE;
}
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}
.social-links a {
    width: 40px;
    height: 40px;
    background: #1465AE;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}
.social-links a:hover {
    background: #37a6d1;
    transform: translateY(-2px);
}
.footer-contact p {
    margin-bottom: 0.5rem;
    color: #a0aec0;
}
.footer-contact i {
    width: 20px;
    color: #1465AE;
    margin-right: 0.5rem;
}
.footer-bottom {
    background: #161b22;
    padding: 20px 0;
    margin-top: 40px;
}
.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    color: #a0aec0;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}
@keyframes pulse {
    0% { box-shadow: 0 4px 15px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 4px 15px rgba(37,211,102,0.4), 0 0 0 10px rgba(37,211,102,0.1); }
    100% { box-shadow: 0 4px 15px rgba(37,211,102,0.4); }
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: #1465AE;
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}
.back-to-top.show {
    opacity: 1;
    visibility: visible;
}
.back-to-top:hover {
    background: #37a6d1;
    transform: translateY(-2px);
}

/* === MODO ESCURO TOTAL: BLACKOUT === */
body.dark-mode {
    background: #000;
    color: #ccc;
    transition: background 0.5s ease, color 0.5s ease;
    overflow-x: hidden;
}

/* Fundo preto puro, sem efeitos de luz */
body.dark-mode::before {
    content: none; /* Remove os glows anteriores */
}

/* Todos os cards, seções, containers */
.dark-mode .service-card,
.dark-mode .value-item,
.dark-mode .contact-item,
.dark-mode .schedule-item,
.dark-mode .gallery-item,
.dark-mode .modal-content,
.dark-mode .about,
.dark-mode .team-member,
.dark-mode .product-slider,
.dark-mode .monitoring-slider,
.dark-mode .hero,
.dark-mode .video-section,
.dark-mode .services,
.dark-mode .services-gallery,
.dark-mode .product-highlight,
.dark-mode .schedule,
.dark-mode .contact {
    background: #0a0a0a !important;
    backdrop-filter: blur(4px);
    border: 1px solid #333;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    border-radius: 16px;
}
.dark-mode .schedule-item .closed {
    color: #e54f4f !important;
    text-shadow: 0 0 8px rgba(229, 62, 62, 0.4);
}

/* Textos em cinza claro e suave */
.dark-mode .section-title,
.dark-mode .section-subtitle,
.dark-mode h1, .dark-mode h2, .dark-mode h3, .dark-mode h4,
.dark-mode p,
.dark-mode .value-item h4,
.dark-mode .service-card h3,
.dark-mode .contact-item h4,
.dark-mode .team-info h3,
.dark-mode .team-info p {
    color: #858585 !important;
    text-shadow: none !important;
}

/* Links e itens de lista */
.dark-mode .footer-section a,
.dark-mode .nav-link {
    color: #bbb !important;
}
.dark-mode .footer-section a:hover,
.dark-mode .nav-link:hover {
    color: #fff !important;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

/* Header escuro sóbrio */
.dark-mode .header {
    background: #000 !important;
    border-bottom: 1px solid #444;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.dark-mode .nav-logo span,
.dark-mode .nav-link {
    color: #eee;
}

.dark-mode .nav-link::after {
    background: #fff;
    opacity: 0.6;
}

/* Botão de tema no modo Blackout */
.dark-mode .btn-theme {
    background: #111;
    border: 1px solid #555;
    color: #eee;
}
.dark-mode .btn-theme:hover {
    background: #222;
    border-color: #888;
    color: #fff;
}

/* Footer todo em preto */
.dark-mode .footer {
    background: #000 !important;
    border-top: 1px solid #333;
    color: #aaa;
}
.dark-mode .footer-section h4 {
    color: #ddd;
}
.dark-mode .footer-contact p {
    color: #bbb;
}

/* Botão WhatsApp - mantém verde, mas com sombra sutil */
.dark-mode .whatsapp-float {
    background: #1a9a4a;
    box-shadow: 0 6px 20px rgba(26, 154, 74, 0.6);
    transition: all 0.3s ease;
}
.dark-mode .whatsapp-float:hover {
    transform: scale(1.15);
    box-shadow: 0 8px 25px rgba(26, 154, 74, 0.8);
}

/* Botão Voltar ao Topo */
.dark-mode .back-to-top {
    background: #111;
    border: 1px solid #555;
    color: #eee;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
}
.dark-mode .back-to-top:hover {
    background: #222;
    color: #fff;
}

/* Inputs e mapas */
.dark-mode .map-wrapper iframe {
    filter: brightness(0.8) contrast(1.1) hue-rotate(180deg);
    opacity: 0.9;
}

/* Botões primários em cinza metálico */
.dark-mode .btn-primary {
    background: #333;
    color: #fff;
    border: 1px solid #555;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}
.dark-mode .btn-primary:hover {
    background: #444;
    border-color: #666;
    transform: translateY(-2px);
}

/* Botões secundários */
.dark-mode .btn-secondary {
    background: transparent;
    color: #ccc;
    border-color: #555;
}
.dark-mode .btn-secondary:hover {
    border-color: #777;
    color: #fff;
}

/* Efeitos de hover nos cards */
.dark-mode .service-card:hover,
.dark-mode .team-member:hover,
.dark-mode .gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
    border-color: #555;
}

/* Imagens nos cards (colaboradores, serviços) */
.dark-mode .team-member img {
    border: 3px solid #444;
}
.dark-mode .team-member img:hover {
    border-color: #888;
}

/* Centraliza o botão WhatsApp nos cards de colaboradores */
.team-info {
    text-align: center;
    margin-top: 0.5rem;
    width: 100%;
}

.team-info .btn-whatsapp {
    margin: 0 auto;
    display: block;
    width: fit-content;
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.team-info .btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.4);
}

.nav-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    outline: none;
}

.nav-logo a img {
    transition: transform 0.3s ease;
}

.nav-logo a:hover img {
    transform: scale(1.05);
}

/* Estilo para dias fechados (ex: domingo) */
.schedule-item .closed,
.schedule-item .closed {
    color: #e53e3e !important; /* Vermelho vibrante */
    font-weight: 600;
}

/* === BOTÃO WHATSAPP COM TOOLTIP QUE DESLIZA DA DIREITA PARA A ESQUERDA === */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    overflow: visible; /* Importante: permite que o tooltip saia do container */
    animation: pulse 2s infinite;
}

/* Tooltip: mensagem que desliza da direita para a esquerda */
.whatsapp-tooltip {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 70px; /* Começa escondido à direita */
    white-space: nowrap;
    background: #000;
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease, right 0.4s ease;
    z-index: 10;
}

/* Efeito ao passar o mouse */
.whatsapp-float:hover .whatsapp-tooltip {
    right: 68px; /* Entra da direita para a esquerda */
    opacity: 1;
}

/* Pulsação no ícone */
@keyframes pulse {
    0% { box-shadow: 0 4px 15px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 6px 20px rgba(37,211,102,0.6), 0 0 0 10px rgba(37,211,102,0.1); }
    100% { box-shadow: 0 4px 15px rgba(37,211,102,0.4); }
}

/* Hover no botão */
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}



/* Responsividade no mobile */
@media (max-width: 768px) {
    .dark-mode .nav-menu {
        background: #000;
        border-top: 1px solid #444;
    }
    .dark-mode .hamburger span {
        background: #eee;
    }
}


/* === Estilos para a página de colaboradores === */
.team-section {
    padding: 80px 0;
    background: white;
}

.team-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.team-member {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #f8f9ff;
    border-radius: 16px;
    padding: 1.5rem;
    width: 250px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.team-member a {
    margin-bottom: 1rem;
}

.team-member img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #1465AE;
    transition: all 0.3s ease;
}

.team-member img:hover {
    transform: scale(1.1);
}

.team-info h3 {
    font-size: 1.2rem;
    color: #333;
    margin: 0.5rem 0;
    text-align: center;
}

.team-info p {
    font-size: 0.95rem;
    color: #1465AE;
    margin-bottom: 1rem;
    text-align: center;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #25d366;
    color: white;
    padding: 8px 26px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: background 0.3s ease;
}

.btn-whatsapp:hover {
    background: #1cb550;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

     .team-container {
        flex-direction: column;
        align-items: center;
    }

    .team-member {
        width: 100%;
        max-width: 300px;
    }
    .nav-menu.active {
        left: 0;
    }
    .monitoring-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    .monitoring-text {
        order: -1;
    }
    .slider {
        height: 300px;
    }
    .slider-dots {
        bottom: 15px;
    }
    .dot {
        width: 10px;
        height: 10px;
    }
    .slider-container {
        height: 250px;
    }
    .slider-image {
        object-fit: contain;
    }
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .about-content,
    .contact-content,
    .schedule-content,
    .product-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .product-slider {
        order: -1;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .service-card.featured {
        transform: none;
    }
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .whatsapp-float {
        bottom: 100px;
        right: 20px;
    }
    .back-to-top {
        bottom: 100px;
        left: 20px;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .modal-content {
        width: 95%;
    }
}
@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    .btn {
        width: 100%;
        max-width: 250px;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .slider-container {
        height: 225px;
    }
    .slider {
        height: 250px;
    }
    .monitoring-text h2 {
        font-size: 2.2rem;
    }
}