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

/* Performance optimizations */
img {
    max-width: 100%;
    height: auto;
    will-change: transform;
}

.service-photo img {
    will-change: transform;
    backface-visibility: hidden;
    transform: translateZ(0);
}

/* GPU acceleration for animations */
.brand-logo,
.service-card,
.cta-primary-btn {
    will-change: transform;
    backface-visibility: hidden;
    transform: translateZ(0);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #1a1a1a;
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)),
        url('assets/oficina-mecanica-especializada-fachada-florianopolis.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    color: white;
    overflow-x: hidden;
    min-height: 100vh;
    line-height: 1.6;
    scroll-behavior: smooth;
}

/* Prevenir scroll automático indesejado */
html {
    scroll-behavior: smooth;
}

/* Otimização para animações */
* {
    will-change: auto;
}

/* Top Navigation Bar */
.top-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 100;
    transition: all 0.3s ease;
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.navbar-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: #4A9FE7;
    text-decoration: none;
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 8px;
}

.nav-link:hover,
.nav-link.active {
    color: #4A9FE7;
    background: rgba(74, 159, 231, 0.1);
}

.navbar-cta {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-whatsapp-btn {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.nav-whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    z-index: 101;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #4A9FE7;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

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

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

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

/* Mobile Styles */
@media (max-width: 768px) {
    .navbar-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(0, 0, 0, 0.8);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        gap: 30px;
        transition: left 0.3s ease;
    }
    
    .navbar-menu.active {
        left: 0;
    }
    
    .nav-link {
        font-size: 1.2rem;
        padding: 15px 30px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .navbar-cta {
        gap: 15px;
    }
    
    .nav-whatsapp-btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
}

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

.navbar-logo .logo-text {
    font-size: 1.5rem;
    font-weight: 900;
    color: #4A9FE7;
    text-shadow: 0 0 10px rgba(74, 159, 231, 0.3);
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    border-radius: 20px;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.9rem;
}

.nav-link:hover,
.nav-link.active {
    color: #4A9FE7;
    background: rgba(74, 159, 231, 0.1);
    transform: translateY(-2px);
}

.nav-link i {
    font-size: 1rem;
}

.navbar-cta .nav-whatsapp-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #25D366;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.navbar-cta .nav-whatsapp-btn:hover {
    background: #22B85C;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #4A9FE7;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Header Section with Background */
.header-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-top: 70px; /* Account for fixed navbar */
}

.header-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    animation: backgroundZoom 30s ease-in-out infinite;
}

@keyframes backgroundZoom {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.6) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
}

