/**
 * CSS para a seção Hero com mockup do site
 * Arquivo específico para manter organização e performance
 */

/* Hero Section Principal */
/* 
.hero-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    min-height: 60vh;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}
*/
/* Agora usa classes Tailwind: container mx-auto px-4 py-16 lg:py-24 + grid lg:grid-cols-2 gap-12 lg:gap-16 items-center */

/* Conteúdo do Hero */
/* 
.hero-content {
    text-align: center;
}

@media (min-width: 1024px) {
    .hero-content {
        text-align: left;
    }
}
*/
/* Agora usa classes Tailwind: space-y-8 */

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4rem;
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-weight: 500;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    font-size: 0.875rem;
    color: #64748b;
}

@media (min-width: 1024px) {
    .hero-features {
        justify-content: flex-start;
    }
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-feature-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.hero-feature-dot.green { background-color: #10b981; }
.hero-feature-dot.blue { background-color: #3b82f6; }
.hero-feature-dot.purple { background-color: #8b5cf6; }

/* Mockup Container */
.mockup-container {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
    perspective: 1000px;
}

.mockup-wrapper {
    position: relative;
    transform: rotateY(-5deg) rotateX(5deg);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.mockup-wrapper:hover {
    transform: rotateY(0deg) rotateX(0deg) scale(1.02);
}

.site-mockup {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 12px 25px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Header do Mockup */
.mockup-header {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mockup-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
}

.mockup-logo-icon {
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.mockup-brand {
    font-weight: 700;
    font-size: 14px;
}

.mockup-controls {
    display: flex;
    gap: 4px;
}

.mockup-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
}

.mockup-dot.active {
    background: rgba(255, 255, 255, 0.8);
}

/* Conteúdo do Mockup */
.mockup-content {
    background: linear-gradient(135deg, #ec4899 0%, #be185d 100%);
    padding: 1.5rem;
    color: white;
    min-height: 420px;
}

.establishment-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.establishment-logo {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 24px;
}

.establishment-name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.establishment-category {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.location-badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 0.75rem;
    margin-bottom: 1.5rem;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.services-section {
    margin-bottom: 1rem;
}

.services-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 0.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-info h4 {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.service-duration {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.8);
}

.service-booking {
    text-align: right;
}

.service-price {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.book-button {
    background: rgba(255, 255, 255, 0.9);
    color: #be185d;
    border: none;
    padding: 0.375rem 0.75rem;
    border-radius: 8px;
    font-size: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.book-button:hover {
    background: white;
    transform: translateY(-1px);
}

.contact-info {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 0.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 10px;
    margin-bottom: 1rem;
}

.hours-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.social-links i {
    font-size: 14px;
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.social-links i:hover {
    opacity: 1;
}

.demo-badge {
    text-align: center;
}

.demo-pill {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 0.5rem 1rem;
    font-size: 10px;
    font-weight: 600;
}

/* Elementos Decorativos */
.decorative-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: -1;
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    animation: float 4s ease-in-out infinite;
}

.floating-element.blue {
    top: -16px;
    right: -16px;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    animation-delay: 0s;
}

.floating-element.green {
    bottom: -16px;
    left: -16px;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #10b981, #059669);
    animation-delay: 1s;
}

.floating-element.yellow {
    top: 50%;
    left: -24px;
    width: 16px;
    height: 16px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) scale(1); }
    33% { transform: translateY(-10px) scale(1.05); }
    66% { transform: translateY(-5px) scale(0.95); }
}

/* Animações de Entrada */
.animate-slide-in-left {
    animation: slideInLeft 0.8s ease-out;
}

.animate-slide-in-right {
    animation: slideInRight 0.8s ease-out;
}

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

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

/* Responsividade Avançada */
@media (max-width: 640px) {
    .hero-container {
        gap: 2rem;
        min-height: auto;
        padding: 2rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .mockup-container {
        max-width: 320px;
    }
    
    .mockup-content {
        min-height: 360px;
        padding: 1rem;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .site-mockup {
        background: #1f2937;
        border-color: rgba(255, 255, 255, 0.1);
    }
}

/* Performance Optimizations */
.mockup-wrapper {
    will-change: transform;
}

.floating-element {
    will-change: transform;
}

/* PC Mockup para Seção de Produtividade */
.pc-mockup-container {
    max-width: 200px;
    margin: 0 auto;
    perspective: 800px;
}

.pc-mockup {
    position: relative;
    transform: rotateX(10deg) rotateY(-5deg);
    transition: transform 0.3s ease;
}

.pc-mockup:hover {
    transform: rotateX(5deg) rotateY(0deg) scale(1.05);
}

.monitor {
    position: relative;
    width: 180px;
    height: 120px;
    margin: 0 auto;
}

.monitor-bezel {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #2d3748, #1a202c);
    border-radius: 8px;
    padding: 6px;
    box-shadow: 
        0 8px 20px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.screen {
    width: 100%;
    height: 100%;
    background: #ffffff;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    font-size: 6px;
    line-height: 1.2;
}

.agenda-header {
    background: #f7fafc;
    padding: 4px 6px;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 3px;
}

.avatar {
    width: 8px;
    height: 8px;
    background: #4299e1;
    border-radius: 50%;
}

.user-name {
    font-weight: 600;
    color: #2d3748;
}

.date-nav {
    display: flex;
    align-items: center;
    gap: 3px;
}

.date {
    font-weight: 500;
    color: #4a5568;
}

.nav-buttons {
    display: flex;
    gap: 1px;
}

.nav-btn, .today-btn {
    background: #edf2f7;
    border: none;
    width: 8px;
    height: 8px;
    border-radius: 2px;
    font-size: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.today-btn {
    background: #4299e1;
    color: white;
    width: 12px;
}

.agenda-grid {
    height: 88px;
    overflow: hidden;
}

.grid-header {
    background: #f7fafc;
    padding: 2px 6px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2px;
    border-bottom: 1px solid #e2e8f0;
}

.col-header {
    font-weight: 600;
    color: #4a5568;
    text-align: center;
}

.time-slot {
    padding: 2px 6px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2px;
    border-bottom: 1px solid #f7fafc;
    align-items: center;
    animation: fadeInRow 0.5s ease-out;
}

.time-slot:nth-child(odd) {
    background: #fefefe;
}

.time-slot:nth-child(even) {
    background: #f9f9f9;
}

.time {
    font-weight: 500;
    color: #2d3748;
}

.client {
    text-align: center;
    color: #718096;
}

.status {
    text-align: center;
    padding: 1px 2px;
    border-radius: 2px;
    font-weight: 500;
}

.status.livre {
    background: #c6f6d5;
    color: #22543d;
}

.status.ocupado {
    background: #fed7d7;
    color: #742a2a;
}

.monitor-stand {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 4px;
}

.stand-neck {
    width: 8px;
    height: 12px;
    background: linear-gradient(145deg, #4a5568, #2d3748);
    border-radius: 2px;
}

.stand-base {
    width: 40px;
    height: 6px;
    background: linear-gradient(145deg, #4a5568, #2d3748);
    border-radius: 3px;
    margin-top: 2px;
}

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

/* Animação de digitação para simular uso real */
.pc-mockup:hover .time-slot:nth-child(3) .status {
    animation: statusChange 2s ease-in-out infinite;
}

@keyframes statusChange {
    0%, 100% { 
        background: #c6f6d5; 
        color: #22543d; 
    }
    50% { 
        background: #fed7d7; 
        color: #742a2a; 
    }
}

/* Responsividade para o mockup do PC */
@media (max-width: 768px) {
    .pc-mockup-container {
        max-width: 160px;
    }
    
    .monitor {
        width: 140px;
        height: 95px;
    }
    
    .screen {
        font-size: 5px;
    }
    
    .agenda-grid {
        height: 70px;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .mockup-wrapper {
        transform: none;
        transition: none;
    }
    
    .mockup-wrapper:hover {
        transform: scale(1.02);
    }
    
    .floating-element {
        animation: none;
    }
    
    .animate-slide-in-left,
    .animate-slide-in-right {
        animation: none;
    }
    
    .pc-mockup {
        transform: none;
    }
    
    .pc-mockup:hover {
        transform: scale(1.05);
    }
    
    .time-slot {
        animation: none;
    }
    
    @keyframes fadeInRow {
        from, to {
            opacity: 1;
            transform: translateX(0);
        }
    }
}

/* Compatibilidade específica para Edge/IE */
@supports (-ms-ime-align: auto) {
    /* Estilos específicos para Edge */
    .phone-mockup-container,
    .tablet-mockup-container,
    .pc-mockup-container {
        -ms-perspective: 1000px;
    }
    
    .phone-mockup,
    .tablet-mockup,
    .pc-mockup {
        -ms-transform-style: preserve-3d;
    }
    
    .phone-mockup {
        -ms-transform: rotateX(10deg) rotateY(5deg);
    }
    
    .tablet-mockup {
        -ms-transform: rotateX(15deg) rotateY(-10deg);
    }
    
    .pc-mockup {
        -ms-transform: rotateX(10deg) rotateY(-5deg);
    }
    
    /* Fallbacks para gradientes */
    .phone-bezel,
    .tablet-bezel,
    .monitor-bezel {
        background: #2d3748; /* Fallback sólido */
    }
    
    .stand,
    .stand-base {
        background: #4a5568; /* Fallback sólido */
    }
    
    /* Garantir visibilidade dos elementos */
    .phone-mockup, .tablet-mockup, .pc-mockup,
    .phone-device, .tablet-device, .monitor,
    .phone-screen, .tablet-screen, .screen {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}

/* Tablet Mockup para Seção de Novos Clientes */
.tablet-mockup-container {
    max-width: 240px;
    margin: 0 auto;
    perspective: 1000px;
}

.tablet-mockup {
    position: relative;
    transform: rotateX(15deg) rotateY(-10deg);
    transition: transform 0.4s ease;
}

.tablet-mockup:hover {
    transform: rotateX(5deg) rotateY(-2deg) scale(1.03);
}

.tablet-device {
    position: relative;
    width: 220px;
    height: 280px;
    margin: 0 auto;
}

.tablet-bezel {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #1a202c, #2d3748);
    border-radius: 16px;
    padding: 12px;
    box-shadow: 
        0 12px 30px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.tablet-screen {
    width: 100%;
    height: 100%;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    font-size: 7px;
    line-height: 1.3;
}

/* Header do Site no Tablet */
.site-header {
    background: #1a365d;
    color: white;
    padding: 4px 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #2c5282;
}

.site-logo {
    font-weight: 700;
    font-size: 8px;
}

.site-nav {
    display: flex;
    gap: 6px;
}

.nav-item {
    padding: 2px 4px;
    border-radius: 3px;
    font-size: 6px;
    cursor: pointer;
}

.nav-item.active {
    background: #3182ce;
}

/* Conteúdo do Site */
.site-content {
    display: grid;
    grid-template-columns: 1fr 65px;
    height: calc(100% - 20px);
    gap: 6px;
    padding: 6px;
}

/* Showcase do Estabelecimento */
.establishment-showcase {
    background: linear-gradient(135deg, #ec4899, #be185d);
    border-radius: 8px;
    padding: 8px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.showcase-logo {
    width: 40px;
    height: 40px;
    margin: 0 auto 6px;
    border-radius: 8px;
    position: relative;
}

.logo-bg {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    position: relative;
}

.logo-bg::after {
    content: '✂️';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 16px;
}

.showcase-name {
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 8px;
}

/* Serviços Showcase */
.services-showcase {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 6px;
    padding: 6px;
    margin-top: 8px;
    height: fit-content;
}

.services-title {
    font-size: 8px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #2d3748;
    text-align: center;
}

.service-item {
    display: grid;
    grid-template-columns: 12px 1fr 20px;
    gap: 4px;
    align-items: center;
    padding: 3px;
    margin-bottom: 3px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 4px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-icon {
    font-size: 8px;
    text-align: center;
}

.service-details {
    min-width: 0;
}

.service-name {
    font-size: 6px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1px;
}

.service-duration {
    font-size: 5px;
    color: #718096;
    margin-bottom: 1px;
}

.service-price {
    font-size: 6px;
    font-weight: 700;
    color: #2b6cb0;
}

.service-btn {
    background: #3182ce;
    color: white;
    border: none;
    padding: 2px 4px;
    border-radius: 3px;
    font-size: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.service-btn:hover {
    background: #2c5282;
    transform: translateY(-1px);
}

/* Sidebar do Site */
.site-sidebar {
    background: #f7fafc;
    border-radius: 6px;
    padding: 4px;
    overflow: hidden;
}

.sidebar-section {
    margin-bottom: 6px;
    padding-bottom: 4px;
    border-bottom: 1px solid #e2e8f0;
}

.sidebar-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.sidebar-title {
    font-size: 6px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 3px;
}

.location-map {
    width: 100%;
    height: 24px;
    background: linear-gradient(135deg, #c6f6d5, #9ae6b4);
    border-radius: 3px;
    position: relative;
}

.location-map::after {
    content: '📍';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 8px;
}

.about-text {
    width: 100%;
    height: 12px;
    background: #edf2f7;
    border-radius: 2px;
    margin-bottom: 2px;
}

.about-text::after {
    content: '';
    display: block;
    width: 80%;
    height: 2px;
    background: #cbd5e0;
    margin: 2px 0;
}

.team-member {
    display: flex;
    align-items: center;
    gap: 3px;
}

.member-avatar {
    width: 12px;
    height: 12px;
    background: #667eea;
    border-radius: 50%;
    flex-shrink: 0;
}

.member-info {
    min-width: 0;
}

.member-name {
    font-size: 5px;
    font-weight: 600;
    color: #2d3748;
}

.member-role {
    font-size: 4px;
    color: #718096;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.contact-item {
    font-size: 5px;
    color: #4a5568;
    padding: 1px 0;
}

.social-icon {
    font-size: 10px;
    text-align: center;
    padding: 2px;
    background: #fed7d7;
    border-radius: 3px;
    width: fit-content;
}

/* Animações para o tablet */
.tablet-mockup:hover .service-item:nth-child(2) {
    animation: serviceHighlight 2s ease-in-out infinite;
}

@keyframes serviceHighlight {
    0%, 100% { 
        background: rgba(255, 255, 255, 0.8); 
    }
    50% { 
        background: rgba(99, 102, 241, 0.1);
        transform: scale(1.02);
    }
}

/* Responsividade para o tablet */
@media (max-width: 768px) {
    .tablet-mockup-container {
        max-width: 200px;
    }
    
    .tablet-device {
        width: 180px;
        height: 230px;
    }
    
    .tablet-screen {
        font-size: 6px;
    }
    
    .site-content {
        grid-template-columns: 1fr 55px;
        gap: 4px;
        padding: 4px;
    }
    
    .showcase-logo {
        width: 30px;
        height: 30px;
    }
    
    .logo-bg::after {
        font-size: 12px;
    }
    
    .location-map {
        height: 20px;
    }
}

/* Phone Mockup para Seção de Experiência Premium */
.phone-mockup-container {
    max-width: 180px;
    margin: 0 auto;
    perspective: 1000px;
}

.phone-mockup {
    position: relative;
    transform: rotateX(10deg) rotateY(5deg);
    transition: transform 0.4s ease;
}

.phone-mockup:hover {
    transform: rotateX(5deg) rotateY(2deg) scale(1.05);
}

.phone-device {
    position: relative;
    width: 160px;
    height: 320px;
    margin: 0 auto;
}

.phone-bezel {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #1a202c, #2d3748);
    border-radius: 20px;
    padding: 8px;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
}

.phone-bezel::before {
    content: '';
    position: absolute;
    top: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: #4a5568;
    border-radius: 2px;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    font-size: 7px;
    line-height: 1.3;
}

/* Modal Header */
.modal-header {
    background: #2d3748;
    color: white;
    padding: 6px 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.modal-icon {
    font-size: 8px;
}

.modal-title {
    font-size: 8px;
    font-weight: 600;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    color: white;
    font-size: 8px;
    cursor: pointer;
    padding: 2px;
}

/* Calendar Section */
.calendar-section {
    padding: 8px;
    border-bottom: 1px solid #e2e8f0;
}

.calendar-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 6px;
}

.nav-arrow {
    background: #3182ce;
    color: white;
    border: none;
    width: 12px;
    height: 12px;
    border-radius: 4px;
    font-size: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.month-year {
    font-size: 8px;
    font-weight: 600;
    color: #2d3748;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
    margin-bottom: 4px;
}

.day-header {
    font-size: 5px;
    font-weight: 600;
    color: #718096;
    text-align: center;
    padding: 2px;
}

.day-cell {
    font-size: 6px;
    text-align: center;
    padding: 3px 2px;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.day-cell:hover {
    background: #e2e8f0;
}

.day-cell.selected {
    background: #3182ce;
    color: white;
    font-weight: 600;
}

.calendar-note {
    font-size: 5px;
    color: #718096;
    text-align: center;
    font-style: italic;
}

/* Time Section */
.time-section {
    padding: 8px;
}

.time-header {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 6px;
}

.time-icon {
    font-size: 8px;
}

.time-title {
    font-size: 8px;
    font-weight: 600;
    color: #2d3748;
}

.period-selector {
    display: flex;
    gap: 2px;
    margin-bottom: 8px;
}

.period-btn {
    flex: 1;
    background: #f7fafc;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 3px 2px;
    font-size: 5px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
}

.period-btn.active {
    background: #3182ce;
    color: white;
    border-color: #3182ce;
}

.period-btn:hover:not(.active) {
    background: #edf2f7;
}

.time-slots {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
}

.time-slot {
    background: #f7fafc;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 4px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.time-slot:hover {
    border-color: #3182ce;
    background: #ebf8ff;
}

.time-slot.selected {
    background: #3182ce;
    color: white;
    border-color: #3182ce;
}

.slot-time {
    font-size: 7px;
    font-weight: 600;
    margin-bottom: 1px;
}

.slot-duration {
    font-size: 5px;
    opacity: 0.8;
}

/* Animações para o phone */
.phone-mockup:hover .day-cell.selected {
    animation: dayPulse 1.5s ease-in-out infinite;
}

.phone-mockup:hover .time-slot.selected {
    animation: slotGlow 2s ease-in-out infinite;
}

@keyframes dayPulse {
    0%, 100% { 
        transform: scale(1); 
    }
    50% { 
        transform: scale(1.1);
        box-shadow: 0 0 8px rgba(49, 130, 206, 0.5);
    }
}

@keyframes slotGlow {
    0%, 100% { 
        box-shadow: none;
    }
    50% { 
        box-shadow: 0 0 12px rgba(49, 130, 206, 0.4);
        transform: scale(1.02);
    }
}

/* Responsividade para o phone */
@media (max-width: 768px) {
    .phone-mockup-container {
        max-width: 140px;
    }
    
    .phone-device {
        width: 120px;
        height: 240px;
    }
    
    .phone-screen {
        font-size: 6px;
    }
    
    .calendar-section {
        padding: 6px;
    }
    
    .time-section {
        padding: 6px;
    }
    
    .time-slots {
        gap: 3px;
    }
    
    .time-slot {
        padding: 3px;
    }
}