/* Main Styles for WebMarketerPro */
:root {
    --primary: #fbbf24;
    --primary-dark: #f59e0b;
    --primary-light: #fcd34d;
    --dark: #0f172a;
    --dark-secondary: #1e293b;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --slate-300: #cbd5e1;
    --slate-400: #94a3b8;
    --white: #ffffff;
}

body {
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    scroll-behavior: smooth;
    line-height: 1.6;
}

.gradient-bg {
    background: linear-gradient(120deg, var(--dark) 0%, var(--dark-secondary) 100%);
    overflow-x: hidden;
    position: relative;
}

.cta-gradient-bg {
    background: linear-gradient(120deg, var(--primary-dark) 0%, var(--primary) 100%);
}

.glow-effect {
    box-shadow: 0 0 15px rgba(251, 191, 36, 0.3), 0 0 30px rgba(251, 191, 36, 0.2);
    transition: box-shadow 0.3s ease;
}

.glow-effect:hover {
    box-shadow: 0 0 25px rgba(251, 191, 36, 0.4), 0 0 40px rgba(251, 191, 36, 0.3);
}

/* ========================================
   HEADER & NAVIGATION STYLES - UNIFIED
   ======================================== */

/* Header Base */
.main-header {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    position: sticky;
    top: 0;
    z-index: 50;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(100, 116, 139, 0.1);
    transition: all 0.3s ease;
    color: white;
}

.main-header.scrolled {
    background: rgba(15, 23, 42, 0.95) !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    color: white !important;
}

.main-header * {
    color: white !important;
}

.main-header .header-logo {
    color: white !important;
}

.main-header .desktop-nav a {
    color: white !important;
}

.main-header .mobile-menu-button {
    color: white !important;
}

/* Logo Styles */
.header-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.header-logo:hover {
    transform: scale(1.05);
}

.header-logo img {
    width: auto !important;
    height: 56px !important;
    max-width: 240px !important;
    min-height: 56px !important;
    object-fit: contain !important;
    background: rgba(255, 255, 255, 0.95);
    padding: 8px 12px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.2);
    transition: transform 0.3s ease;
}

/* Forzar el tamaño del logo con mayor especificidad para evitar conflictos con Tailwind */
.main-header .header-logo img,
header .header-logo img,
.header-container .header-logo img {
    width: auto !important;
    height: 56px !important;
    max-width: 240px !important;
    min-height: 56px !important;
    object-fit: contain !important;
}

.header-logo:hover img {
    transform: rotate(5deg);
}

.logo-text-pro {
    color: #f59e0b;
}

/* Desktop Navigation */
.desktop-nav {
    display: none;
    align-items: center;
    gap: 2rem;
    color: white;
}

.desktop-nav li {
    position: relative;
}

.desktop-nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 4px;
    transition: all 0.3s ease;
    position: relative;
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background: #f59e0b;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
    width: 100%;
}

.desktop-nav a:hover,
.desktop-nav a.active {
    color: #f59e0b;
}

/* Services Dropdown */
.services-dropdown {
    position: relative;
}

.services-dropdown .dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 4px;
}

.services-dropdown .dropdown-trigger i {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.services-dropdown:hover .dropdown-trigger i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    left: 0;
    top: 100%;
    margin-top: 8px;
    width: 240px;
    background: rgba(30, 41, 59, 0.95);
    backdrop-filter: blur(16px);
    border-radius: 12px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    transform: opacity 0 scale(0.95);
    transition: all 0.2s ease;
    opacity: 0;
    visibility: hidden;
    transform-origin: top left;
    border: 1px solid rgba(100, 116, 139, 0.2);
}

.services-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(100, 116, 139, 0.1);
}

.dropdown-menu a:last-child {
    border-bottom: none;
}

.dropdown-menu a:hover {
    background: rgba(71, 85, 105, 0.7);
    color: #f59e0b;
    padding-left: 24px;
}

.dropdown-menu a i {
    width: 16px;
    height: 16px;
    margin-right: 8px;
    color: #f59e0b;
}

/* CTA Button */
.header-cta {
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    color: #0f172a;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
}

/* Mobile Menu Button */
.mobile-menu-button {
    display: block;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.mobile-menu-button:hover {
    background: rgba(100, 116, 139, 0.2);
}

.mobile-menu-button i {
    width: 24px;
    height: 24px;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    background: rgba(30, 41, 59, 0.98);
    backdrop-filter: blur(16px);
    border-top: 1px solid rgba(100, 116, 139, 0.2);
}

.mobile-menu.active {
    display: block;
    animation: slideDown 0.3s ease;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem;
    color: white;
}

.mobile-nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-align: center;
}

.mobile-nav a:hover,
.mobile-nav a.active {
    color: #f59e0b;
    background: rgba(245, 158, 11, 0.1);
}

/* Mobile Services Submenu */
.mobile-services-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mobile-services-dropdown {
    display: flex;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    color: white;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.mobile-services-dropdown:hover {
    color: #f59e0b;
    background: rgba(245, 158, 11, 0.1);
}

.mobile-services-dropdown i {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.mobile-services-dropdown.active i {
    transform: rotate(180deg);
}

.mobile-services-submenu {
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(71, 85, 105, 0.5);
    border-radius: 8px;
    margin-top: 8px;
}

.mobile-services-submenu.active {
    max-height: 400px;
}

.mobile-services-submenu a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    font-size: 14px;
    border-bottom: 1px solid rgba(100, 116, 139, 0.2);
}

.mobile-services-submenu a:last-child {
    border-bottom: none;
}

.mobile-services-submenu a i {
    width: 16px;
    height: 16px;
    margin-right: 8px;
    color: #f59e0b;
}

/* Responsive Design */
@media (min-width: 768px) {
    .desktop-nav {
        display: flex;
    }
    
    .mobile-menu-button {
        display: none;
    }
    
    .mobile-menu {
        display: none !important;
    }
}

/* Animations */
@keyframes slideDown {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Header Container */
.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 70px;
}

/* Active Page Indicator */
.desktop-nav a.current-page {
    color: #f59e0b;
    font-weight: 600;
}

.desktop-nav a.current-page::after {
    width: 100%;
}

.mobile-nav a.current-page {
    color: #f59e0b;
    background: rgba(245, 158, 11, 0.1);
    font-weight: 600;
}

/* Button Styles */
.btn-primary {
    background-color: var(--primary);
    color: var(--dark);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: var(--primary);
    color: var(--dark);
    transform: translateY(-2px);
}

/* Card Styles */
.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Service Icon Container */
.service-icon-container {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon-container {
    transform: scale(1.1) rotate(5deg);
}

/* Testimonial Styles */
.testimonial-slider {
    position: relative;
    overflow: hidden;
}

.testimonial-slide {
    padding: 32px;
    border-radius: 16px;
    transition: opacity 0.5s ease-in-out;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--slate-700);
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.testimonial-dot.active {
    background-color: var(--primary);
}

.testimonial-prev,
.testimonial-next {
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* FAQ Styles */
.faq-item {
    overflow: hidden;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.faq-question {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f8fafc;
}

.faq-answer {
    padding: 0 20px 20px;
    line-height: 1.6;
}

/* Modal Styles */
body.scroll-lock {
    overflow: hidden;
}

/* Estilos de modal antiguos eliminados - ahora se usa el sistema unificado */

/* FAQ Accordion Styles */
.faq-item {
    border-bottom: 1px solid var(--slate-700);
}

.faq-question {
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer.open {
    max-height: 500px;
}

/* Footer Styles */
.footer-link {
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--primary);
}

.social-icon {
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px);
    color: var(--primary);
}

/* Animation Styles */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
    animation: fadeIn 0.8s ease forwards;
}

.animate-delay-100 {
    animation-delay: 0.1s;
}

.animate-delay-200 {
    animation-delay: 0.2s;
}

.animate-delay-300 {
    animation-delay: 0.3s;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .mobile-menu {
        transition: all 0.3s ease;
    }
}

/* Form Styles */
.form-input {
    transition: border-color 0.3s ease;
}

.form-input:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.2);
}