.header-content {
    position: relative;
    z-index: 10;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo-container {
    margin-bottom: 4rem;
}

.instituto-text {
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 6px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.main-logo {
    font-size: 4.5rem;
    font-weight: 900;
    letter-spacing: 1px;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.gr5-text {
    color: #4A9FE7;
    text-shadow: 0 0 30px rgba(74, 159, 231, 0.5);
}

.since-text {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
}

.hero-message {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero-message h1 {
    font-size: 2.75rem;
    font-weight: 400;
    line-height: 1.15;
    color: white;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    opacity: 0.9;
    font-weight: 500;
}

.hero-location {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 1rem;
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-location i {
    color: #4A9FE7;
}

.highlight-blue {
    color: #4A9FE7;
    font-weight: 500;
}

.highlight-orange {
    color: #FFA726;
    font-weight: 500;
}

.highlight-dark {
    color: #1A237E;
    font-weight: 600;
}

/* ==== ANIMAÇÃO DO CELULAR ELETROVEL ==== */

/* Container da animação */
.hero-visual {
    position: absolute;
    right: -360px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 360px;
    height: 720px;
}

/* Container do celular com animação de entrada */
.dashboard-preview {
    background: #1a1a1a;
    border-radius: 40px;
    padding: 0;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 2px solid #333;
    width: 360px;
    height: 720px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    aspect-ratio: 9/19.5;
    
    /* ESTADO INICIAL - Celular fora da tela */
    transform: translateX(100vw) scale(0.8);
    opacity: 0;
    
    /* ANIMAÇÃO DE ENTRADA */
    animation: phoneSlideIn 2s ease-out 1s forwards;
}

/* Fallback caso a animação falhe */
.dashboard-preview.visible {
    transform: translateX(0) rotateY(0deg) rotateZ(0deg) scale(1) !important;
    opacity: 1 !important;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
    animation: none !important;
}

/* Animação de teste mais simples */
.dashboard-preview.test-animation {
    animation: phoneTest 1s ease-out forwards;
}

@keyframes phoneTest {
    0% {
        transform: translateX(50px) scale(0.9);
        opacity: 0;
    }
    100% {
        transform: translateX(0) scale(1);
        opacity: 1;
    }
}

/* Animação de emergência - sempre funciona */
.dashboard-preview.emergency-show {
    transform: translateX(0) rotateY(0deg) rotateZ(0deg) scale(1) !important;
    opacity: 1 !important;
    animation: none !important;
}

/* Keyframes da animação de entrada */
@keyframes phoneSlideIn {
    0% {
        transform: translateX(50px) scale(0.9);
        opacity: 0;
    }
    
    100% {
        transform: translateX(0) scale(1);
        opacity: 1;
    }
}

/* Telas do Celular */
.phone-screen {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    border-radius: 38px;
    transition: all 1.5s cubic-bezier(0.23, 1, 0.32, 1);
    display: none;
    flex-direction: column;
    opacity: 0;
    transform: translateX(60px) scale(0.9) rotateY(15deg);
    z-index: 1;
}

.phone-screen.active {
    opacity: 1;
    transform: translateX(0) scale(1) rotateY(0deg);
    z-index: 2;
}

.phone-screen:first-child {
    display: flex;
    opacity: 1;
    transform: translateX(0) scale(1) rotateY(0deg);
    z-index: 2;
}

/* Efeitos de transição entre telas */
.phone-screen.slide-out {
    transform: translateX(-60px) scale(0.9) rotateY(-15deg);
    opacity: 0;
    z-index: 1;
}

.phone-screen.slide-in {
    transform: translateX(60px) scale(0.9) rotateY(15deg);
    opacity: 0;
    z-index: 1;
}

/* Cursor Personalizado */
.vm-cursor {
    position: absolute;
    width: 20px;
    height: 20px;
    background: #000;
    border-radius: 50%;
    z-index: 100;
    opacity: 0;
    pointer-events: none;
    transition: all 1.2s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.8);
    animation: cursorPulse 2s ease-in-out infinite;
}

@keyframes cursorPulse {
    0%, 100% {
        box-shadow: 0 0 15px rgba(0, 0, 0, 0.8);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 25px rgba(0, 0, 0, 1);
        transform: scale(1.1);
    }
}

/* Efeito de clique do cursor */
.vm-cursor.clicking {
    animation: cursorClick 0.2s ease-out;
}

@keyframes cursorClick {
    0% {
        transform: scale(1);
        box-shadow: 0 0 15px rgba(0, 0, 0, 0.8);
    }
    50% {
        transform: scale(1.4);
        box-shadow: 0 0 30px rgba(0, 0, 0, 1);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 15px rgba(0, 0, 0, 0.8);
    }
}

/* Tela Home */
.home-screen {
    flex: 1;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 0;
    border-radius: 38px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

/* Wallpaper do celular */
.phone-wallpaper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    opacity: 0.4;
    z-index: 1;
    overflow: hidden;
}

.wallpaper-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.wallpaper-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.phone-wallpaper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.03) 50%, transparent 70%);
    z-index: 2;
}

.home-screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(74, 159, 231, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(37, 211, 102, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 0;
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    z-index: 4;
    background: rgba(0, 0, 0, 0.3);
    padding: 8px 15px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

/* Brand logo removido - agora temos apenas wallpaper */

.app-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 260px;
    margin: 0 auto;
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    width: calc(100% - 60px);
    justify-items: center;
    align-items: center;
}

.app-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 15px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    text-align: center;
    min-width: 70px;
}

.app-icon:hover {
    transform: translateY(-3px) scale(1.05);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.app-whatsapp {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    animation: whatsappGlow 3s ease-in-out infinite;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

@keyframes whatsappGlow {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    }
    50% {
        box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    }
}

.app-whatsapp {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #25d366, #128c7e);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
}

.app-phone {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #4a9fe7, #1976d2);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    box-shadow: 0 4px 15px rgba(74, 159, 231, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.app-maps {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #ff6b6b, #ee5a52);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

/* Tela WhatsApp */
.whatsapp-screen {
    flex: 1;
    background: linear-gradient(135deg, #075e54 0%, #128c7e 100%);
    border-radius: 38px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.whatsapp-screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 20%, rgba(37, 211, 102, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(74, 159, 231, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.whatsapp-header {
    background: linear-gradient(135deg, #128c7e 0%, #075e54 100%);
    padding: 25px 20px;
    border-radius: 38px 38px 0 0;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
}

.contact-avatar {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, #4a9fe7, #1976d2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 3px 10px rgba(74, 159, 231, 0.3);
    animation: avatarPulse 2s ease-in-out infinite;
}

@keyframes avatarPulse {
    0%, 100% {
        box-shadow: 0 3px 10px rgba(74, 159, 231, 0.3);
    }
    50% {
        box-shadow: 0 4px 15px rgba(74, 159, 231, 0.5);
    }
}

.contact-name {
    font-weight: 700;
    font-size: 16px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.contact-status {
    font-size: 12px;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 4px;
}

.contact-status::before {
    content: '●';
    color: #25d366;
    font-size: 8px;
    animation: statusBlink 2s ease-in-out infinite;
}

@keyframes statusBlink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.3; }
}

.whatsapp-messages {
    flex: 1;
    padding: 18px;
    overflow-y: auto;
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, rgba(7, 94, 84, 0.1) 0%, rgba(18, 140, 126, 0.1) 100%);
}

.message {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    animation: messageSlideIn 1.5s cubic-bezier(0.23, 1, 0.32, 1);
    opacity: 0;
    transform: translateY(30px) scale(0.95);
}

.message.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.message.sent {
    align-items: flex-end;
}

.message-bubble {
    background: #dcf8c6;
    padding: 12px 16px;
    border-radius: 20px;
    max-width: 80%;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.5;
    color: #2c3e50;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
    position: relative;
    word-wrap: break-word;
}

.message-bubble::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 20px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #dcf8c6;
}

.message.sent .message-bubble {
    background: linear-gradient(135deg, #4a9fe7, #1976d2);
    color: white;
    font-weight: 600;
    box-shadow: 0 3px 12px rgba(74, 159, 231, 0.4);
}

.message.sent .message-bubble::before {
    left: auto;
    right: 20px;
    border-top-color: #4a9fe7;
}

@keyframes messageSlideIn {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.9) rotateX(10deg);
    }
    50% {
        opacity: 0.7;
        transform: translateY(15px) scale(0.95) rotateX(5deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1) rotateX(0deg);
    }
}

.message-time {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 5px;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.whatsapp-input {
    padding: 18px;
    background: linear-gradient(135deg, #128c7e 0%, #075e54 100%);
    border-radius: 0 0 38px 38px;
    position: relative;
    z-index: 2;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.input-field {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 25px;
    padding: 8px 16px;
    gap: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.input-field input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 14px;
    font-weight: 500;
    color: #2c3e50;
    background: white;
    border-radius: 20px;
    padding: 10px 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.send-button {
    background: linear-gradient(135deg, #25d366, #128c7e);
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
    transition: all 0.2s ease;
}

.send-button:hover {
    transform: scale(1.1);
    box-shadow: 0 3px 12px rgba(37, 211, 102, 0.5);
}

/* Tela de Agendamento */
.booking-screen {
    flex: 1;
    background: linear-gradient(135deg, #4a9fe7, #1976d2);
    border-radius: 38px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.booking-header {
    text-align: center;
    color: white;
    margin-bottom: 20px;
}

.booking-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.booking-title {
    font-size: 18px;
    font-weight: 700;
}

.booking-form {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 15px;
    backdrop-filter: blur(10px);
    overflow-y: auto;
}

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

.form-group label {
    display: block;
    color: white;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 6px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 8px 12px;
    border: none;
    border-radius: 8px;
    font-size: 12px;
    background: rgba(255, 255, 255, 0.9);
}

.confirm-button {
    width: 100%;
    background: #25d366;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    margin-top: 15px;
    transition: all 0.3s ease;
    animation: buttonPulse 2s ease-in-out infinite;
}

@keyframes buttonPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
    }
}

.confirm-button:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

/* Tela de Confirmação */
.confirm-screen {
    flex: 1;
    background: linear-gradient(135deg, #25d366, #128c7e);
    border-radius: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    overflow: hidden;
}

.confirm-content {
    text-align: center;
    color: white;
    max-width: 100%;
    max-height: 100%;
    overflow-y: auto;
}

.success-icon {
    font-size: 40px;
    margin-bottom: 15px;
    animation: bounce 1s ease-in-out;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-5px);
    }
    60% {
        transform: translateY(-3px);
    }
}

.confirm-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.confirm-details {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 15px;
    backdrop-filter: blur(10px);
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 12px;
}

.detail-item:last-child {
    margin-bottom: 0;
}

.detail-item i {
    width: 16px;
    text-align: center;
    font-size: 12px;
}

.confirm-message {
    font-size: 12px;
    opacity: 0.9;
    line-height: 1.3;
}

/* Notch do iPhone */
.dashboard-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 30px;
    background: #000;
    border-radius: 0 0 15px 15px;
    z-index: 10;
}

/* Indicador de Home */
.dashboard-preview::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    z-index: 10;
}

/* Responsividade para a animação */
@media (max-width: 1200px) {
    .hero-visual {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-visual {
        display: none;
    }
}

/* About & Team Section */
.about-team-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8));
    position: relative;
}

.about-team-section .container {
    max-width: 1400px;
    margin: 0 auto;
}

.about-team-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 3rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(74, 159, 231, 0.1);
    color: #4A9FE7;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(74, 159, 231, 0.3);
}

.about-team-section .section-title {
    font-size: 2.2rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: white;
}

.lead-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

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

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
    border-color: rgba(74, 159, 231, 0.2);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(74, 159, 231, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4A9FE7;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.3rem;
}

.feature-content p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
}

.team-showcase {
    position: relative;
}

.team-photos {
    position: relative;
    margin-bottom: 2rem;
}

.team-photo {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.team-photo.main-photo {
    margin-bottom: 1rem;
}

.team-photo.secondary-photo {
    width: 60%;
    margin-left: auto;
}

.team-photo img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.2), transparent);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}

