        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            background: linear-gradient(135deg, #f9f5ff 0%, #f0ebff 100%);
            color: #333;
            line-height: 1.5;
            font-family: 'Poppins', sans-serif;
            padding: 20px;
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .business-card {
            max-width: 450px;
            width: 100%;
            background-color: white;
            border-radius: 24px;
            box-shadow: 0 15px 40px rgba(106, 73, 186, 0.15);
            overflow: hidden;
            border: 1px solid rgba(138, 107, 232, 0.2);
        }
        
        /* Cabeçalho com logo */
        .card-header {
            background: linear-gradient(135deg, #6a49ba 0%, #8a6be8 100%);
            padding: 40px 30px 35px;
            text-align: center;
            color: white;
            position: relative;
        }
        
        .header-decoration {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(to right, #ffd166, #ff9a9e, #ffd166);
        }
        
        .logo-container {
            margin-bottom: 25px;
        }
        
        .logo {
            width: 100px;
            height: 100px;
            background: white;
            border-radius: 50%;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            border: 4px solid rgba(255, 255, 255, 0.4);
        }
        
        .logo i {
            font-size: 48px;
            background: linear-gradient(135deg, #6a49ba, #8a6be8);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .studio-name {
            font-family: 'Playfair Display', serif;
            font-size: 26px;
            font-weight: 700;
            margin-bottom: 8px;
            letter-spacing: 0.5px;
        }
        
        .studio-subtitle {
            font-size: 15px;
            opacity: 0.9;
            font-weight: 300;
            letter-spacing: 1px;
        }
        
        /* Seção de serviços */
        .services-section {
            padding: 30px;
        }
        
        .section-title {
            font-size: 20px;
            font-weight: 600;
            color: #4a3f6e;
            margin-bottom: 25px;
            text-align: center;
            position: relative;
            padding-bottom: 12px;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: linear-gradient(to right, #6a49ba, #8a6be8);
            border-radius: 3px;
        }
        
        /* Serviços */
        .services-list {
            margin-bottom: 30px;
        }
        
        .service-item {
            border: 1px solid #e6e1f5;
            border-radius: 15px;
            padding: 18px;
            margin-bottom: 15px;
            background: #fcfbff;
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
        }
        
        .service-item:hover {
            box-shadow: 0 8px 20px rgba(106, 73, 186, 0.1);
            transform: translateY(-2px);
            border-color: #c8b5ff;
        }
        
        .service-item.selected {
            border-color: #8a6be8;
            background-color: #f5f2ff;
            box-shadow: 0 5px 15px rgba(106, 73, 186, 0.15);
        }
        
        .selection-indicator {
            position: absolute;
            top: 18px;
            right: 18px;
            width: 22px;
            height: 22px;
            border-radius: 50%;
            border: 2px solid #d1c7f0;
            background-color: white;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .service-item.selected .selection-indicator {
            border-color: #8a6be8;
            background-color: #8a6be8;
        }
        
        .service-item.selected .selection-indicator::after {
            content: '✓';
            color: white;
            font-size: 14px;
            font-weight: bold;
        }
        
        .service-name {
            font-size: 17px;
            font-weight: 600;
            margin-bottom: 8px;
            color: #4a3f6e;
            padding-right: 30px;
        }
        
        .service-details {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 12px;
        }
        
        .service-price {
            font-weight: 700;
            font-size: 17px;
            color: #6a49ba;
        }
        
        .service-duration {
            font-size: 14px;
            color: #7a6f9e;
            background-color: #f0ebff;
            padding: 5px 12px;
            border-radius: 20px;
            font-weight: 500;
        }
        
        .service-description {
            font-size: 14px;
            color: #7a6f9e;
            line-height: 1.4;
        }
        
        .plus-sign {
            font-size: 14px;
            font-weight: 400;
            color: #a396d4;
        }
        
        /* Contador de serviços selecionados */
        .selected-counter {
            background: #8a6be8;
            color: white;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 13px;
            font-weight: bold;
            margin-left: 8px;
        }
        
        /* Botão de agendamento */
        .booking-section {
            margin-bottom: 25px;
        }
        
        .book-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            padding: 18px;
            background: linear-gradient(135deg, #6a49ba 0%, #8a6be8 100%);
            color: white;
            border: none;
            border-radius: 15px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            gap: 10px;
            box-shadow: 0 6px 18px rgba(106, 73, 186, 0.25);
        }
        
        .book-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(106, 73, 186, 0.35);
            background: linear-gradient(135deg, #5d3fa8 0%, #7a5bd6 100%);
        }
        
        .book-btn i {
            font-size: 18px;
        }
        
        /* Botões de contato */
        .contact-buttons {
            display: flex;
            gap: 12px;
            margin-top: 10px;
        }
        
        .contact-btn {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 16px;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 500;
            font-size: 15px;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }
        
        .whatsapp-btn {
            background: linear-gradient(135deg, #25D366, #1da851);
            color: white;
        }
        
        .whatsapp-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
        }
        
        .email-btn {
            background: linear-gradient(135deg, #ea4335, #d23c2f);
            color: white;
        }
        
        .email-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(234, 67, 53, 0.3);
        }
        
        .instagram-btn {
            background: linear-gradient(135deg, #E1306C, #833AB4);
            color: white;
        }
        
        .instagram-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(225, 48, 108, 0.3);
        }
        
        /* Modal de seleção de horário */
        .time-modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.8);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1000;
            padding: 20px;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        
        .time-modal-overlay.active {
            opacity: 1;
            visibility: visible;
        }
        
        .time-modal {
            background: white;
            border-radius: 20px;
            max-width: 500px;
            width: 100%;
            padding: 30px;
            text-align: center;
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
            animation: modalAppear 0.4s ease;
            max-height: 90vh;
            overflow-y: auto;
        }
        
        .time-modal h3 {
            color: #4a3f6e;
            margin-bottom: 25px;
            font-size: 22px;
        }
        
        .time-selection {
            margin-bottom: 25px;
        }
        
        .date-selection, .time-selection-grid {
            margin-bottom: 20px;
            text-align: left;
        }
        
        .date-selection label, .time-selection-grid label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #4a3f6e;
        }
        
        #appointmentDate {
            width: 100%;
            padding: 12px 15px;
            border: 2px solid #e6e1f5;
            border-radius: 10px;
            font-size: 16px;
            font-family: 'Poppins', sans-serif;
            color: #4a3f6e;
            background-color: #fcfbff;
            cursor: pointer;
        }
        
        #appointmentDate:focus {
            outline: none;
            border-color: #8a6be8;
        }
        
        .time-slots {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
            margin-top: 10px;
        }
        
        .time-slot {
            padding: 12px;
            background: #f5f2ff;
            border: 2px solid #e6e1f5;
            border-radius: 10px;
            text-align: center;
            cursor: pointer;
            font-weight: 500;
            color: #4a3f6e;
            transition: all 0.2s ease;
        }
        
        .time-slot:hover {
            background: #e6e1f5;
            border-color: #8a6be8;
        }
        
        .time-slot.selected {
            background: #8a6be8;
            color: white;
            border-color: #6a49ba;
        }
        
        .time-modal-buttons {
            display: flex;
            gap: 12px;
            margin-top: 20px;
        }
        
        .confirm-time-btn {
            flex: 1;
            padding: 14px;
            background: linear-gradient(135deg, #6a49ba, #8a6be8);
            color: white;
            border: none;
            border-radius: 10px;
            font-weight: 600;
            cursor: pointer;
            font-size: 16px;
        }
        
        .cancel-time-btn {
            flex: 1;
            padding: 14px;
            background: #f0ebff;
            color: #6a49ba;
            border: 2px solid #e6e1f5;
            border-radius: 10px;
            font-weight: 600;
            cursor: pointer;
            font-size: 16px;
        }
        
        /* Modal de confirmação */
        .confirmation-modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.8);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1001;
            padding: 20px;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        
        .confirmation-modal-overlay.active {
            opacity: 1;
            visibility: visible;
        }
        
        .confirmation-modal {
            background: white;
            border-radius: 20px;
            max-width: 500px;
            width: 100%;
            padding: 30px;
            text-align: center;
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
            animation: modalAppear 0.4s ease;
            max-height: 90vh;
            overflow-y: auto;
        }
        
        @keyframes modalAppear {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .modal-icon {
            font-size: 50px;
            color: #8a6be8;
            margin-bottom: 20px;
        }
        
        .confirmation-modal h3 {
            color: #4a3f6e;
            margin-bottom: 20px;
            font-size: 22px;
        }
        
        .booking-details {
            text-align: left;
            background: #f5f2ff;
            padding: 20px;
            border-radius: 12px;
            margin-bottom: 25px;
        }
        
        .booking-details p {
            margin-bottom: 10px;
            color: #4a3f6e;
        }
        
        .selected-services-list {
            margin: 15px 0;
        }
        
        .selected-service-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px;
            border-bottom: 1px solid #e6e1f5;
        }
        
        .selected-service-item:last-child {
            border-bottom: none;
        }
        
        .service-info {
            flex: 1;
        }
        
        .service-name-modal {
            font-weight: 600;
            color: #4a3f6e;
        }
        
        .service-details-modal {
            font-size: 14px;
            color: #7a6f9e;
        }
        
        .service-duration-modal {
            font-size: 14px;
            color: #6a49ba;
            font-weight: 500;
            margin-top: 3px;
        }
        
        .service-total {
            font-weight: 700;
            color: #6a49ba;
            text-align: right;
            margin-top: 15px;
            padding-top: 15px;
            border-top: 2px solid #e6e1f5;
        }
        
        .total-duration {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 8px;
            padding-top: 8px;
            border-top: 1px dashed #e6e1f5;
        }
        
        .duration-label {
            font-weight: 600;
            color: #4a3f6e;
        }
        
        .duration-value {
            font-weight: 700;
            color: #6a49ba;
        }
        
        .modal-buttons {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-bottom: 20px;
        }
        
        .modal-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 16px;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .modal-whatsapp {
            background: linear-gradient(135deg, #25D366, #1da851);
            color: white;
        }
        
        .modal-email {
            background: linear-gradient(135deg, #ea4335, #d23c2f);
            color: white;
        }
        
        .close-modal {
            background: linear-gradient(135deg, #6a49ba, #8a6be8);
            color: white;
            border: none;
            padding: 14px 30px;
            border-radius: 10px;
            font-weight: 600;
            cursor: pointer;
            width: 100%;
        }
        
        /* Responsividade */
        @media (max-width: 480px) {
            body {
                padding: 15px;
            }
            
            .business-card {
                border-radius: 20px;
            }
            
            .card-header {
                padding: 30px 20px 25px;
            }
            
            .services-section {
                padding: 25px 20px;
            }
            
            .studio-name {
                font-size: 22px;
            }
            
            .contact-buttons {
                flex-direction: column;
            }
            
            .service-details {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }
            
            .service-duration {
                align-self: flex-start;
            }
            
            .time-slots {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .time-modal-buttons {
                flex-direction: column;
            }
            
            .selected-service-item {
                flex-direction: column;
                align-items: flex-start;
                gap: 8px;
            }
        }