/* Loading indicator */
.loading {
    position: relative;
}

.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
    right: 10px;
    top: calc(50% - 10px);
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Utility classes */
.text-gradient {
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.clip-path-diagonal {
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

/* Portfolio Badge Style */
.portfolio-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #f97316; /* primary-orange */
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

/* Portfolio Item Animation */
.portfolio-item {
    transform: translateY(0);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
    background-color: white;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
    
.portfolio-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}
    
.portfolio-image {
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    width: 100%;
    height: auto;
    object-fit: cover;
}
    
.portfolio-item:hover .portfolio-image {
    transform: scale(1.05);
}

/* Estilo botones de portafolio */
.portfolio-item button {
    background-color: #f97316; /* primary-orange */
    color: white;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.portfolio-item button:hover {
    background-color: #ea580c;
}

/* ============ Social Campaign Visual Styles ============ */
.social-campaign-visual {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 20px;
}

.campaign-dashboard {
    position: relative;
    width: 280px;
    height: 260px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    padding: 20px;
    z-index: 10;
    animation: dashboardFloat 3s ease-in-out infinite;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e2e8f0;
}

.campaign-title {
    font-size: 14px;
    font-weight: 700;
    color: #1e293b;
}

.status-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 600;
    animation: pulseGlow 2s ease-in-out infinite;
}

.status-dot {
    width: 6px;
    height: 6px;
    background: #ffffff;
    border-radius: 50%;
    animation: pulse 1.5s ease-in-out infinite;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 16px;
}

.stat-card {
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    border-radius: 12px;
    padding: 12px;
    text-align: center;
    animation: slideUpFade 0.6s ease-out both;
    border: 1px solid rgba(148, 163, 184, 0.2);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    font-size: 16px;
    margin-bottom: 4px;
    color: #6366f1;
}

.stat-number {
    font-size: 16px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 2px;
}

.stat-label {
    font-size: 9px;
    color: #64748b;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.engagement-section {
    background: linear-gradient(135deg, #fef3c7, #fed7aa);
    border-radius: 12px;
    padding: 12px;
    border: 1px solid rgba(251, 191, 36, 0.3);
}

.engagement-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    font-size: 11px;
    font-weight: 600;
    color: #92400e;
}

.engagement-percentage {
    color: #065f46;
    font-weight: 800;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(251, 191, 36, 0.3);
    border-radius: 3px;
    overflow: hidden;
}

.progress-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border-radius: 3px;
    animation: progressFill 2s ease-out 0.5s both;
}

/* Floating Social Icons */
.floating-icon {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    animation: socialFloat 4s ease-in-out infinite;
    z-index: 5;
}

.floating-icon-1 {
    top: 10%;
    right: 5%;
    background: linear-gradient(135deg, #e1306c, #bc2a8d);
    animation-delay: 0s;
}

.floating-icon-2 {
    top: 25%;
    left: 5%;
    background: linear-gradient(135deg, #1877f2, #166fe5);
    animation-delay: 0.5s;
}

.floating-icon-3 {
    bottom: 30%;
    right: 8%;
    background: linear-gradient(135deg, #0077b5, #005885);
    animation-delay: 1s;
}

.floating-icon-4 {
    bottom: 15%;
    left: 8%;
    background: linear-gradient(135deg, #1da1f2, #0d8bd9);
    animation-delay: 1.5s;
}

.floating-icon-5 {
    top: 50%;
    right: 2%;
    background: linear-gradient(135deg, #ff0050, #ed003c);
    animation-delay: 2s;
}

.floating-icon-6 {
    bottom: 60%;
    left: 2%;
    background: linear-gradient(135deg, #ff0000, #cc0000);
    animation-delay: 2.5s;
}

/* Engagement Bubbles */
.engagement-bubble {
    position: absolute;
    background: white;
    border-radius: 16px;
    padding: 6px 10px;
    display: flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    font-size: 11px;
    font-weight: 600;
    animation: bubbleFloat 3s ease-in-out infinite;
    z-index: 15;
}

.bubble-1 {
    top: 15%;
    right: 20%;
    color: #dc2626;
    animation-delay: 0s;
}

.bubble-2 {
    top: 65%;
    left: 20%;
    color: #2563eb;
    animation-delay: 0.7s;
}

.bubble-3 {
    bottom: 25%;
    right: 25%;
    color: #16a34a;
    animation-delay: 1.4s;
}

/* Growth Arrow */
.growth-arrow {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.3);
    animation: arrowPulse 2s ease-in-out infinite;
    z-index: 15;
}

/* Content Calendar */
.content-calendar {
    position: absolute;
    bottom: -50px;
    left: -60px;
    background: white;
    border-radius: 12px;
    padding: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    z-index: 12;
    animation: calendarSlide 0.8s ease-out 1s both;
}

.calendar-header {
    font-size: 10px;
    font-weight: 700;
    color: #475569;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.calendar-posts {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.post-preview {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 9px;
    color: #64748b;
}

.post-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    animation: dotPulse 2s ease-in-out infinite;
}

.post-1 .post-dot {
    background: #8b5cf6;
    animation-delay: 0s;
}

.post-2 .post-dot {
    background: #06b6d4;
    animation-delay: 0.3s;
}

.post-3 .post-dot {
    background: #10b981;
    animation-delay: 0.6s;
}

/* ============ Benefits Visual Styles ============ */
.benefits-visual-container {
    position: relative;
    width: 100%;
    height: 450px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* SEO Local Benefits Visual */
.seo-local-benefits-visual {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 500px;
    margin: 0 auto;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Centro del Negocio */
.business-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
    z-index: 10;
    animation: businessPulse 4s ease-in-out infinite;
}

.business-icon {
    font-size: 32px;
    margin-bottom: 4px;
}

.business-label {
    font-size: 10px;
    color: white;
    font-weight: 600;
    text-align: center;
}

.verified-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #10b981;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    animation: verifiedBounce 3s ease-in-out infinite;
}

/* Tarjetas de Beneficios */
.benefit-card {
    position: absolute;
    background: white;
    border-radius: 12px;
    padding: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
    min-width: 90px;
    border: 2px solid #e5e7eb;
    animation: benefitFloat 5s ease-in-out infinite;
}

.benefit-icon {
    font-size: 20px;
    margin-bottom: 4px;
}

.benefit-title {
    font-size: 11px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 2px;
}

.benefit-growth {
    font-size: 14px;
    font-weight: 700;
    color: #059669;
}

.benefit-arrow {
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
}

/* Posicionamiento de Beneficios */
.benefit-1 {
    top: 15%;
    left: 15%;
    animation-delay: 0s;
}

.benefit-1 .benefit-arrow {
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 10px solid #f59e0b;
}

.benefit-2 {
    top: 15%;
    right: 15%;
    animation-delay: 1s;
}

.benefit-2 .benefit-arrow {
    bottom: -10px;
    right: 20%;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 10px solid #3b82f6;
}

.benefit-3 {
    bottom: 15%;
    left: 15%;
    animation-delay: 2s;
}

.benefit-3 .benefit-arrow {
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 10px solid #ef4444;
}

.benefit-4 {
    bottom: 15%;
    right: 15%;
    animation-delay: 3s;
}

.benefit-4 .benefit-arrow {
    top: -10px;
    right: 20%;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 10px solid #f59e0b;
}

/* Círculos de Conexión */
.connection-circle {
    position: absolute;
    border: 2px dashed #cbd5e1;
    border-radius: 50%;
    animation: connectionRotate 8s linear infinite;
}

.circle-1 {
    width: 150px;
    height: 150px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 0s;
}

.circle-2 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 2s;
}

.circle-3 {
    width: 250px;
    height: 250px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 4s;
}

.circle-4 {
    width: 300px;
    height: 300px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 6s;
}

/* Partículas Flotantes */
.floating-particle {
    position: absolute;
    font-size: 18px;
    animation: particleFloat 6s ease-in-out infinite;
    z-index: 5;
}

.particle-1 {
    top: 20%;
    left: 50%;
    animation-delay: 0s;
}

.particle-2 {
    top: 50%;
    right: 20%;
    animation-delay: 1.5s;
}

.particle-3 {
    bottom: 20%;
    left: 50%;
    animation-delay: 3s;
}

.particle-4 {
    top: 50%;
    left: 20%;
    animation-delay: 4.5s;
}

/* Ondas de Crecimiento */
.growth-wave {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid #10b981;
    border-radius: 50%;
    animation: growthWave 4s ease-out infinite;
}

.wave-1 {
    width: 120px;
    height: 120px;
    animation-delay: 0s;
}

.wave-2 {
    width: 160px;
    height: 160px;
    animation-delay: 1s;
}

.wave-3 {
    width: 200px;
    height: 200px;
    animation-delay: 2s;
}

/* Animaciones SEO Local Benefits */
@keyframes businessPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.1); }
}

@keyframes verifiedBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

@keyframes benefitFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-10px) scale(1.05); }
}