.photo-badge {
    background: rgba(74, 159, 231, 0.9);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    backdrop-filter: blur(10px);
}

.team-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #4A9FE7;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.team-cta {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.team-message {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.team-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: #25D366;
    color: white;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.team-contact-btn:hover {
    background: #22B85C;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* Main Content */
.main-content {
    padding: 0 2rem;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
}

.services-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 3rem;
    color: white;
    animation: slideInLeft 1s ease-out;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

/* Service Cards */
.service-card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-photo {
    position: relative;
    height: 180px;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
    margin: 0 1.5rem 0 1.5rem;
}

.service-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-photo:hover img {
    transform: scale(1.05);
}

.photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(74, 159, 231, 0.3), rgba(25, 118, 210, 0.5));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-photo:hover .photo-overlay {
    opacity: 1;
}

.service-header {
    padding: 1rem 1.5rem 0 1.5rem;
    margin-bottom: 0;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    border-color: rgba(74, 159, 231, 0.3);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #4A9FE7, transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.service-description {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0 0 20px 20px;
    margin: 0 1.5rem 1.5rem 1.5rem;
    margin-top: 0;
}

.service-description h4 {
    color: #4A9FE7;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.service-description ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
}

.service-description li {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
    padding-left: 1rem;
    position: relative;
}

