/* Custom CSS for Techline Automação */

:root {
    --primary-color: #3B82F6;
    --secondary-color: #10B981;
    --accent-color: #8B5CF6;
    --warning-color: #F59E0B;
    --danger-color: #EF4444;
    --dark-color: #1F2937;
    --light-color: #F9FAFB;
    --gray-color: #6B7280;
    --blue-gradient: linear-gradient(135deg, #3B82F6 0%, #1E40AF 100%);
}

/* General Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    padding-top: 0;
    /* Remove padding for fullscreen hero */
}

.btn {
    border-radius: 0;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    padding: 12px 30px;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Navbar Styles */
.navbar {
    transition: all 0.3s ease;
    padding: 20px 0;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.navbar-nav .nav-link {
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    margin: 0 15px;
    transition: all 0.3s ease;
    position: relative;
}

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

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
}

.navbar-toggler-white .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, rgba(31, 41, 55, 0.85) 0%, rgba(59, 130, 246, 0.75) 100%),
        url('assets/images/balancas/balanca_toledo_prix4uno.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-overlay {
    width: 100%;
    position: relative;
    z-index: 2;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 300;
    color: white;
    letter-spacing: 2px;
    line-height: 1.2;
    margin-bottom: 30px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 40px;
}

.hero-buttons {
    margin-bottom: 60px;
}

.btn-hero {
    padding: 15px 40px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 0;
    min-width: 250px;
}

.btn-primary {
    background: var(--blue-gradient);
    border: none;
    color: white;
    box-shadow: 0 4px 14px 0 rgba(59, 130, 246, 0.39);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(59, 130, 246, 0.5);
}

.btn-outline-light {
    border: 2px solid white;
    color: white;
    background: transparent;
}

.btn-outline-light:hover {
    background-color: white;
    color: var(--dark-color);
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-indicator {
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* Product Cards */
.product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    border-radius: 12px;
    overflow: hidden;
}

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

.product-card img {
    height: 250px;
    object-fit: contain;
    background-color: #f8f9fa;
    padding: 20px;
}

.price-section {
    padding: 10px 0;
}

/* Testimonial Card */
.testimonial-card {
    border-left: 4px solid var(--primary-color);
    background: linear-gradient(135deg, #F9FAFB 0%, #F3F4F6 100%);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

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

.whatsapp-float {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    padding: 15px 20px;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    min-width: 60px;
    justify-content: center;
}

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

.whatsapp-float:hover::before {
    left: 100%;
}

.whatsapp-icon {
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
}

.whatsapp-text {
    font-weight: 600;
    font-size: 16px;
    margin-left: 12px;
    white-space: nowrap;
    opacity: 0;
    max-width: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

.whatsapp-float:hover {
    background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
    color: white;
    padding-right: 25px;
}

.whatsapp-float:hover .whatsapp-text {
    opacity: 1;
    max-width: 120px;
}

.whatsapp-tooltip {
    position: absolute;
    bottom: 80px;
    right: 0;
    background: rgba(31, 41, 55, 0.95);
    color: white;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    pointer-events: none;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    right: 20px;
    border: 8px solid transparent;
    border-top-color: rgba(31, 41, 55, 0.95);
}

.whatsapp-float-container:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateY(0);
}

/* Pulse animation */
@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3), 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3), 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3), 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-float {
    animation: whatsapp-pulse 2s infinite;
}

/* Navbar */
.navbar-brand {
    font-size: 1.5rem;
}

.navbar-nav .nav-link {
    font-weight: 500;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
}

/* Sections */
section:not(#home) {
    scroll-margin-top: 80px;
}

.display-5 {
    line-height: 1.2;
}

/* Accordion */
.accordion-button {
    font-weight: 600;
    background-color: var(--light-color);
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary-color);
    color: white;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

/* Cards */
.card {
    border-radius: 12px;
    transition: transform 0.3s ease;
}

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