@keyframes connectionRotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes particleFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.7; }
    33% { transform: translateY(-15px) rotate(120deg); opacity: 1; }
    66% { transform: translateY(10px) rotate(240deg); opacity: 0.5; }
}

@keyframes growthWave {
    0% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.8; }
    100% { transform: translate(-50%, -50%) scale(1.5); opacity: 0; }
}

/* Responsive para SEO Local Benefits */
@media (max-width: 768px) {
    .seo-local-benefits-visual {
        height: 400px;
    }
    
    .business-center {
        width: 80px;
        height: 80px;
    }
    
    .business-icon {
        font-size: 24px;
    }
    
    .business-label {
        font-size: 9px;
    }
    
    .verified-badge {
        width: 20px;
        height: 20px;
        font-size: 10px;
    }
    
    .benefit-card {
        min-width: 75px;
        padding: 10px;
    }
    
    .benefit-icon {
        font-size: 16px;
    }
    
    .benefit-title {
        font-size: 10px;
    }
    
    .benefit-growth {
        font-size: 12px;
    }
    
    .benefit-1,
    .benefit-2 {
        top: 10%;
    }
    
    .benefit-3,
    .benefit-4 {
        bottom: 10%;
    }
    
    .benefit-1,
    .benefit-3 {
        left: 10%;
    }
    
    .benefit-2,
    .benefit-4 {
        right: 10%;
    }
    
    .circle-1 {
        width: 120px;
        height: 120px;
    }
    
    .circle-2 {
        width: 160px;
        height: 160px;
    }
    
    .circle-3 {
        width: 200px;
        height: 200px;
    }
    
    .circle-4 {
        width: 240px;
        height: 240px;
    }
    
    .floating-particle {
        font-size: 14px;
    }
    
    .wave-1 {
        width: 100px;
        height: 100px;
    }
    
    .wave-2 {
        width: 130px;
        height: 130px;
    }
    
    .wave-3 {
        width: 160px;
        height: 160px;
    }
}

@media (max-width: 480px) {
    .seo-local-benefits-visual {
        height: 350px;
    }
    
    .business-center {
        width: 70px;
        height: 70px;
    }
    
    .business-icon {
        font-size: 20px;
    }
    
    .business-label {
        font-size: 8px;
    }
    
    .verified-badge {
        width: 18px;
        height: 18px;
        font-size: 9px;
    }
    
    .benefit-card {
        min-width: 65px;
        padding: 8px;
    }
    
    .benefit-icon {
        font-size: 14px;
    }
    
    .benefit-title {
        font-size: 9px;
    }
    
    .benefit-growth {
        font-size: 11px;
    }
    
    .floating-particle {
        font-size: 12px;
    }
}