.service-description li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4A9FE7;
    font-weight: bold;
}

.service-price {
    background: rgba(74, 159, 231, 0.1);
    color: #4A9FE7;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    border: 1px solid rgba(74, 159, 231, 0.3);
}

.service-header {
    margin-bottom: 1.5rem;
}

.service-category {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.service-title {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.service-title.revision {
    color: #4A9FE7;
}

.service-title.oil {
    color: #81C784;
}

.service-title.transmission {
    color: #E57373;
}

.service-title.diagnostic {
    color: #FFB74D;
}

.service-title.hybrid {
    color: #9C27B0;
}

/* Service Mockups */
.service-mockup {
    width: calc(100% - 3rem);
    height: 180px;
    border-radius: 0;
    position: relative;
    overflow: hidden;
    display: flex;
    margin: 0 1.5rem 0 1.5rem;
    align-items: center;
    justify-content: center;
}

.mockup-content {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

/* Specific Service Mockup Styles */
.revision-bg {
    background: linear-gradient(135deg, rgba(74, 159, 231, 0.15), rgba(33, 150, 243, 0.08));
}

.oil-bg {
    background: linear-gradient(135deg, rgba(129, 199, 132, 0.15), rgba(76, 175, 80, 0.08));
}

.transmission-bg {
    background: linear-gradient(135deg, rgba(229, 115, 115, 0.15), rgba(244, 67, 54, 0.08));
}

.diagnostic-bg {
    background: linear-gradient(135deg, rgba(255, 183, 77, 0.15), rgba(255, 152, 0, 0.08));
}

.hybrid-bg {
    background: linear-gradient(135deg, rgba(156, 39, 176, 0.15), rgba(103, 58, 183, 0.08));
}

/* Revision Dashboard */
.revision-dashboard {
    text-align: center;
    width: 100%;
}

.dashboard-header {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #4A9FE7;
}

.checklist-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.checklist-item {
    font-size: 0.8rem;
    padding: 0.3rem 0.6rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    text-align: center;
}

.checklist-badge {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Oil System */
.oil-system {
    text-align: center;
    width: 100%;
}

.oil-header {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #81C784;
}

.oil-types {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 1rem;
}

.oil-type {
    padding: 0.4rem 0.8rem;
    background: rgba(129, 199, 132, 0.2);
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.oil-badge {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Transmission Interface */
.transmission-interface {
    text-align: center;
    width: 100%;
}

.software-header {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #E57373;
}

.transmission-systems {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 1rem;
}

.system-indicator {
    padding: 0.4rem 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.system-indicator.active {
    background: rgba(229, 115, 115, 0.3);
    color: #E57373;
}

.scan-animation {
    position: relative;
    height: 20px;
    overflow: hidden;
}

.scan-line {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #E57373, transparent);
    animation: scan 2s infinite;
}

@keyframes scan {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Diagnostic Scene */
.diagnostic-scene {
    text-align: center;
    width: 100%;
    position: relative;
}

.scanner-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.car-outline {
    font-size: 2.5rem;
    margin: 0.5rem 0;
}

.diagnostic-data {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.data-point {
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
    background: rgba(255, 183, 77, 0.2);
    border-radius: 10px;
}

/* Hybrid Dashboard */
.hybrid-dashboard {
    text-align: center;
    width: 100%;
}

.hybrid-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hybrid-systems {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    margin-bottom: 1rem;
}

.system-status {
    font-size: 0.8rem;
    padding: 0.3rem 0.6rem;
    background: rgba(156, 39, 176, 0.2);
    border-radius: 10px;
}

.certification-badge {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

/* Enhanced Brands Section */
.brands-section {
    text-align: center;
    padding: 4rem 2rem;
    margin-top: 2rem;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
    position: relative;
}

.brands-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(74, 159, 231, 0.1), transparent 70%);
    z-index: 1;
}

.brands-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
    position: relative;
    z-index: 10;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: slideInRight 1s ease-out;
}

.brands-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    font-weight: 400;
    position: relative;
    z-index: 10;
}

.brands-container {
    margin-top: 3rem;
    position: relative;
    overflow: hidden;
    z-index: 10;
}

.brands-track {
    display: flex;
    align-items: center;
    white-space: nowrap;
    margin-bottom: 2rem;
}

.brands-track-left {
    animation: marquee-left 20s linear infinite;
}

.brands-track-right {
    animation: marquee-right 25s linear infinite;
}

.brand-logo {
    flex: 0 0 auto;
    margin: 0 2.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.7;
    filter: grayscale(80%);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.brand-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.brand-logo:hover::before {
    left: 100%;
}

.brand-logo:hover {
    opacity: 1;
    filter: grayscale(0%) brightness(1.1);
    transform: translateY(-8px) scale(1.05);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(74, 159, 231, 0.5);
    box-shadow: 0 10px 30px rgba(74, 159, 231, 0.2);
    animation: bounce 0.6s ease;
}

.brand-logo img {
    width: 100px;
    height: auto;
    max-height: 60px;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
}

.brand-logo:hover img {
    transform: scale(1.1);
}

/* Enhanced Marquee Animations */
@keyframes marquee-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes marquee-right {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

/* Pause on hover */
.brands-track:hover {
    animation-play-state: paused;
}

/* Featured brands highlight */
.brand-logo.featured {
    opacity: 1;
    filter: grayscale(0%);
    background: rgba(74, 159, 231, 0.1);
    border-color: rgba(74, 159, 231, 0.3);
    box-shadow: 0 5px 20px rgba(74, 159, 231, 0.1);
}

.brand-logo.featured:hover {
    background: rgba(74, 159, 231, 0.2);
    border-color: rgba(74, 159, 231, 0.6);
    box-shadow: 0 15px 40px rgba(74, 159, 231, 0.3);
}

/* Team Section */
.team-section {
    padding: 2rem;
    margin: 2rem 0;
}

.team-photo {
    width: 100%;
    max-width: 1200px;
    height: 400px;
    margin: 0 auto;
    background: 
        linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4)),
        url('assets/oficina-mecanica-especializada-equipe-florianopolis.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.team-overlay {
    text-align: center;
    z-index: 2;
    padding: 2rem;
}

.team-overlay h2 {
    font-size: 2.2rem;
    font-weight: 400;
    line-height: 1.3;
    color: white;
    margin-bottom: 1rem;
}

.team-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    font-weight: 400;
}

/* Reviews Section - Google Style */
.reviews-section {
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.02);
}

.google-reviews-container {
    max-width: 1000px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    color: #333;
}

.google-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e0e0e0;
}

.google-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.2rem;
    font-weight: 500;
    color: #4285f4;
}

.google-logo i {
    font-size: 1.5rem;
}

.overall-rating {
    text-align: right;
}

.rating-display {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.3rem;
}

.rating-number {
    font-size: 2rem;
    font-weight: 600;
    color: #333;
}

.rating-stars {
    display: flex;
    gap: 2px;
}

.rating-stars i {
    color: #ffa500;
    font-size: 1rem;
}

.rating-count {
    font-size: 0.9rem;
    color: #666;
}

.reviews-grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.google-review-card {
    padding: 1.5rem;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    background: #fafafa;
    transition: all 0.3s ease;
}

.google-review-card:hover {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.reviewer-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #4285f4;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
    overflow: hidden;
}

.reviewer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.reviewer-info {
    flex: 1;
}

.reviewer-name {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.2rem;
}

.review-date {
    font-size: 0.8rem;
    color: #666;
}

.review-rating {
    display: flex;
    gap: 2px;
}

.review-rating i {
    color: #ffa500;
    font-size: 0.9rem;
}

.review-text {
    color: #333;
    line-height: 1.5;
    font-size: 0.95rem;
}

.google-footer {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid #e0e0e0;
}

.view-all-reviews {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #4285f4;
    text-decoration: none;
    font-weight: 500;
    padding: 0.8rem 1.5rem;
    border: 1px solid #4285f4;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.view-all-reviews:hover {
    background: #4285f4;
    color: white;
    transform: translateY(-2px);
}

/* FAQ Section */
.faq-section {
    padding: 3rem 2rem;
}

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

.faq-container h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 3rem;
    color: white;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.06);
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
}

.faq-icon {
    font-size: 1.2rem;
    font-weight: 300;
    color: #4A9FE7;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 2rem 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.faq-answer p {
    margin-bottom: 0.8rem;
}

/* Enhanced CTA Section */
.enhanced-cta-section {
    position: relative;
    padding: 4rem 2rem;
    margin: 3rem 0;
    overflow: hidden;
    background: linear-gradient(135deg, #0A0E1A, #101C30);
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8));
    z-index: 1;
}