/* Icons */
.fa-3x {
    font-size: 3rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section {
        background-attachment: scroll;
        padding: 40px 0;
    }

    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 1px;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .btn-hero {
        min-width: 200px;
        padding: 12px 25px;
        font-size: 0.9rem;
    }

    .navbar {
        padding: 15px 0;
    }

    .navbar-nav .nav-link {
        margin: 5px 0;
        text-align: center;
    }

    .display-4 {
        font-size: 2rem;
    }

    .display-5 {
        font-size: 1.75rem;
    }

    .btn-lg {
        padding: 12px 20px;
        font-size: 1rem;
    }

    .product-card img {
        height: 200px;
    }

    .whatsapp-float-container {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float {
        padding: 12px 15px;
        min-width: 50px;
    }
    
    .whatsapp-icon {
        font-size: 24px;
    }
    
    .whatsapp-text {
        font-size: 14px;
    }
    
    .whatsapp-tooltip {
        font-size: 12px;
        padding: 10px 12px;
        bottom: 70px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
        letter-spacing: 0.5px;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .btn-hero {
        min-width: 180px;
        padding: 10px 20px;
        font-size: 0.8rem;
        display: block;
        margin: 0 auto 15px;
    }

    .hero-buttons {
        margin-bottom: 40px;
    }

    .btn-lg {
        font-size: 0.9rem;
        padding: 10px 16px;
    }
}

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

/* Loading animation for images */
img {
    transition: opacity 0.3s ease;
}

img[src=""] {
    opacity: 0;
}

/* Badge styles */
.badge {
    font-size: 0.75rem;
    padding: 8px 12px;
    border-radius: 20px;
}

/* Custom button styles */
.btn-success {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    border: none;
    color: white;
    box-shadow: 0 4px 14px 0 rgba(16, 185, 129, 0.39);
}

.btn-success:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(16, 185, 129, 0.5);
}

.btn-warning {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
    border: none;
    color: white;
    box-shadow: 0 4px 14px 0 rgba(245, 158, 11, 0.39);
}

.btn-warning:hover {
    background: linear-gradient(135deg, #D97706 0%, #B45309 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(245, 158, 11, 0.5);
    color: white;
}

/* Modern Footer */
.footer-modern {
    background: #2D3748;
    color: #E2E8F0;
    padding: 60px 0 0;
}

.footer-title {
    color: #F7FAFC;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.footer-description {
    color: #CBD5E0;
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    color: #CBD5E0;
}

.footer-contact-item i {
    color: #F7FAFC;
    width: 20px;
    margin-right: 12px;
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-contact-item span {
    font-size: 0.95rem;
    line-height: 1.5;
}

.footer-bottom {
    background: #1A202C;
    padding: 20px 0;
    margin-top: 40px;
    border-top: 1px solid #4A5568;
}

.footer-bottom p {
    color: #A0AEC0;
    font-size: 0.9rem;
}

/* Footer hover effects */
.footer-contact-item:hover {
    color: #F7FAFC;
    transition: color 0.3s ease;
}

.footer-contact-item:hover i {
    color: var(--primary-color);
    transition: color 0.3s ease;
}

/* Animation classes */
.fade-in {
    animation: fadeIn 0.6s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

/* Focus styles for accessibility */
.btn:focus,
.nav-link:focus,
.accordion-button:focus {
    outline: 2px solid var(--warning-color);
    outline-offset: 2px;
}

/* Print styles */
@media print {

    .whatsapp-float-container,
    .navbar,
    .btn {
        display: none !important;
    }

    .hero-section {
        background: none !important;
        color: black !important;
    }
}


/* Logo Styles */
.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.logo-img-footer {
    height: 32px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Tech-inspired gradients and effects */
.card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.1);
}

/* Modern tech color scheme for sections */
.bg-light {
    background: linear-gradient(135deg, #F9FAFB 0%, #F3F4F6 100%) !important;
}

/* Accordion modern styling */
.accordion-button:not(.collapsed) {
    background: var(--blue-gradient);
    color: white;
    border: none;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(59, 130, 246, 0.25);
    border-color: var(--primary-color);
}

/* Modern focus styles */
.btn:focus,
.nav-link:focus,
.accordion-button:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Gradient text effect for titles */
.text-primary {
    background: var(--blue-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Modern shadow effects */
.shadow-sm {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
}

.shadow {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
}

/ * Hero tagline styles */ .hero-tagline {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .hero-tagline {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-tagline {
        font-size: 0.9rem;
        letter-spacing: 0.3px;
    }
}/* Mobile
 menu background */
@media (max-width: 991.98px) {
    /* High contrast mobile menu */
    .navbar-collapse {
        background: linear-gradient(135deg, #1F2937 0%, #111827 100%);
        border: 2px solid rgba(59, 130, 246, 0.4);
        border-radius: 12px;
        padding: 25px 20px;
        margin-top: 20px;
        box-shadow: 0 15px 50px rgba(0, 0, 0, 0.8);
        position: relative;
        z-index: 1000;
    }
    
    /* Dark overlay behind menu for maximum contrast */
    .navbar-collapse.show::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.7);
        z-index: -1;
        backdrop-filter: blur(8px);
    }
    
    /* Menu items container with subtle background */
    .navbar-nav {
        background: rgba(255, 255, 255, 0.08);
        border-radius: 10px;
        padding: 15px 0;
        margin-bottom: 20px;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    /* Individual menu items */
    .navbar-nav .nav-link {
        padding: 15px 20px;
        margin: 3px 10px;
        border-radius: 8px;
        transition: all 0.3s ease;
        font-weight: 600;
        color: white !important;
        background: transparent;
        border: 1px solid transparent;
    }
    
    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link:focus {
        background: rgba(59, 130, 246, 0.15);
        border-color: rgba(59, 130, 246, 0.3);
        color: #60A5FA !important;
        transform: translateX(8px);
        box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
    }
    
    /* Contact button styling */
    .navbar .btn {
        width: 100%;
        justify-content: center;
        padding: 18px;
        font-size: 1.1rem;
        font-weight: 700;
        border: 2px solid #60A5FA;
        background: rgba(59, 130, 246, 0.1);
        color: white;
        border-radius: 10px;
        transition: all 0.3s ease;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    .navbar .btn:hover {
        background: #3B82F6;
        color: white;
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
        border-color: #3B82F6;
    }
    
    /* Ensure menu stays above everything */
    .navbar-collapse.show {
        position: fixed;
        top: 85px;
        left: 15px;
        right: 15px;
        z-index: 9999;
        max-height: calc(100vh - 100px);
        overflow-y: auto;
    }
    
    /* Enhanced hamburger button */
    .navbar-toggler {
        border: 2px solid rgba(255, 255, 255, 0.8);
        padding: 10px 14px;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(10px);
    }
    
    .navbar-toggler:hover {
        background: rgba(255, 255, 255, 0.25);
        border-color: white;
    }
    
    .navbar-toggler:focus {
        box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.3);
        outline: none;
    }
    
    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
    }
}/* Additi
onal mobile menu enhancements */
@media (max-width: 576px) {
    .navbar-collapse.show {
        left: 10px;
        right: 10px;
        top: 80px;
    }
    
    .navbar-nav .nav-link {
        font-size: 1.1rem;
        padding: 18px 15px;
    }
    
    .navbar .btn {
        font-size: 1rem;
        padding: 16px;
    }
}/* S
how tooltip initially */
.whatsapp-float-container.show-tooltip .whatsapp-tooltip {
    opacity: 1;
    transform: translateY(0);
}

/* Additional mobile adjustments */
@media (max-width: 480px) {
    .whatsapp-float-container {
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-float {
        padding: 10px 12px;
        min-width: 45px;
    }
    
    .whatsapp-icon {
        font-size: 22px;
    }
    
    .whatsapp-tooltip {
        display: none; /* Hide tooltip on very small screens */
    }
}/* WhatsA
pp Button Style */
.btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border: none;
    color: white;
    box-shadow: 0 4px 14px 0 rgba(37, 211, 102, 0.39);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(37, 211, 102, 0.5);
    color: white;
}

.btn-whatsapp:focus {
    background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
    box-shadow: 0 0 0 0.25rem rgba(37, 211, 102, 0.25);
    color: white;
}

.btn-whatsapp:active {
    background: linear-gradient(135deg, #075E54 0%, #064E3B 100%);
    color: white;
}/* Respons
ive footer */
@media (max-width: 768px) {
    .footer-modern {
        padding: 40px 0 0;
    }
    
    .footer-title {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .footer-description {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }
    
    .footer-contact-item {
        margin-bottom: 0.8rem;
    }
    
    .footer-bottom {
        margin-top: 30px;
        padding: 15px 0;
    }
}/* Map Sec
tion with Overlay */
.map-section {
    position: relative;
    min-height: 400px;
    overflow: hidden;
}

.map-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

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

.map-overlay {
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.95) 0%, rgba(255, 87, 34, 0.95) 100%);
    padding: 80px 0;
    min-height: 400px;
    display: flex;
    align-items: center;
}

.map-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.map-title {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 30px;
}

.offer-item {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 20px;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-offer {
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F9FA 100%);
    color: #FF5722;
    border: none;
    font-weight: 700;
    font-size: 1.2rem;
    padding: 18px 40px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.btn-offer:hover {
    background: linear-gradient(135deg, #F8F9FA 0%, #E9ECEF 100%);
    color: #E64A19;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .map-overlay {
        padding: 60px 0;
    }
    
    .map-content {
        padding: 30px 20px;
    }
    
    .map-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .offer-item {
        padding: 15px;
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    .btn-offer {
        font-size: 1rem;
        padding: 15px 30px;
    }
}

@media (max-width: 576px) {
    .map-title {
        font-size: 1.75rem;
    }
    
    .offer-item {
        font-size: 0.95rem;
    }
    
    .btn-offer {
        font-size: 0.9rem;
        padding: 12px 25px;
    }
}/* G
oogle Maps Section */
.google-maps-section {
    width: 100%;
    margin: 0;
    padding: 0;
}

.google-maps-container {
    width: 100%;
    height: 400px;
    position: relative;
}

.google-maps-container iframe {
    width: 100%;
    height: 400px;
    border: none;
    display: block;
}

/* Ensure full width on all devices */
@media (max-width: 768px) {
    .google-maps-container {
        height: 300px;
    }
    
    .google-maps-container iframe {
        height: 300px;
    }
}/*
 Entrance Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

/* Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transition: all 0.6s ease-out;
}

.animate-on-scroll.animate {
    opacity: 1;
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.fade-in-left {
    animation: fadeInLeft 0.8s ease-out forwards;
}

.fade-in-right {
    animation: fadeInRight 0.8s ease-out forwards;
}

.fade-in-down {
    animation: fadeInDown 0.8s ease-out forwards;
}

.scale-in {
    animation: scaleIn 0.6s ease-out forwards;
}

.slide-in-up {
    animation: slideInUp 0.8s ease-out forwards;
}

/* Staggered animations */
.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }
.animate-delay-5 { animation-delay: 0.5s; }
.animate-delay-6 { animation-delay: 0.6s; }

/* Hero animations */
.hero-title {
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.3s forwards;
}

.hero-tagline {
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.1s forwards;
}

.hero-subtitle {
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.5s forwards;
}

.hero-buttons {
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.7s forwards;
}

.hero-scroll {
    opacity: 0;
    animation: fadeInUp 1s ease-out 1s forwards;
}

/* Product cards hover enhancement */
.product-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.product-card:hover {
    transform: translateY(-10px) scale(1.02);
}

/* Button animations */
.btn {
    position: relative;
    overflow: hidden;
}

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

.btn:hover::before {
    left: 100%;
}

/* Testimonial animation */
.testimonial-card {
    transition: all 0.3s ease;
}

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

/* FAQ accordion animation */
.accordion-item {
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    transform: scale(1.02);
}

/* Map section animation */
.map-content {
    animation: scaleIn 1s ease-out forwards;
}

.offer-item:nth-child(1) {
    animation: fadeInLeft 0.8s ease-out 0.3s forwards;
    opacity: 0;
}

.offer-item:nth-child(2) {
    animation: fadeInRight 0.8s ease-out 0.5s forwards;
    opacity: 0;
}

.btn-offer {
    animation: fadeInUp 0.8s ease-out 0.7s forwards;
    opacity: 0;
}

/* Footer animation */
.footer-modern {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Navbar scroll animation */
.navbar {
    transition: all 0.3s ease;
}

.navbar-scrolled {
    transform: translateY(0);
    animation: slideInDown 0.3s ease-out;
}

@keyframes slideInDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

/* WhatsApp button entrance */
.whatsapp-float-container {
    animation: scaleIn 0.6s ease-out 2s forwards;
    opacity: 0;
}

/* Loading animation for images */
img {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

img:hover {
    transform: scale(1.05);
}

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