/* SEO Local Hero Visual */
.local-seo-hero-visual {
    position: relative;
    width: 500px;
    height: 500px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mapa Base */
.map-container {
    position: relative;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    padding: 2px;
}

.map-grid {
    background: linear-gradient(45deg, #f9fafb 0%, #f3f4f6 100%);
    border-radius: 8px;
    position: relative;
    opacity: 0.7;
}

.map-grid::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M10 10h80v80H10z" fill="none" stroke="%23d1d5db" stroke-width="0.5"/><path d="M20 20h60v60H20z" fill="none" stroke="%23d1d5db" stroke-width="0.3"/></svg>');
    opacity: 0.3;
}

/* Marcadores de Ubicación */
.location-marker {
    position: absolute;
    width: 30px;
    height: 30px;
    z-index: 10;
}

.marker-pin {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    position: relative;
    animation: markerBounce 3s ease-in-out infinite;
}

.marker-pin::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.marker-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(239, 68, 68, 0.3);
    border-radius: 50%;
    animation: pulse 2s infinite;
    transform-origin: center;
}

.marker-1 {
    top: 15%;
    left: 25%;
    animation-delay: 0s;
}

.marker-2 {
    top: 45%;
    right: 20%;
    animation-delay: 1s;
}

.marker-3 {
    bottom: 25%;
    left: 30%;
    animation-delay: 2s;
}

/* Círculo de Área de Influencia */
.influence-circle {
    position: absolute;
    width: 350px;
    height: 350px;
    border: 3px dashed #3b82f6;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: circleRotate 20s linear infinite;
    opacity: 0.6;
}

/* Barra de Búsqueda Local */
.local-search-bar {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 12px 20px;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 280px;
    animation: searchBarPulse 4s ease-in-out infinite;
}

.search-icon {
    font-size: 16px;
    color: #6b7280;
}

.search-text {
    font-size: 14px;
    color: #374151;
    font-weight: 500;
    flex: 1;
}

.location-icon {
    font-size: 16px;
    color: #ef4444;
    animation: locationPulse 2s ease-in-out infinite;
}

/* Resultados de Búsqueda Local */
.search-results {
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    min-width: 250px;
    animation: resultsFadeIn 3s ease-in-out infinite;
}

.result-item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    border-bottom: 1px solid #f3f4f6;
    gap: 10px;
    position: relative;
}

.result-item:last-child {
    border-bottom: none;
}

.result-item:first-child {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-left: 4px solid #f59e0b;
}

.result-2 {
    opacity: 0.7;
}

.result-star {
    font-size: 12px;
    color: #f59e0b;
}

.result-text {
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    flex: 1;
}

.result-badge {
    background: #3b82f6;
    color: white;
    padding: 2px 6px;
    border-radius: 8px;
    font-size: 10px;
    font-weight: 700;
}

.result-item:first-child .result-badge {
    background: #f59e0b;
}

/* Métricas Flotantes para SEO Local */
.floating-metric {
    position: absolute;
    background: white;
    padding: 12px 15px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
    min-width: 90px;
    animation: metricFloat 4s ease-in-out infinite;
    border: 1px solid #e5e7eb;
}

.floating-metric .metric-icon {
    font-size: 20px;
    margin-bottom: 4px;
    display: block;
}

.floating-metric .metric-value {
    font-size: 18px;
    font-weight: 700;
    color: #059669;
    display: block;
    margin-bottom: 2px;
}

.floating-metric .metric-label {
    font-size: 11px;
    color: #6b7280;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.metric-1 {
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.metric-2 {
    bottom: 20%;
    right: -15%;
    animation-delay: 1.5s;
}

.metric-3 {
    bottom: 10%;
    left: -5%;
    animation-delay: 3s;
}

/* Google My Business Badge */
.gmb-badge {
    position: absolute;
    top: 20%;
    right: -20%;
    background: linear-gradient(135deg, #4285f4 0%, #34a853 100%);
    color: white;
    padding: 10px 15px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    animation: gmbBadgePulse 5s ease-in-out infinite;
}

.gmb-icon {
    font-size: 16px;
    margin-bottom: 4px;
}

.gmb-text {
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 2px;
}

.gmb-status {
    font-size: 10px;
    opacity: 0.9;
}

/* Ondas de Señal */
.signal-waves {
    position: absolute;
    bottom: 15%;
    right: 10%;
    width: 60px;
    height: 60px;
}

.wave {
    position: absolute;
    border: 2px solid #3b82f6;
    border-radius: 50%;
    animation: waveExpand 3s ease-out infinite;
}

.wave-1 {
    width: 20px;
    height: 20px;
    top: 20px;
    left: 20px;
    animation-delay: 0s;
}

.wave-2 {
    width: 40px;
    height: 40px;
    top: 10px;
    left: 10px;
    animation-delay: 1s;
}

.wave-3 {
    width: 60px;
    height: 60px;
    top: 0;
    left: 0;
    animation-delay: 2s;
}

/* Animaciones */
@keyframes markerBounce {
    0%, 100% { transform: rotate(-45deg) translateY(0); }
    50% { transform: rotate(-45deg) translateY(-5px); }
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.5); opacity: 0.3; }
    100% { transform: scale(2); opacity: 0; }
}

@keyframes circleRotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes searchBarPulse {
    0%, 100% { transform: translateX(-50%) scale(1); }
    50% { transform: translateX(-50%) scale(1.05); }
}

@keyframes locationPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

@keyframes resultsFadeIn {
    0% { opacity: 0; transform: translateX(-50%) translateY(-10px); }
    20% { opacity: 1; transform: translateX(-50%) translateY(0); }
    80% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(-10px); }
}

@keyframes gmbBadgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes waveExpand {
    0% { transform: scale(0); opacity: 1; }
    100% { transform: scale(1); opacity: 0; }
}