.cta-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(74, 159, 231, 0.1), transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(25, 118, 210, 0.05), transparent 50%);
}

.enhanced-cta-container {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.cta-header {
    margin-bottom: 3rem;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: white;
}

.highlight-gradient {
    background: linear-gradient(45deg, #FFD700, #FFA726, #FF8F00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.cta-description {
    font-size: 1.3rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 3rem;
}

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

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

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

.benefit-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.benefit-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.benefit-text strong {
    font-size: 1rem;
    font-weight: 600;
    color: white;
}

.benefit-text span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.cta-actions {
    margin-bottom: 3rem;
}

.primary-action {
    margin-bottom: 2rem;
}

.cta-primary-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: #25D366;
    color: white;
    padding: 1.2rem 3rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    position: relative;
    overflow: hidden;
    animation: pulse 2s infinite;
}

.cta-primary-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 ease;
}

.cta-primary-btn:hover::before {
    left: 100%;
}

.cta-primary-btn:hover {
    background: #22B85C;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5);
}

.btn-icon {
    font-size: 1.5rem;
}

.btn-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.btn-text {
    font-size: 1.1rem;
    font-weight: 700;
}

.btn-subtext {
    font-size: 0.8rem;
    opacity: 0.9;
    font-weight: 400;
}

.secondary-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cta-secondary-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-secondary-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.cta-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.info-item.urgent {
    background: rgba(255, 183, 77, 0.1);
    border: 1px solid rgba(255, 183, 77, 0.3);
    color: #FFB74D;
}