/* Responsive para SEO Local */
@media (max-width: 768px) {
    .local-seo-hero-visual {
        height: 400px;
        max-width: 400px;
    }
    
    .map-container {
        width: 200px;
        height: 200px;
    }
    
    .influence-circle {
        width: 250px;
        height: 250px;
    }
    
    .local-search-bar {
        min-width: 200px;
        padding: 10px 15px;
        font-size: 12px;
    }
    
    .search-results {
        min-width: 180px;
    }
    
    .floating-metric {
        min-width: 70px;
        padding: 8px 10px;
    }
    
    .time-saving-clock {
        width: 50px;
        height: 50px;
    }
    
    .time-saving-clock i {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .local-seo-hero-visual {
        height: 350px;
        max-width: 320px;
    }
    
    .map-container {
        width: 160px;
        height: 160px;
    }
    
    .influence-circle {
        width: 200px;
        height: 200px;
    }
    
    .local-search-bar {
        min-width: 160px;
        padding: 8px 12px;
    }
    
    .search-results {
        min-width: 140px;
    }
    
    .floating-metric {
        min-width: 60px;
        padding: 6px 8px;
    }
    
    .floating-metric .metric-value {
        font-size: 12px;
    }
    
    .floating-metric .metric-icon {
        font-size: 14px;
    }
}

/* Portfolio Hero Visual */
.portfolio-hero-visual {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 600px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Central Portfolio Dashboard */
.portfolio-dashboard {
    position: relative;
    width: 300px;
    min-height: 400px;
    z-index: 10;
    animation: dashboardFloat 6s ease-in-out infinite;
}

/* Project Cards */
.project-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(100, 116, 139, 0.2);
}

.project-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Portfolio Progress Bar */
.portfolio-progress {
    width: 85%;
    animation: progressFill 4s ease-in-out infinite;
}

/* Floating Metrics */
.portfolio-metric {
    position: absolute;
    min-width: 160px;
    animation: metricFloat 5s ease-in-out infinite;
    z-index: 5;
}

.portfolio-metric-1 {
    top: 10%;
    left: -20%;
    animation-delay: 0s;
}

.portfolio-metric-2 {
    bottom: 35%;
    right: -25%;
    animation-delay: 1.5s;
}

.portfolio-metric-3 {
    bottom: 5%;
    left: -15%;
    animation-delay: 3s;
}

/* Award Badge */
.portfolio-award {
    position: absolute;
    top: 15%;
    right: -10%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: awardSpin 8s linear infinite;
    z-index: 15;
}

/* Floating Icons */
.portfolio-icon {
    position: absolute;
    width: 40px;
    height: 40px;
    background: rgba(30, 41, 59, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(100, 116, 139, 0.3);
    animation: iconFloat 7s ease-in-out infinite;
    z-index: 5;
}

.portfolio-icon-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.portfolio-icon-2 {
    top: 60%;
    right: 5%;
    animation-delay: 1.5s;
}

.portfolio-icon-3 {
    bottom: 20%;
    left: 5%;
    animation-delay: 3s;
}

.portfolio-icon-4 {
    bottom: 50%;
    right: 15%;
    animation-delay: 4.5s;
}

/* Animated Particles */
.portfolio-particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: linear-gradient(45deg, #f59e0b, #f97316);
    border-radius: 50%;
    animation: particleMove 10s linear infinite;
}

.portfolio-particle-1 {
    top: 15%;
    left: 80%;
    animation-delay: 0s;
}

.portfolio-particle-2 {
    top: 40%;
    left: 85%;
    animation-delay: 2.5s;
}

.portfolio-particle-3 {
    bottom: 30%;
    right: 90%;
    animation-delay: 5s;
}

.portfolio-particle-4 {
    bottom: 60%;
    right: 85%;
    animation-delay: 7.5s;
}

/* Float Animations for Projects */
.animate-float {
    animation: float 6s ease-in-out infinite;
}

.animate-float-delayed-1 {
    animation: float 6s ease-in-out infinite;
    animation-delay: 0.5s;
}

.animate-float-delayed-2 {
    animation: float 6s ease-in-out infinite;
    animation-delay: 1s;
}

.animate-float-delayed-3 {
    animation: float 6s ease-in-out infinite;
    animation-delay: 1.5s;
}

.animate-float-delayed-4 {
    animation: float 6s ease-in-out infinite;
    animation-delay: 2s;
}

/* Portfolio Animations */
@keyframes dashboardFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-10px) scale(1.02); }
}

@keyframes progressFill {
    0% { width: 0%; }
    50% { width: 85%; }
    100% { width: 85%; }
}

@keyframes metricFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-15px) scale(1.05); }
}

@keyframes awardSpin {
    0% { transform: rotate(0deg) scale(1); }
    25% { transform: rotate(90deg) scale(1.1); }
    50% { transform: rotate(180deg) scale(1); }
    75% { transform: rotate(270deg) scale(1.1); }
    100% { transform: rotate(360deg) scale(1); }
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    33% { transform: translateY(-10px) rotate(120deg); }
    66% { transform: translateY(5px) rotate(240deg); }
}

@keyframes particleMove {
    0% { transform: translateY(0) translateX(0) scale(1); opacity: 0; }
    10% { opacity: 1; }
    50% { transform: translateY(-100px) translateX(50px) scale(1.2); opacity: 0.8; }
    90% { opacity: 1; }
    100% { transform: translateY(-200px) translateX(100px) scale(0.8); opacity: 0; }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Tech Badges for About Section */
.tech-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    animation: techBadgeFloat 6s ease-in-out infinite;
    z-index: 15;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    min-width: 110px;
    justify-content: center;
    text-align: center;
}

.tech-badge i {
    font-size: 16px;
    flex-shrink: 0;
}

.tech-badge span {
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.tech-badge-1 {
    top: 5%;
    left: -25%;
    animation-delay: 0s;
}

.tech-badge-2 {
    top: 25%;
    right: -30%;
    animation-delay: 1s;
}

.tech-badge-3 {
    bottom: 45%;
    left: -20%;
    animation-delay: 2s;
}

.tech-badge-4 {
    bottom: 25%;
    right: -25%;
    animation-delay: 3s;
}

.tech-badge-5 {
    top: 55%;
    left: -35%;
    animation-delay: 4s;
}

.tech-badge-6 {
    bottom: 5%;
    right: -20%;
    animation-delay: 5s;
}

/* Experience Ring */
.experience-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 450px;
    height: 450px;
    border: 3px dashed rgba(245, 158, 11, 0.6);
    border-radius: 50%;
    animation: experienceRotate 20s linear infinite;
    z-index: 5;
}

.experience-content {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 700;
    animation: experienceContentFloat 20s linear infinite reverse;
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    min-width: 90px;
    text-align: center;
}

.experience-number {
    font-size: 18px;
    font-weight: 900;
    display: block;
    line-height: 1;
    margin-bottom: 2px;
}

.experience-text {
    font-size: 12px;
    font-weight: 600;
    display: block;
    line-height: 1;
    margin-bottom: 1px;
}

.experience-subtext {
    font-size: 10px;
    font-weight: 500;
    display: block;
    line-height: 1;
    opacity: 0.9;
}

/* About Image Container */
.about-image-container {
    position: relative;
    z-index: 10;
}

/* Animations for Tech Badges and Experience */
@keyframes techBadgeFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-12px) scale(1.05); }
}

@keyframes experienceRotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes experienceContentFloat {
    0% { transform: translateX(-50%) rotate(0deg); }
    100% { transform: translateX(-50%) rotate(-360deg); }
}

/* Responsive Design for Portfolio */
@media (max-width: 1024px) {
    .portfolio-hero-visual {
        height: 500px;
    }
    
    .portfolio-dashboard {
        width: 280px;
        min-height: 350px;
    }
    
    .portfolio-metric {
        min-width: 140px;
    }
    
    .portfolio-metric-1 {
        left: -25%;
    }
    
    .portfolio-metric-2 {
        right: -30%;
    }
    
    .portfolio-metric-3 {
        left: -20%;
    }
    
    .portfolio-award {
        width: 50px;
        height: 50px;
        right: -5%;
    }
    
    .portfolio-icon {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 768px) {
    .portfolio-hero-visual {
        height: 400px;
        max-width: 400px;
    }
    
    .portfolio-dashboard {
        width: 250px;
        min-height: 300px;
    }
    
    .portfolio-metric {
        min-width: 120px;
        padding: 12px;
    }
    
    .portfolio-metric-1 {
        left: -30%;
        top: 15%;
    }
    
    .portfolio-metric-2 {
        right: -35%;
        bottom: 30%;
    }
    
    .portfolio-metric-3 {
        left: -25%;
        bottom: 10%;
    }
    
    .portfolio-award {
        width: 45px;
        height: 45px;
        right: 0%;
    }
    
    .portfolio-icon {
        width: 30px;
        height: 30px;
    }
    
    .portfolio-icon i {
        font-size: 12px;
    }
    
    .tech-badge {
        padding: 8px 12px;
        min-width: 95px;
        gap: 6px;
    }
    
    .tech-badge span {
        font-size: 11px;
    }
    
    .tech-badge i {
        font-size: 14px;
    }
    
    .tech-badge-1 {
        top: 8%;
        left: -30%;
    }
    
    .tech-badge-2 {
        top: 28%;
        right: -35%;
    }
    
    .tech-badge-3 {
        bottom: 48%;
        left: -25%;
    }
    
    .tech-badge-4 {
        bottom: 28%;
        right: -30%;
    }
    
    .tech-badge-5 {
        top: 58%;
        left: -40%;
    }
    
    .tech-badge-6 {
        bottom: 8%;
        right: -25%;
    }
    
    .experience-ring {
        width: 350px;
        height: 350px;
        border-width: 2px;
    }
    
    .experience-content {
        padding: 10px 16px;
        top: -20px;
        min-width: 80px;
    }
    
    .experience-number {
        font-size: 16px;
    }
    
    .experience-text {
        font-size: 11px;
    }
    
    .experience-subtext {
        font-size: 9px;
    }
}

@media (max-width: 480px) {
    .portfolio-hero-visual {
        height: 350px;
        max-width: 320px;
    }
    
    .portfolio-dashboard {
        width: 220px;
        min-height: 280px;
    }
    
    .portfolio-metric {
        min-width: 100px;
        padding: 10px;
    }
    
    .portfolio-metric-1 {
        left: -35%;
    }
    
    .portfolio-metric-2 {
        right: -40%;
    }
    
    .portfolio-metric-3 {
        left: -30%;
    }
    
    .portfolio-award {
        width: 40px;
        height: 40px;
    }
    
    .portfolio-icon {
        width: 25px;
        height: 25px;
    }
    
    .portfolio-icon i {
        font-size: 10px;
    }
    
    .tech-badge {
        padding: 6px 10px;
        min-width: 80px;
        gap: 4px;
    }
    
    .tech-badge span {
        font-size: 10px;
    }
    
    .tech-badge i {
        font-size: 12px;
    }
    
    .tech-badge-1 {
        top: 10%;
        left: -35%;
    }
    
    .tech-badge-2 {
        top: 30%;
        right: -40%;
    }
    
    .tech-badge-3 {
        bottom: 50%;
        left: -30%;
    }
    
    .tech-badge-4 {
        bottom: 30%;
        right: -35%;
    }
    
    .tech-badge-5 {
        top: 60%;
        left: -45%;
    }
    
    .tech-badge-6 {
        bottom: 10%;
        right: -30%;
    }
    
    .experience-ring {
        width: 280px;
        height: 280px;
        border-width: 2px;
    }
    
    .experience-content {
        padding: 8px 12px;
        top: -18px;
        min-width: 70px;
    }
    
    .experience-number {
        font-size: 14px;
    }
    
    .experience-text {
        font-size: 10px;
    }
    
    .experience-subtext {
        font-size: 8px;
    }
}

/* Ensure proper stacking and visibility */
.portfolio-hero-visual * {
    pointer-events: none;
}

.portfolio-dashboard {
    pointer-events: auto;
}

/* ============ Social Media Benefits Visual Styles ============ */

/* Gráfico de Crecimiento Central */
.growth-chart-container {
    position: absolute;
    top: 50px;
    left: 50px;
    width: 200px;
    height: 150px;
    z-index: 10;
}

.chart-background {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid #e5e7eb;
    position: relative;
}

.chart-title {
    font-size: 12px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 15px;
    text-align: center;
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 80px;
    gap: 8px;
}

.chart-bar {
    flex: 1;
    background: linear-gradient(180deg, #3b82f6 0%, #1d4ed8 100%);
    border-radius: 4px 4px 0 0;
    animation: chartGrowth 3s ease-in-out infinite;
    position: relative;
}

.chart-bar::after {
    content: '';
    position: absolute;
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: #f59e0b;
    border-radius: 50%;
    animation: chartDot 3s ease-in-out infinite;
}

.bar-1 { height: 30%; animation-delay: 0s; }
.bar-2 { height: 50%; animation-delay: 0.5s; }
.bar-3 { height: 70%; animation-delay: 1s; }
.bar-4 { height: 85%; animation-delay: 1.5s; }
.bar-5 { height: 95%; animation-delay: 2s; }
.bar-6 { height: 100%; animation-delay: 2.5s; }

/* Área de Reconocimiento de Marca */
.brand-recognition-area {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 150px;
    height: 120px;
}

.recognition-icon {
    position: absolute;
    background: white;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    animation: recognitionFloat 4s ease-in-out infinite;
}

.recognition-icon i {
    font-size: 16px;
    margin-bottom: 2px;
}

.recognition-label {
    font-size: 8px;
    font-weight: 600;
    color: #374151;
    text-align: center;
}

.icon-1 {
    top: 0;
    left: 0;
    animation-delay: 0s;
}

.icon-1 i { color: #f59e0b; }

.icon-2 {
    top: 0;
    right: 0;
    animation-delay: 1s;
}

.icon-2 i { color: #3b82f6; }

.icon-3 {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 2s;
}

.icon-3 i { color: #10b981; }

/* Crecimiento de Comunidad */
.community-growth {
    position: absolute;
    bottom: 40px;
    left: 40px;
    text-align: center;
}

.community-circle {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
    animation: communityPulse 3s ease-in-out infinite;
    margin: 0 auto 8px;
}

.community-circle i {
    font-size: 24px;
}

.community-label {
    font-size: 10px;
    font-weight: 600;
    color: #374151;
}

/* Pipeline de Generación de Leads */
.lead-pipeline {
    position: absolute;
    bottom: 40px;
    right: 40px;
    display: flex;
    gap: 15px;
    align-items: center;
}

.pipeline-stage {
    background: white;
    border-radius: 12px;
    padding: 10px 8px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    animation: pipelineFlow 5s ease-in-out infinite;
    position: relative;
}

.pipeline-stage::after {
    content: '→';
    position: absolute;
    right: -12px;
    top: 50%;
    transform: translateY(-50%);
    color: #3b82f6;
    font-weight: bold;
}

.pipeline-stage:last-child::after {
    display: none;
}

.pipeline-stage i {
    font-size: 14px;
    margin-bottom: 4px;
    display: block;
}

.pipeline-stage span {
    font-size: 9px;
    font-weight: 600;
    color: #374151;
}

.stage-1 { animation-delay: 0s; }
.stage-1 i { color: #f59e0b; }

.stage-2 { animation-delay: 1s; }
.stage-2 i { color: #ef4444; }

.stage-3 { animation-delay: 2s; }
.stage-3 i { color: #10b981; }

/* Reloj de Ahorro de Tiempo */
.time-saving-clock {
    position: absolute;
    top: 200px;
    left: 300px;
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    color: white;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
    animation: clockTick 2s ease-in-out infinite;
}

.time-saving-clock i {
    font-size: 20px;
}

/* Métricas Flotantes */
.floating-metric {
    position: absolute;
    background: white;
    border-radius: 20px;
    padding: 8px 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 6px;
    animation: metricFloat 6s ease-in-out infinite;
    border: 2px solid #e5e7eb;
    z-index: 5;
}

.floating-metric i {
    font-size: 14px;
}

.floating-metric span {
    font-size: 11px;
    font-weight: 600;
    color: #374151;
}

.metric-1 {
    top: 280px;
    left: 80px;
    animation-delay: 0s;
}

.metric-1 i { color: #10b981; }

.metric-2 {
    top: 320px;
    right: 80px;
    animation-delay: 2s;
}

.metric-2 i { color: #3b82f6; }

.metric-3 {
    top: 360px;
    left: 200px;
    animation-delay: 4s;
}

.metric-3 i { color: #f59e0b; }

/* Iconos de Redes Sociales de Fondo */
.social-bg-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.bg-icon {
    position: absolute;
    font-size: 24px;
    opacity: 0.1;
    animation: socialIconFloat 8s ease-in-out infinite;
}

.bg-icon-1 {
    top: 15%;
    left: 20%;
    color: #e4405f;
    animation-delay: 0s;
}

.bg-icon-2 {
    top: 25%;
    right: 25%;
    color: #1877f2;
    animation-delay: 1s;
}

.bg-icon-3 {
    bottom: 30%;
    left: 15%;
    color: #0077b5;
    animation-delay: 2s;
}

.bg-icon-4 {
    bottom: 40%;
    right: 20%;
    color: #1da1f2;
    animation-delay: 3s;
}

.bg-icon-5 {
    top: 60%;
    left: 60%;
    color: #ff0000;
    animation-delay: 4s;
}

.bg-icon-6 {
    top: 80%;
    right: 40%;
    color: #000000;
    animation-delay: 5s;
}

/* Animaciones para Social Media Benefits */
@keyframes chartGrowth {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(1.1); }
}

@keyframes chartDot {
    0%, 100% { transform: translateX(-50%) scale(1); }
    50% { transform: translateX(-50%) scale(1.3); }
}

@keyframes recognitionFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(5deg); }
}

@keyframes communityPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes pipelineFlow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

@keyframes clockTick {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(90deg); }
    50% { transform: rotate(180deg); }
    75% { transform: rotate(270deg); }
}

@keyframes metricFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    33% { transform: translateY(-10px) scale(1.05); }
    66% { transform: translateY(5px) scale(0.95); }
}

@keyframes socialIconFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.1; }
    50% { transform: translateY(-15px) rotate(180deg); opacity: 0.2; }
}

/* Responsive ajustes para la visualización de campaña social */
@media (max-width: 768px) {
    .social-campaign-visual {
        height: 300px;
        max-width: 350px;
    }
    
    .campaign-dashboard {
        width: 250px;
        height: 220px;
        padding: 15px;
    }
    
    .floating-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .floating-icon-1 {
        top: 15px;
        right: 15px;
    }
    
    .floating-icon-2 {
        bottom: 15px;
        left: 15px;
    }
    
    .floating-icon-3 {
        top: 60px;
        left: 5px;
    }
    
    .floating-icon-4 {
        top: 30px;
        left: 90px;
    }
    
    .floating-icon-5 {
        bottom: 60px;
        right: 5px;
    }
    
    .floating-icon-6 {
        top: 100px;
        right: 20px;
    }
    
    .engagement-bubble {
        font-size: 10px;
        padding: 6px 8px;
    }
    
    .bubble-1 {
        top: 15%;
        right: 75%;
    }
    
    .bubble-2 {
        top: 35%;
        right: 80%;
    }
    
    .bubble-3 {
        top: 55%;
        right: 75%;
    }
    
    .growth-arrow {
        font-size: 10px;
        padding: 6px 12px;
        top: -25px;
    }
    
    .content-calendar {
        bottom: -40px;
        left: -45px;
        padding: 8px;
    }
    
    .calendar-header {
        font-size: 8px;
        margin-bottom: 6px;
    }
    
    .post-preview {
        font-size: 8px;
    }
    
    .post-dot {
        width: 4px;
        height: 4px;
    }
}

@media (max-width: 480px) {
    .social-campaign-visual {
        height: 250px;
    }
    
    .campaign-dashboard {
        width: 180px;
        height: 150px;
        padding: 10px;
    }
    
    .floating-icon {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .floating-icon-1 {
        top: 10px;
        right: 10px;
    }
    
    .floating-icon-2 {
        bottom: 10px;
        left: 10px;
    }
    
    .floating-icon-3 {
        top: 50px;
        left: 5px;
    }
    
    .floating-icon-4 {
        top: 20px;
        left: 70px;
    }
    
    .floating-icon-5 {
        bottom: 50px;
        right: 5px;
    }
    
    .floating-icon-6 {
        top: 80px;
        right: 15px;
    }
    
    .engagement-bubble {
        font-size: 9px;
        padding: 5px 7px;
    }
    
    .bubble-1 {
        top: 10%;
        right: 70%;
    }
    
    .bubble-2 {
        top: 30%;
        right: 75%;
    }
    
    .bubble-3 {
        top: 50%;
        right: 70%;
    }
    
    .growth-arrow {
        font-size: 9px;
        padding: 5px 10px;
        top: -20px;
    }
    
    .content-calendar {
        bottom: -30px;
        left: -40px;
        padding: 6px;
    }
    
    .calendar-header {
        font-size: 7px;
        margin-bottom: 5px;
    }
    
    .post-preview {
        font-size: 7px;
    }
    
    .post-dot {
        width: 3px;
        height: 3px;
    }
}

/* ============ SEO Local Explanation Visual Styles ============ */

.seo-local-explanation-visual {
    position: relative;
    width: 100%;
    max-width: 450px;
    height: 400px;
    margin: 0 auto;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-simulation {
    position: relative;
    width: 100%;
    max-width: 350px;
    height: 320px;
    background: white;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid #e5e7eb;
    animation: simulationFloat 4s ease-in-out infinite;
}

.search-bar-demo {
    position: relative;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border: 2px solid #e5e7eb;
    border-radius: 25px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    animation: searchBarGlow 3s ease-in-out infinite;
}

.search-icon-demo {
    color: #3b82f6;
    font-size: 16px;
    animation: searchIconPulse 2s ease-in-out infinite;
}

.search-query {
    font-size: 14px;
    color: #374151;
    font-weight: 500;
    flex: 1;
    animation: textType 4s ease-in-out infinite;
}

.location-dot {
    width: 8px;
    height: 8px;
    background: #ef4444;
    border-radius: 50%;
    position: relative;
    animation: locationPulse 2s ease-in-out infinite;
}

.location-dot::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    background: #ef4444;
    border-radius: 50%;
    top: -4px;
    left: -4px;
    opacity: 0.3;
    animation: locationRipple 2s ease-in-out infinite;
}

.local-results {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.result-item-demo {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 12px;
    padding: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    animation: resultSlideIn 0.6s ease-out both;
    position: relative;
}

.result-item-demo:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.result-item-demo.winner {
    background: linear-gradient(135deg, #ecfdf5 0%, #f0fdf4 100%);
    border: 2px solid #10b981;
    animation-delay: 0.2s;
}

.result-item-demo:nth-child(2) {
    animation-delay: 0.4s;
}

.business-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    animation: avatarBounce 3s ease-in-out infinite;
}

.business-avatar.competitor {
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
    box-shadow: 0 4px 12px rgba(107, 114, 128, 0.3);
}

.result-details {
    flex: 1;
}

.business-name {
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 2px;
}

.business-rating {
    font-size: 12px;
    color: #f59e0b;
    margin-bottom: 2px;
}

.business-distance {
    font-size: 11px;
    color: #6b7280;
}

.position-badge {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
    animation: badgeGlow 2s ease-in-out infinite;
}

.position-badge.second {
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
    box-shadow: 0 4px 12px rgba(107, 114, 128, 0.3);
}

.floating-element {
    position: absolute;
    font-size: 20px;
    animation: floatingMove 5s ease-in-out infinite;
    z-index: 5;
}

.element-1 {
    top: 20px;
    right: 20px;
    animation-delay: 0s;
}

.element-2 {
    bottom: 30px;
    left: 20px;
    animation-delay: 1.5s;
}

.element-3 {
    top: 50%;
    right: 10px;
    animation-delay: 3s;
}

/* Animaciones para SEO Local Explanation */
@keyframes simulationFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-10px) scale(1.02); }
}

@keyframes searchBarGlow {
    0%, 100% { box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); }
    50% { box-shadow: 0 8px 20px rgba(59, 130, 246, 0.2); }
}

@keyframes searchIconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

@keyframes textType {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

@keyframes locationPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.3); }
}