.info-item i {
    color: #4A9FE7;
    font-size: 1rem;
}

.info-item.urgent i {
    color: #FFA726;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 2;
}

.floating-car,
.floating-wrench,
.floating-gear {
    position: absolute;
    color: rgba(255, 255, 255, 0.1);
    font-size: 4rem;
    animation: float 6s ease-in-out infinite;
}

.floating-car {
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.floating-wrench {
    bottom: 20%;
    left: 5%;
    animation-delay: -2s;
}

.floating-gear {
    top: 50%;
    right: 5%;
    animation-delay: -4s;
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Bottom Section */
.bottom-section {
    padding: 2rem;
    margin-bottom: 2rem;
}

.bottom-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.bottom-button {
    background: rgba(255, 255, 255, 0.08);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
}

.bottom-button:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.bottom-button .icon,
.bottom-button i {
    font-size: 1.2rem;
}

.footer-info {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.footer-address, .footer-email, .footer-note {
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

.footer-address i, 
.footer-email i, 
.footer-note i {
    font-size: 1rem;
    opacity: 0.8;
}

.footer-note {
    background: rgba(255, 183, 77, 0.1);
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 183, 77, 0.2);
    color: #FFB74D;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .header-section {
        min-height: 80vh;
    }
}

@media (max-width: 768px) {
    .instituto-text {
        font-size: 0.8rem;
        letter-spacing: 4px;
    }

    .main-logo {
        font-size: 3rem;
    }

    .hero-message h1 {
        font-size: 2rem;
    }

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

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

    .bottom-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .team-overlay h2 {
        font-size: 1.8rem;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }

    .contact-info {
        flex-direction: column;
        gap: 1rem;
    }

    .header-section {
        min-height: 70vh;
    }

    .google-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .overall-rating {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .main-logo {
        font-size: 2.5rem;
    }

    .hero-message h1 {
        font-size: 1.6rem;
    }

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

    .service-card {
        padding: 1.5rem;
    }

    .service-mockup {
        height: 180px;
    }

    .cta-container {
        padding: 2rem;
    }

    .checklist-items {
        grid-template-columns: 1fr;
    }

    .oil-types {
        flex-direction: column;
        gap: 0.3rem;
    }

    .transmission-systems {
        flex-direction: column;
        gap: 0.3rem;
    }

    .header-section {
        min-height: 60vh;
    }

    .hero-location {
        font-size: 0.9rem;
        padding: 0.6rem 1rem;
    }
}

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

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Pulse animation for important elements */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Slide in from left */
@keyframes slideInLeft {
    0% {
        transform: translateX(-100px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Slide in from right */
@keyframes slideInRight {
    0% {
        transform: translateX(100px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Bounce animation */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Glow effect */
@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(74, 159, 231, 0.5);
    }
    50% {
        box-shadow: 0 0 20px rgba(74, 159, 231, 0.8);
    }
}

.service-card {
    animation: fadeInUp 0.6s ease-out forwards;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

::-webkit-scrollbar-thumb {
    background: rgba(74, 159, 231, 0.3);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(74, 159, 231, 0.5);
}

/* Interactive FAQ */
.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding-top: 0;
    padding-bottom: 0;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-top: 0;
    padding-bottom: 1.5rem;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus states for keyboard navigation */
.cta-button:focus,
.bottom-button:focus,
.faq-question:focus {
    outline: 2px solid #4A9FE7;
    outline-offset: 2px;
}

/* ===== BLOG STYLES ===== */

/* Blog Main */
.blog-main {
    padding-top: 80px;
    min-height: 100vh;
    background: linear-gradient(135deg, #0d1e30 0%, #1a3b5d 100%);
}

/* Blog Hero */
.blog-hero {
    background: linear-gradient(135deg, rgba(13, 30, 48, 0.9), rgba(26, 59, 93, 0.9)), 
                url('assets/oficina-mecanica-especializada-fachada-florianopolis.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 120px 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.blog-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(74, 159, 231, 0.1), rgba(25, 118, 210, 0.1));
    z-index: 1;
}

.blog-hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.blog-hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    letter-spacing: 1px;
    line-height: 1;
    margin-bottom: 1rem;
    text-align: center;
    color: #4A9FE7;
    text-shadow: 0 0 30px rgba(74, 159, 231, 0.5);
}

.blog-hero-subtitle {
    font-size: 1.3rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}


/* Blog Content */
.blog-content {
    padding: 80px 0;
}

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

/* Featured Post */
.blog-featured {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 60px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 400px;
}

.featured-image {
    position: relative;
    overflow: hidden;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.featured-image:hover img {
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #4A9FE7, #1976D2);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.featured-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.post-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: #4A9FE7;
}

.post-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.featured-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.featured-title a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.featured-title a:hover {
    color: #4A9FE7;
}

.featured-excerpt {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
}

.featured-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.btn-read-more {
    background: linear-gradient(135deg, #4A9FE7, #1976D2);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-read-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(74, 159, 231, 0.3);
}

.post-stats {
    display: flex;
    gap: 20px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.post-stats span {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.blog-post {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.blog-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

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

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.post-category-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(74, 159, 231, 0.9);
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.post-content {
    padding: 25px;
}

.post-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.4;
}

.post-title a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-title a:hover {
    color: #4A9FE7;
}

.post-excerpt {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.8;
}

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

.post-link {
    color: #4A9FE7;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.post-link:hover {
    color: #1976D2;
    transform: translateX(5px);
}

/* Load More Button */
.blog-load-more {
    text-align: center;
}

.btn-load-more {
    background: linear-gradient(135deg, #4A9FE7, #1976D2);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.btn-load-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(74, 159, 231, 0.3);
}

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Responsive Design for Blog */
@media (max-width: 768px) {
    .blog-hero {
        padding: 80px 0;
    }
    
    .blog-hero-title {
        font-size: 3rem;
    }
    
    .blog-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .blog-featured {
        grid-template-columns: 1fr;
    }
    
    .featured-content {
        padding: 30px 20px;
    }
    
    .featured-title {
        font-size: 1.8rem;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .featured-actions {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .blog-hero-title {
        font-size: 2.5rem;
    }
    
    .blog-hero-subtitle {
        font-size: 1rem;
    }
}

/* Print styles */
@media print {
    body {
        background: white;
        color: black;
    }
    
    .service-card,
    .review-card,
    .faq-item {
        border: 1px solid #ccc;
        break-inside: avoid;
    }
}

/* Professional Footer */
.professional-footer {
    background: linear-gradient(135deg, #0A0E1A, #101C30, #1A1A2E);
    color: white;
    margin-top: 3rem;
}

.footer-main {
    padding: 3rem 2rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: #4A9FE7;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.company-name {
    font-size: 1.8rem;
    font-weight: 900;
    color: #4A9FE7;
}

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

.company-description {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

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

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background: rgba(74, 159, 231, 0.2);
    color: #4A9FE7;
    transform: translateY(-2px);
    border-color: rgba(74, 159, 231, 0.3);
}

.social-link.whatsapp:hover {
    background: rgba(37, 211, 102, 0.2);
    color: #25D366;
    border-color: rgba(37, 211, 102, 0.3);
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 30px;
    height: 2px;
    background: #4A9FE7;
    border-radius: 1px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: #4A9FE7;
    padding-left: 0.5rem;
}

.contact-column .contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.contact-column .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-column .contact-item i {
    color: #4A9FE7;
    font-size: 1.1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.contact-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.contact-text span,
.contact-text a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.contact-text a:hover {
    color: #4A9FE7;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 1.5rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
}

.footer-badges {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.badge-item i {
    color: #4A9FE7;
}

.important-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 183, 77, 0.1);
    color: #FFB74D;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(255, 183, 77, 0.2);
}

.important-note i {
    color: #FFA726;
}

/* Mobile Responsiveness for New Elements */
@media (max-width: 1024px) {
    .navbar-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .about-team-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .cta-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .navbar-container {
        padding: 0 1rem;
    }
    
    .nav-link span {
        display: inline;
    }
    
    .navbar-cta .nav-whatsapp-btn span {
        display: inline;
    }
    
    .about-team-section .section-title {
        font-size: 1.8rem;
    }
    
    .team-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-badges {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-benefits {
        grid-template-columns: 1fr;
    }
    
    .secondary-actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .cta-title {
        font-size: 1.6rem;
    }
    
    .cta-description {
        font-size: 1rem;
    }
    
    .benefit-item {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }
    
    .cta-primary-btn {
        padding: 1rem 2rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .btn-content {
        align-items: center;
    }
    
    .team-photo img {
        height: 200px;
    }
}

/* Mobile Navigation Styles */
@media (max-width: 768px) {
    .navbar-menu.active {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.8);
        flex-direction: column;
        padding: 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(20px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }
    
    .navbar-menu.active .nav-link {
        padding: 1rem;
        justify-content: center;
        border-radius: 8px;
        margin-bottom: 0.5rem;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}

/* Logo Styles */
.logo-link {
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
}

.navbar-logo-img {
    height: 65px;
    width: auto;
    max-width: 250px;
    object-fit: contain;
    filter: brightness(1.1);
    transition: all 0.3s ease;
}

.navbar-logo-img:hover {
    filter: brightness(1.3);
    transform: scale(1.05);
}

.hero-logo-img {
    height: 50px !important;
    width: auto !important;
    max-width: 300px !important;
    object-fit: contain !important;
    filter: brightness(1.1);
    margin: 0 auto;
    display: block;
}

/* Override main-logo styles for image */
.main-logo img.hero-logo-img {
    height: 350px !important;
    width: auto !important;
    max-width: 800px !important;
    font-size: inherit !important;
    font-weight: inherit !important;
    letter-spacing: inherit !important;
    line-height: inherit !important;
    margin-bottom: 0.5rem !important;
}

/* Responsive adjustments for logos */
@media (max-width: 768px) {
    .navbar-logo-img {
        height: 55px;
        max-width: 180px;
    }
    
    .hero-logo-img {
        height: 250px !important;
        max-width: 600px !important;
    }
    
    .main-logo img.hero-logo-img {
        height: 250px !important;
        max-width: 600px !important;
    }
}

@media (max-width: 480px) {
    .navbar-logo-img {
        height: 45px;
        max-width: 150px;
    }
    
    .hero-logo-img {
        height: 180px !important;
        max-width: 450px !important;
    }
    
    .main-logo img.hero-logo-img {
        height: 180px !important;
        max-width: 450px !important;
    }
}