@keyframes locationRipple {
    0% { transform: scale(1); opacity: 0.3; }
    100% { transform: scale(2); opacity: 0; }
}

@keyframes resultSlideIn {
    0% { transform: translateX(-20px); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
}

@keyframes avatarBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

@keyframes badgeGlow {
    0%, 100% { box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3); }
    50% { box-shadow: 0 8px 20px rgba(16, 185, 129, 0.5); }
}

@keyframes floatingMove {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.7; }
    33% { transform: translateY(-15px) rotate(120deg); opacity: 1; }
    66% { transform: translateY(10px) rotate(240deg); opacity: 0.5; }
}

/* Responsive adjustments for SEO Local Explanation */
@media (max-width: 768px) {
    .seo-local-explanation-visual {
        height: 320px;
        max-width: 320px;
    }
    
    .search-simulation {
        max-width: 280px;
        height: 260px;
        padding: 16px;
    }
    
    .search-bar-demo {
        padding: 10px 14px;
        margin-bottom: 16px;
    }
    
    .search-query {
        font-size: 12px;
    }
    
    .result-item-demo {
        padding: 12px;
        gap: 10px;
    }
    
    .business-avatar {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    
    .business-name {
        font-size: 12px;
    }
    
    .business-rating {
        font-size: 10px;
    }
    
    .business-distance {
        font-size: 9px;
    }
    
    .position-badge {
        font-size: 10px;
        padding: 3px 6px;
    }
    
    .floating-element {
        font-size: 16px;
    }
}